Yongkang ZOU
commited on
Commit
·
aacb082
1
Parent(s):
f84f3bc
update llm
Browse files
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 = "
|
| 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 |
|