Spaces:
Sleeping
Sleeping
π First full upload of tech support chat agent
Browse files
app.py
CHANGED
@@ -38,9 +38,9 @@
|
|
38 |
|
39 |
# app.py
|
40 |
import gradio as gr
|
41 |
-
from Registry.agents.
|
42 |
|
43 |
-
agent =
|
44 |
|
45 |
def chat_with_agent(user_input, history):
|
46 |
result = agent.run(user_input)['result']
|
|
|
38 |
|
39 |
# app.py
|
40 |
import gradio as gr
|
41 |
+
from Registry.agents.tech_support_chat.agent import ChatSupportAgent
|
42 |
|
43 |
+
agent = ChatSupportAgent(agent_name="demo_agent")
|
44 |
|
45 |
def chat_with_agent(user_input, history):
|
46 |
result = agent.run(user_input)['result']
|