mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-17 23:05:20 +00:00
fix: comfyui cfg setting
This commit is contained in:
parent
9ddb16345f
commit
faa054d4b4
2 changed files with 10 additions and 5 deletions
|
|
@ -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]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue