Yongkang ZOU commited on
Commit
aacb082
·
1 Parent(s): f84f3bc

update llm

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -11,7 +11,7 @@ DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
11
 
12
  # --- Basic Agent Definition ---
13
  class BasicAgent:
14
- def __init__(self, provider: str = "groq"):
15
  print(f"Initializing LangGraph Agent with provider: {provider}")
16
  self.graph = build_graph(provider=provider)
17
 
 
11
 
12
  # --- Basic Agent Definition ---
13
  class BasicAgent:
14
+ def __init__(self, provider: str = "openai"):
15
  print(f"Initializing LangGraph Agent with provider: {provider}")
16
  self.graph = build_graph(provider=provider)
17