Skip to content

Commit 6569b3d

Browse files
committed
reapply comment changes
1 parent 98c7693 commit 6569b3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

samples/managed-llm/app/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919

2020
# Set the environment variables for the chat model
2121
LLM_URL = os.getenv("LLM_URL", default_openai_base_url)
22-
# Fallback to OpenAI Model if not set in environment
22+
# Fallback LLM Model if not set in environment
2323
MODEL_ID = os.getenv("LLM_MODEL", "gpt-4-turbo")
2424

2525
# 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.
26+
# For development, you have the option to use your local API key. In production, the LLM gateway service will override the need for it.
2727
def get_api_key():
2828
return os.getenv("OPENAI_API_KEY", "")
2929

0 commit comments

Comments
 (0)