Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -11,8 +11,6 @@ from haystack.components.builders import PromptBuilder
|
|
11 |
import streamlit as st
|
12 |
from data_processor import fetch_data,ingest_data
|
13 |
|
14 |
-
|
15 |
-
|
16 |
genai.configure(api_key=os.environ["GEMINI_API_KEY"])
|
17 |
|
18 |
generation_config = {
|
@@ -183,12 +181,6 @@ if selected_tab == 'Data Fetching':
|
|
183 |
|
184 |
st.write(response_string)
|
185 |
if selected_tab == 'Assistant':
|
186 |
-
# Initialize session state for chat history
|
187 |
-
client = redis.Redis(
|
188 |
-
host=os.environ['REDIS_HOST'],
|
189 |
-
port=12305,
|
190 |
-
password=os.environ['REDIS_PASSWORD']
|
191 |
-
)
|
192 |
if "messages" not in st.session_state:
|
193 |
st.session_state.messages = []
|
194 |
|
|
|
11 |
import streamlit as st
|
12 |
from data_processor import fetch_data,ingest_data
|
13 |
|
|
|
|
|
14 |
genai.configure(api_key=os.environ["GEMINI_API_KEY"])
|
15 |
|
16 |
generation_config = {
|
|
|
181 |
|
182 |
st.write(response_string)
|
183 |
if selected_tab == 'Assistant':
|
|
|
|
|
|
|
|
|
|
|
|
|
184 |
if "messages" not in st.session_state:
|
185 |
st.session_state.messages = []
|
186 |
|