Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,7 @@
|
|
1 |
import streamlit as st
|
2 |
-
from ai_agent import
|
|
|
|
|
3 |
|
4 |
# Create a title and description
|
5 |
st.title("Pandas AI Agent App 🤖")
|
@@ -18,7 +20,7 @@ if st.button('Execute'):
|
|
18 |
# Create a loading spinner
|
19 |
with st.spinner('Running the agent...'):
|
20 |
# Call the pandas_agent function
|
21 |
-
output = pandas_agent(file, agent_input)
|
22 |
|
23 |
# Display the output
|
24 |
st.write(output)
|
|
|
1 |
import streamlit as st
|
2 |
+
from ai_agent import AIAgent
|
3 |
+
|
4 |
+
agent = AIAgent()
|
5 |
|
6 |
# Create a title and description
|
7 |
st.title("Pandas AI Agent App 🤖")
|
|
|
20 |
# Create a loading spinner
|
21 |
with st.spinner('Running the agent...'):
|
22 |
# Call the pandas_agent function
|
23 |
+
output = agent.pandas_agent(file, agent_input)
|
24 |
|
25 |
# Display the output
|
26 |
st.write(output)
|