matuteiglesias commited on
Commit
e601bf1
Β·
verified Β·
1 Parent(s): f558c35

πŸš€ First full upload of tech support chat agent

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -38,9 +38,9 @@
38
 
39
  # app.py
40
  import gradio as gr
41
- from Registry.agents.demo_agent.agent import DemoAgent
42
 
43
- agent = DemoAgent(agent_name="demo_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']