Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -13,7 +13,7 @@ llm = HuggingFaceEndpoint(
|
|
| 13 |
)
|
| 14 |
|
| 15 |
chat = ChatHuggingFace(llm=llm, verbose=True)
|
| 16 |
-
tools = [
|
| 17 |
chat_with_tools = chat.bind_tools(tools)
|
| 18 |
|
| 19 |
# Generate the AgentState and Agent graph
|
|
|
|
| 13 |
)
|
| 14 |
|
| 15 |
chat = ChatHuggingFace(llm=llm, verbose=True)
|
| 16 |
+
tools = [game_info_tool, search_tool]
|
| 17 |
chat_with_tools = chat.bind_tools(tools)
|
| 18 |
|
| 19 |
# Generate the AgentState and Agent graph
|