Spaces:
Running
Running
guest tool
Browse files
app.py
CHANGED
@@ -59,4 +59,13 @@ demo = gr.ChatInterface(
|
|
59 |
type="messages"
|
60 |
)
|
61 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
demo.launch()
|
|
|
59 |
type="messages"
|
60 |
)
|
61 |
|
62 |
+
# setup agents
|
63 |
+
|
64 |
+
guest_info_tool = Tool(
|
65 |
+
name="guest_info_retriever",
|
66 |
+
func=extract_text,
|
67 |
+
description="Retrieves detailed information about gala guests based on their name or relation."
|
68 |
+
)
|
69 |
+
|
70 |
+
|
71 |
demo.launch()
|