Skip to content

Commit 7dfa822

Browse files
change fallback model to "default"
1 parent 8eaf38e commit 7dfa822

File tree

1 file changed

+1
-1
lines changed
  • samples/managed-llm-provider/app

1 file changed

+1
-1
lines changed

samples/managed-llm-provider/app/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# Set the environment variables for the chat model
2121
LLM_URL = os.getenv("LLM_URL", default_openai_base_url) + "chat/completions"
2222
# Fallback to OpenAI Model if not set in environment
23-
MODEL_ID = os.getenv("LLM_MODEL", "gpt-4-turbo")
23+
MODEL_ID = os.getenv("LLM_MODEL", "default")
2424

2525
# Get the API key for the LLM
2626
# For development, you can use your local API key. In production, the LLM gateway service will override the need for it.

0 commit comments

Comments
 (0)