DrishtiSharma commited on
Commit
79a526f
·
verified ·
1 Parent(s): 1288256

Update app1.py

Browse files
Files changed (1) hide show
  1. app1.py +50 -37
app1.py CHANGED
@@ -1,21 +1,29 @@
1
  import streamlit as st
2
  import pandas as pd
3
  from pandasai import SmartDataframe
4
- from pandasai.llm import OpenAI
5
  from dotenv import load_dotenv
6
  from datasets import load_dataset
7
  import os
8
 
9
  # Load environment variables
10
  load_dotenv()
11
- OPENAI_API_KEY = os.getenv("OPENAI_API_KEY")
12
 
13
- if not OPENAI_API_KEY:
14
- st.error("OpenAI API Key is missing. Make sure you set it in a .env file.")
15
- st.stop()
 
16
 
17
- # Initialize OpenAI LLM
18
- llm = OpenAI(api_token=OPENAI_API_KEY)
 
 
 
 
 
 
 
 
19
 
20
  # App title and description
21
  st.title("Patent Analytics: Chat With Your Dataset")
@@ -31,31 +39,36 @@ st.markdown(
31
  if "df" not in st.session_state:
32
  st.session_state.df = None
33
 
34
- # Dataset input options
35
- input_option = st.sidebar.radio(
36
- "Choose Dataset Input Method",
37
- options=["Use Hugging Face Dataset", "Upload CSV File"],
38
- index=0
39
- )
40
 
41
- # Dataset loading logic
42
- if input_option == "Use Hugging Face Dataset":
43
- dataset_name = st.sidebar.text_input("Enter Hugging Face Dataset Name:", value="HUPD/hupd")
44
- if st.sidebar.button("Load Dataset"):
45
- try:
46
- dataset = load_dataset(dataset_name, name="sample", split="train", trust_remote_code=True)
47
- st.session_state.df = pd.DataFrame(dataset)
48
- st.sidebar.success(f"Dataset '{dataset_name}' loaded successfully!")
49
- except Exception as e:
50
- st.sidebar.error(f"Error loading dataset: {e}")
51
- elif input_option == "Upload CSV File":
52
- uploaded_file = st.sidebar.file_uploader("Upload CSV File:", type=["csv"])
53
- if uploaded_file:
54
- try:
55
- st.session_state.df = pd.read_csv(uploaded_file)
56
- st.sidebar.success("File uploaded successfully!")
57
- except Exception as e:
58
- st.sidebar.error(f"Error loading file: {e}")
 
 
 
 
 
 
59
 
60
  # Show the loaded dataframe preview
61
  if st.session_state.df is not None:
@@ -77,14 +90,14 @@ if st.session_state.df is not None:
77
  # Chat with the dataframe
78
  response = chat_df.chat(question)
79
 
80
- # Detect visualizations in the query
81
- if "plot" in question.lower() or "graph" in question.lower():
82
- st.write("### Visualization")
 
83
  else:
84
  st.write("### Response")
85
-
86
- # Display response or plot
87
- st.write(response)
88
  st.success("Request processed successfully!")
89
  except Exception as e:
90
  st.error(f"An error occurred: {e}")
 
1
  import streamlit as st
2
  import pandas as pd
3
  from pandasai import SmartDataframe
4
+ from pandasai.llm import OpenAI, ChatGroq
5
  from dotenv import load_dotenv
6
  from datasets import load_dataset
7
  import os
8
 
9
  # Load environment variables
10
  load_dotenv()
 
11
 
12
+ def initialize_llm(model_choice):
13
+ """Initialize the chosen LLM based on the user's selection."""
14
+ groq_api_key = os.getenv("GROQ_API_KEY")
15
+ openai_api_key = os.getenv("OPENAI_API_KEY")
16
 
17
+ if model_choice == "llama-3.3-70b":
18
+ if not groq_api_key:
19
+ st.error("Groq API key is missing. Please set the GROQ_API_KEY environment variable.")
20
+ return None
21
+ return ChatGroq(groq_api_key=groq_api_key, model="groq/llama-3.3-70b-versatile")
22
+ elif model_choice == "GPT-4o":
23
+ if not openai_api_key:
24
+ st.error("OpenAI API key is missing. Please set the OPENAI_API_KEY environment variable.")
25
+ return None
26
+ return OpenAI(api_token=openai_api_key)
27
 
28
  # App title and description
29
  st.title("Patent Analytics: Chat With Your Dataset")
 
39
  if "df" not in st.session_state:
40
  st.session_state.df = None
41
 
42
+ # Select the model
43
+ model_choice = st.radio("Select LLM", ["GPT-4o", "llama-3.3-70b"], index=0, horizontal=True)
44
+ llm = initialize_llm(model_choice)
45
+ if not llm:
46
+ st.stop()
 
47
 
48
+ def load_dataset_into_session():
49
+ """Load dataset based on user input."""
50
+ input_option = st.radio("Choose Dataset Input Method", ["Use Hugging Face Dataset", "Upload CSV File"], index=0)
51
+
52
+ if input_option == "Use Hugging Face Dataset":
53
+ dataset_name = st.text_input("Enter Hugging Face Dataset Name:", value="HUPD/hupd")
54
+ if st.button("Load Dataset"):
55
+ try:
56
+ dataset = load_dataset(dataset_name, split="train", trust_remote_code=True)
57
+ st.session_state.df = pd.DataFrame(dataset)
58
+ st.success(f"Dataset '{dataset_name}' loaded successfully!")
59
+ except Exception as e:
60
+ st.error(f"Error loading dataset: {e}")
61
+ elif input_option == "Upload CSV File":
62
+ uploaded_file = st.file_uploader("Upload CSV File:", type=["csv"])
63
+ if uploaded_file:
64
+ try:
65
+ st.session_state.df = pd.read_csv(uploaded_file)
66
+ st.success("File uploaded successfully!")
67
+ except Exception as e:
68
+ st.error(f"Error loading file: {e}")
69
+
70
+ # Load dataset
71
+ load_dataset_into_session()
72
 
73
  # Show the loaded dataframe preview
74
  if st.session_state.df is not None:
 
90
  # Chat with the dataframe
91
  response = chat_df.chat(question)
92
 
93
+ # Display response
94
+ if isinstance(response, pd.DataFrame):
95
+ st.write("### Response")
96
+ st.dataframe(response)
97
  else:
98
  st.write("### Response")
99
+ st.write(response)
100
+
 
101
  st.success("Request processed successfully!")
102
  except Exception as e:
103
  st.error(f"An error occurred: {e}")