fix: comfyui cfg setting

This commit is contained in:
Timothy Jaeryang Baek 2024-12-09 23:22:47 -08:00
parent 9ddb16345f
commit faa054d4b4
2 changed files with 10 additions and 5 deletions

View File

@ -117,7 +117,7 @@ class OpenAIConfigForm(BaseModel):
class Automatic1111ConfigForm(BaseModel): class Automatic1111ConfigForm(BaseModel):
AUTOMATIC1111_BASE_URL: str AUTOMATIC1111_BASE_URL: str
AUTOMATIC1111_API_AUTH: str AUTOMATIC1111_API_AUTH: str
AUTOMATIC1111_CFG_SCALE: Optional[str] AUTOMATIC1111_CFG_SCALE: Optional[str | float | int]
AUTOMATIC1111_SAMPLER: Optional[str] AUTOMATIC1111_SAMPLER: Optional[str]
AUTOMATIC1111_SCHEDULER: Optional[str] AUTOMATIC1111_SCHEDULER: Optional[str]

View File

@ -105,7 +105,12 @@
}; };
const updateConfigHandler = async () => { const updateConfigHandler = async () => {
const res = await updateConfig(localStorage.token, config).catch((error) => { const res = await updateConfig(localStorage.token, config)
.catch((error) => {
toast.error(error);
return null;
})
.catch((error) => {
toast.error(error); toast.error(error);
return null; return null;
}); });