Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
|
| 2 |
import os
|
| 3 |
import gradio as gr
|
| 4 |
import pandas as pd
|
|
@@ -33,7 +33,7 @@ def run_and_submit_all( profile: gr.OAuthProfile | None):
|
|
| 33 |
submit_url = f"{api_url}/submit"
|
| 34 |
|
| 35 |
try:
|
| 36 |
-
agent = BasicAgent
|
| 37 |
|
| 38 |
except Exception as e:
|
| 39 |
print(f"Error instantiating agent: {e}")
|
|
|
|
| 1 |
+
import agent as ag
|
| 2 |
import os
|
| 3 |
import gradio as gr
|
| 4 |
import pandas as pd
|
|
|
|
| 33 |
submit_url = f"{api_url}/submit"
|
| 34 |
|
| 35 |
try:
|
| 36 |
+
agent = ag.BasicAgent()
|
| 37 |
|
| 38 |
except Exception as e:
|
| 39 |
print(f"Error instantiating agent: {e}")
|