Spaces:
Sleeping
Sleeping
Upload 2 files
Browse files- main.py +37 -0
- requirements.txt +4 -0
main.py
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
import pandas as pd
|
3 |
+
from pandasai import SmartDataframe
|
4 |
+
from pandasai.llm import GooglePalm
|
5 |
+
import textwrap
|
6 |
+
|
7 |
+
# Set up your API key
|
8 |
+
GOOGLE_API_KEY = "AIzaSyDVITagNdKqvBkWngu9Q6Nywy9WkI4zpak"
|
9 |
+
|
10 |
+
# Initialize the LLM
|
11 |
+
llm = GooglePalm(api_key=GOOGLE_API_KEY)
|
12 |
+
|
13 |
+
# Title and description
|
14 |
+
st.title("Smart Dataframe Explorer")
|
15 |
+
st.write("Upload your CSV file, explore the data, and ask questions.")
|
16 |
+
|
17 |
+
# File uploader
|
18 |
+
uploaded_file = st.file_uploader("Upload your CSV file", type=["csv"])
|
19 |
+
|
20 |
+
if uploaded_file is not None:
|
21 |
+
# Load CSV file into a SmartDataframe
|
22 |
+
df = pd.read_csv(uploaded_file)
|
23 |
+
smart_df = SmartDataframe(df, config={"llm": llm})
|
24 |
+
|
25 |
+
# Display the first three rows by default
|
26 |
+
st.subheader("First Three Rows")
|
27 |
+
st.write(smart_df.head(3))
|
28 |
+
|
29 |
+
# Text bar for asking questions
|
30 |
+
question = st.text_input("Ask a question about your data")
|
31 |
+
|
32 |
+
if question:
|
33 |
+
# Get the LLM response
|
34 |
+
st.subheader("Answer")
|
35 |
+
answer = smart_df.chat(question)
|
36 |
+
st.write(textwrap.indent(answer, "> ", predicate=lambda _: True))
|
37 |
+
|
requirements.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
pandas
|
2 |
+
pandasai
|
3 |
+
streamlit
|
4 |
+
google-generativeai
|