Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -29,9 +29,7 @@ llm = HuggingFaceEndpoint(
|
|
| 29 |
|
| 30 |
chat = ChatHuggingFace(llm=llm, verbose=True)
|
| 31 |
|
| 32 |
-
tools = [
|
| 33 |
-
search_tool
|
| 34 |
-
]
|
| 35 |
chat_with_tools = chat.bind_tools(tools)
|
| 36 |
|
| 37 |
def assistant(state: MessagesState):
|
|
|
|
| 29 |
|
| 30 |
chat = ChatHuggingFace(llm=llm, verbose=True)
|
| 31 |
|
| 32 |
+
tools = []
|
|
|
|
|
|
|
| 33 |
chat_with_tools = chat.bind_tools(tools)
|
| 34 |
|
| 35 |
def assistant(state: MessagesState):
|