sam522 commited on
Commit
4dbec95
·
1 Parent(s): 2497a7e

guest tool

Browse files
Files changed (1) hide show
  1. app.py +9 -0
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()