0xrsydn commited on
Commit
8fd3f77
·
verified ·
1 Parent(s): 7ca8373

added title and description

Browse files
Files changed (1) hide show
  1. app.py +4 -0
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")