mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
blackify
This commit is contained in:
parent
024a156114
commit
ef8dcf5fae
@ -87,7 +87,7 @@ async def get_model_record(
|
|||||||
)
|
)
|
||||||
async def update_model_record(
|
async def update_model_record(
|
||||||
key: Annotated[str, Path(description="Unique key of model")],
|
key: Annotated[str, Path(description="Unique key of model")],
|
||||||
info: Annotated[AnyModelConfig, Body(description="Model config", discriminator="type")]
|
info: Annotated[AnyModelConfig, Body(description="Model config", discriminator="type")],
|
||||||
) -> AnyModelConfig:
|
) -> AnyModelConfig:
|
||||||
"""Update model contents with a new config. If the model name or base fields are changed, then the model is renamed."""
|
"""Update model contents with a new config. If the model name or base fields are changed, then the model is renamed."""
|
||||||
logger = ApiDependencies.invoker.services.logger
|
logger = ApiDependencies.invoker.services.logger
|
||||||
|
@ -50,6 +50,7 @@ def test_type(store: ModelRecordServiceBase):
|
|||||||
config1 = store.get_model("key1")
|
config1 = store.get_model("key1")
|
||||||
assert type(config1) == TextualInversionConfig
|
assert type(config1) == TextualInversionConfig
|
||||||
|
|
||||||
|
|
||||||
def test_add(store: ModelRecordServiceBase):
|
def test_add(store: ModelRecordServiceBase):
|
||||||
raw = dict(
|
raw = dict(
|
||||||
path="/tmp/foo.ckpt",
|
path="/tmp/foo.ckpt",
|
||||||
|
Loading…
Reference in New Issue
Block a user