Guru-25 commited on
Commit
2e2b471
Β·
verified Β·
1 Parent(s): b58a676

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -37,9 +37,9 @@ st.markdown(hide_streamlit_style, unsafe_allow_html=True)
37
  set_background('./15683.jpg')
38
 
39
  if 'HuggingFace_API_Key' not in st.session_state:
40
- st.session_state['HuggingFace_API_Key'] = os.getenv('HF_TOKEN')
41
  if 'Pinecone_API_Key' not in st.session_state:
42
- st.session_state['Pinecone_API_Key'] = os.getenv('PINECONE_API')
43
 
44
  st.title("🌐 TCE.edu Chat Assistant: Your Friendly Guide to Everything TCE! πŸš€")
45
 
@@ -58,7 +58,7 @@ if load_button:
58
 
59
  embeddings=create_embeddings()
60
  st.write("🧠 Model ready to understand your queries!")
61
- push_to_pinecone('92f43d94-bf9c-42e6-bc0c-1f28b52c4f59',constants.PINECONE_ENVIRONMENT,constants.PINECONE_INDEX,embeddings,chunks_data)
62
  st.write("πŸš€ Data loaded into Pinecone for quick searching!")
63
 
64
  st.sidebar.success("πŸŽ‰ Data successfully loaded into Pinecone!")
@@ -76,7 +76,7 @@ if submit:
76
 
77
  embeddings=create_embeddings()
78
  st.write("🧠 Model ready to understand your queries!")
79
- index=pull_from_pinecone('92f43d94-bf9c-42e6-bc0c-1f28b52c4f59',constants.PINECONE_ENVIRONMENT,constants.PINECONE_INDEX,embeddings)
80
  st.write("πŸ” Database retrieval is done!")
81
 
82
  relavant_docs=get_similar_docs(index,prompt,document_count)
 
37
  set_background('./15683.jpg')
38
 
39
  if 'HuggingFace_API_Key' not in st.session_state:
40
+ st.session_state['HuggingFace_API_Key'] = os.environ["HF_TOKEN"]
41
  if 'Pinecone_API_Key' not in st.session_state:
42
+ st.session_state['Pinecone_API_Key'] = os.environ["PINECONE_API"]
43
 
44
  st.title("🌐 TCE.edu Chat Assistant: Your Friendly Guide to Everything TCE! πŸš€")
45
 
 
58
 
59
  embeddings=create_embeddings()
60
  st.write("🧠 Model ready to understand your queries!")
61
+ push_to_pinecone(st.session_state['Pinecone_API_Key'],constants.PINECONE_ENVIRONMENT,constants.PINECONE_INDEX,embeddings,chunks_data)
62
  st.write("πŸš€ Data loaded into Pinecone for quick searching!")
63
 
64
  st.sidebar.success("πŸŽ‰ Data successfully loaded into Pinecone!")
 
76
 
77
  embeddings=create_embeddings()
78
  st.write("🧠 Model ready to understand your queries!")
79
+ index=pull_from_pinecone(st.session_state['Pinecone_API_Key'],constants.PINECONE_ENVIRONMENT,constants.PINECONE_INDEX,embeddings)
80
  st.write("πŸ” Database retrieval is done!")
81
 
82
  relavant_docs=get_similar_docs(index,prompt,document_count)