fix: default models value should be None

This commit is contained in:
Timothy J. Baek 2024-01-02 16:48:49 -08:00
parent 7bc0c09b25
commit 09e1458d59
1 changed files with 1 additions and 1 deletions

View File

@ -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,