forked from open-webui/open-webui
		
	fix: images
This commit is contained in:
		
							parent
							
								
									32da2aa511
								
							
						
					
					
						commit
						e15e015db1
					
				
					 2 changed files with 8 additions and 6 deletions
				
			
		|  | @ -49,7 +49,7 @@ async def toggle_enabled(request: Request, user=Depends(get_admin_user)): | ||||||
|         app.state.ENABLED = not app.state.ENABLED |         app.state.ENABLED = not app.state.ENABLED | ||||||
|         return app.state.ENABLED |         return app.state.ENABLED | ||||||
|     except Exception as e: |     except Exception as e: | ||||||
|         raise HTTPException(status_code=r.status_code, detail=ERROR_MESSAGES.DEFAULT(e)) |         raise HTTPException(status_code=400, detail=ERROR_MESSAGES.DEFAULT(e)) | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| class UrlUpdateForm(BaseModel): | class UrlUpdateForm(BaseModel): | ||||||
|  | @ -109,7 +109,7 @@ def get_models(user=Depends(get_current_user)): | ||||||
|         models = r.json() |         models = r.json() | ||||||
|         return models |         return models | ||||||
|     except Exception as e: |     except Exception as e: | ||||||
|         raise HTTPException(status_code=r.status_code, detail=ERROR_MESSAGES.DEFAULT(e)) |         raise HTTPException(status_code=400, detail=ERROR_MESSAGES.DEFAULT(e)) | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| @app.get("/models/default") | @app.get("/models/default") | ||||||
|  | @ -120,7 +120,7 @@ async def get_default_model(user=Depends(get_admin_user)): | ||||||
| 
 | 
 | ||||||
|         return {"model": options["sd_model_checkpoint"]} |         return {"model": options["sd_model_checkpoint"]} | ||||||
|     except Exception as e: |     except Exception as e: | ||||||
|         raise HTTPException(status_code=r.status_code, detail=ERROR_MESSAGES.DEFAULT(e)) |         raise HTTPException(status_code=400, detail=ERROR_MESSAGES.DEFAULT(e)) | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
| class UpdateModelForm(BaseModel): | class UpdateModelForm(BaseModel): | ||||||
|  | @ -190,4 +190,4 @@ def generate_image( | ||||||
|         return r.json() |         return r.json() | ||||||
|     except Exception as e: |     except Exception as e: | ||||||
|         print(e) |         print(e) | ||||||
|         raise HTTPException(status_code=r.status_code, detail=ERROR_MESSAGES.DEFAULT(e)) |         raise HTTPException(status_code=400, detail=ERROR_MESSAGES.DEFAULT(e)) | ||||||
|  |  | ||||||
|  | @ -32,9 +32,11 @@ | ||||||
| 	const getModels = async () => { | 	const getModels = async () => { | ||||||
| 		models = await getDiffusionModels(localStorage.token).catch((error) => { | 		models = await getDiffusionModels(localStorage.token).catch((error) => { | ||||||
| 			toast.error(error); | 			toast.error(error); | ||||||
| 			return null; | 			return []; | ||||||
|  | 		}); | ||||||
|  | 		selectedModel = await getDefaultDiffusionModel(localStorage.token).catch((error) => { | ||||||
|  | 			return ''; | ||||||
| 		}); | 		}); | ||||||
| 		selectedModel = await getDefaultDiffusionModel(localStorage.token); |  | ||||||
| 	}; | 	}; | ||||||
| 
 | 
 | ||||||
| 	const updateAUTOMATIC1111UrlHandler = async () => { | 	const updateAUTOMATIC1111UrlHandler = async () => { | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Timothy J. Baek
						Timothy J. Baek