themissingCRAM
commited on
Commit
·
b52c028
1
Parent(s):
70321b0
blocks experiment i am stuck in this situation of table not existing within gradio blocks or GradioUI
Browse files- app.py +1 -0
- requirements.txt +1 -0
app.py
CHANGED
@@ -130,6 +130,7 @@ if __name__ == "__main__":
|
|
130 |
model=model,
|
131 |
max_steps=1,
|
132 |
verbosity_level=1,
|
|
|
133 |
)
|
134 |
# agent.run("What is the average each customer paid?")
|
135 |
# GradioUI(agent).launch()
|
|
|
130 |
model=model,
|
131 |
max_steps=1,
|
132 |
verbosity_level=1,
|
133 |
+
use_e2b_executor=True, # TODO Remove if I am at the stage of doing multiagents
|
134 |
)
|
135 |
# agent.run("What is the average each customer paid?")
|
136 |
# GradioUI(agent).launch()
|
requirements.txt
CHANGED
@@ -4,3 +4,4 @@ python-dotenv==1.1.0
|
|
4 |
sqlalchemy==2.0.40
|
5 |
gradio>=5.23.1
|
6 |
spaces>0.0.0
|
|
|
|
4 |
sqlalchemy==2.0.40
|
5 |
gradio>=5.23.1
|
6 |
spaces>0.0.0
|
7 |
+
smolagents[gradio]>1.12.0
|