We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8eaf38e commit 7dfa822Copy full SHA for 7dfa822
samples/managed-llm-provider/app/app.py
@@ -20,7 +20,7 @@
20
# Set the environment variables for the chat model
21
LLM_URL = os.getenv("LLM_URL", default_openai_base_url) + "chat/completions"
22
# Fallback to OpenAI Model if not set in environment
23
-MODEL_ID = os.getenv("LLM_MODEL", "gpt-4-turbo")
+MODEL_ID = os.getenv("LLM_MODEL", "default")
24
25
# Get the API key for the LLM
26
# For development, you can use your local API key. In production, the LLM gateway service will override the need for it.
0 commit comments