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 98c7693 commit 6569b3dCopy full SHA for 6569b3d
samples/managed-llm/app/app.py
@@ -19,11 +19,11 @@
19
20
# Set the environment variables for the chat model
21
LLM_URL = os.getenv("LLM_URL", default_openai_base_url)
22
-# Fallback to OpenAI Model if not set in environment
+# Fallback LLM Model if not set in environment
23
MODEL_ID = os.getenv("LLM_MODEL", "gpt-4-turbo")
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.
+# For development, you have the option to use your local API key. In production, the LLM gateway service will override the need for it.
27
def get_api_key():
28
return os.getenv("OPENAI_API_KEY", "")
29
0 commit comments