Spaces:
Running
Running
tools
Browse files
app.py
CHANGED
@@ -68,5 +68,8 @@ guest_info_tool = Tool(
|
|
68 |
description="Retrieves detailed information about gala guests based on their name or relation."
|
69 |
)
|
70 |
|
|
|
|
|
|
|
71 |
|
72 |
demo.launch()
|
|
|
68 |
description="Retrieves detailed information about gala guests based on their name or relation."
|
69 |
)
|
70 |
|
71 |
+
tools = [guest_info_tool]
|
72 |
+
chat_with_tools = chat.bind_tools(tools)
|
73 |
+
|
74 |
|
75 |
demo.launch()
|