Spaces:
Sleeping
Sleeping
added title and description
Browse files
app.py
CHANGED
@@ -1,6 +1,10 @@
|
|
1 |
import streamlit as st
|
2 |
from ai_agent import pandas_agent
|
3 |
|
|
|
|
|
|
|
|
|
4 |
# Get user input
|
5 |
file = st.file_uploader("Upload CSV file")
|
6 |
agent_input = st.text_input("Enter question")
|
|
|
1 |
import streamlit as st
|
2 |
from ai_agent import pandas_agent
|
3 |
|
4 |
+
# Create a title and description
|
5 |
+
st.title("Pandas AI Agent App 🤖")
|
6 |
+
st.markdown("This app uses an AI agent to answer questions about a CSV file using the pandas library.")
|
7 |
+
|
8 |
# Get user input
|
9 |
file = st.file_uploader("Upload CSV file")
|
10 |
agent_input = st.text_input("Enter question")
|