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

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

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -38,6 +38,10 @@
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")
 
38
 
39
  # app.py
40
  import gradio as gr
41
+
42
+ import sys, os
43
+ sys.path.insert(0, os.path.dirname(__file__))
44
+
45
  from Registry.agents.tech_support_chat.agent import ChatSupportAgent
46
 
47
  agent = ChatSupportAgent(agent_name="demo_agent")