changes to be specific about travel scenarios, setup guidance about goal_categories, fixed a bug about llm selection in tool_activities.py, better comments

This commit is contained in:
Joshua Smith
2025-03-28 15:33:56 -04:00
parent 86da6a1c74
commit 40bd76e80f
5 changed files with 12 additions and 6 deletions

View File

@@ -50,7 +50,7 @@ class ToolActivities:
else:
print("Warning: OPENAI_API_KEY not set but LLM_PROVIDER is 'openai'")
if self.llm_provider == "grok":
elif self.llm_provider == "grok":
if os.environ.get("GROK_API_KEY"):
self.grok_client = OpenAI(api_key=os.environ.get("GROK_API_KEY"), base_url="https://api.x.ai/v1")
print("Initialized grok client")