yetessam commited on
Commit
b356cef
·
verified ·
1 Parent(s): 0edee28

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -59,9 +59,10 @@ else:
59
  additional_authorized_imports=["pytz"]
60
 
61
  )
 
 
 
62
 
63
- # Launch the UI earlier or without passing through the Agent
64
- #GradioUI(agent).launch()
65
- # Build the Content Agent GUI
66
- ContentAgentUI()
67
 
 
59
  additional_authorized_imports=["pytz"]
60
 
61
  )
62
+
63
+ # Create an instance of the ContentAgentUI class
64
+ ui = ContentAgentUI()
65
 
66
+ # Pass through the agent
67
+ ui.pass_through_agent(agent)
 
 
68