Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -142,11 +142,11 @@ crew = Crew(
|
|
| 142 |
|
| 143 |
|
| 144 |
def yes_man(user_query, history):
|
| 145 |
-
return crew.kickoff(inputs={"query": user_query})
|
| 146 |
|
| 147 |
gr.ChatInterface(
|
| 148 |
yes_man,
|
| 149 |
title="SSI/SSDI expert",
|
| 150 |
description="Ask expert system any question",
|
| 151 |
examples=["Is it eligible for a blind US citizen born in 1996 Jan 2 name John Doe to get SSI?"],
|
| 152 |
-
).queue().launch()
|
|
|
|
| 142 |
|
| 143 |
|
| 144 |
def yes_man(user_query, history):
|
| 145 |
+
return crew.kickoff(inputs={"query": user_query}).raw
|
| 146 |
|
| 147 |
gr.ChatInterface(
|
| 148 |
yes_man,
|
| 149 |
title="SSI/SSDI expert",
|
| 150 |
description="Ask expert system any question",
|
| 151 |
examples=["Is it eligible for a blind US citizen born in 1996 Jan 2 name John Doe to get SSI?"],
|
| 152 |
+
).queue().launch(auth=("tester", "8888p4ss"))
|