Skip to content

Commit 06e692b

Browse files
committed
fix: fix the name of the env variable
1 parent 775f879 commit 06e692b

File tree

1 file changed

+1
-1
lines changed
  • examples/clients/simple-chatbot/mcp_simple_chatbot

1 file changed

+1
-1
lines changed

Diff for: examples/clients/simple-chatbot/mcp_simple_chatbot/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class Configuration:
2323
def __init__(self) -> None:
2424
"""Initialize configuration with environment variables."""
2525
self.load_env()
26-
self.api_key = os.getenv("GROQ_API_KEY")
26+
self.api_key = os.getenv("LLM_API_KEY")
2727

2828
@staticmethod
2929
def load_env() -> None:

0 commit comments

Comments
 (0)