Spaces:
Runtime error
Runtime error
Commit
Β·
7abbfc2
1
Parent(s):
035e1bd
debugging
Browse files
app.py
CHANGED
|
@@ -76,6 +76,7 @@ def initialize_agent(
|
|
| 76 |
|
| 77 |
checkpointer = MemorySaver()
|
| 78 |
model = ChatOpenAI(model=model, temperature=temperature, top_p=top_p, **openai_kwargs)
|
|
|
|
| 79 |
agent = ChatAgent(
|
| 80 |
model,
|
| 81 |
tools=list(tools_dict.values()),
|
|
|
|
| 76 |
|
| 77 |
checkpointer = MemorySaver()
|
| 78 |
model = ChatOpenAI(model=model, temperature=temperature, top_p=top_p, **openai_kwargs)
|
| 79 |
+
print(model.invoke("Hey how are you?"))
|
| 80 |
agent = ChatAgent(
|
| 81 |
model,
|
| 82 |
tools=list(tools_dict.values()),
|