Browse Source

fix: default models value should be None

Timothy J. Baek 1 year ago
parent
commit
09e1458d59
1 changed files with 1 additions and 1 deletions
  1. 1 1
      backend/apps/web/main.py

+ 1 - 1
backend/apps/web/main.py

@@ -9,7 +9,7 @@ app = FastAPI()
 origins = ["*"]
 
 app.state.ENABLE_SIGNUP = True
-app.state.DEFAULT_MODELS = "llava:13b"
+app.state.DEFAULT_MODELS = None
 
 app.add_middleware(
     CORSMiddleware,