eaglelandsonce commited on
Commit
08b2db5
·
1 Parent(s): d374dbb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -35,11 +35,11 @@ st.title('AI Assistance For Website')
35
 
36
  # Sidebar to capture the API keys
37
  st.sidebar.title("🗝️")
38
- st.session_state['Website_URL']= st.sidebar.text_input('Input the Sitemap you want to Query against?',"https://jobs.excelcult.com/wp-sitemap-posts-post-1.xml")
39
- st.session_state['HuggingFace_API_Key']= st.sidebar.text_input("What's your HuggingFace API key?",type="password")
40
- st.session_state['Pinecone_Index']= st.sidebar.text_input('What's your Pinecone Index?',"chatbot")
41
- st.session_state['Pinecone_ENV']= st.sidebar.text_input('What's your Pinecone Environment?',"gcp-starter")
42
- st.session_state['Pinecone_API_Key']= st.sidebar.text_input("What's your Pinecone API key?",type="password")
43
 
44
  load_button = st.sidebar.button("Load data to Pinecone", key="load_button")
45
 
 
35
 
36
  # Sidebar to capture the API keys
37
  st.sidebar.title("🗝️")
38
+ st.session_state['Website_URL']= st.sidebar.text_input('Input the Sitemap you want to Query against','https://jobs.excelcult.com/wp-sitemap-posts-post-1.xml')
39
+ st.session_state['HuggingFace_API_Key']= st.sidebar.text_input('Input Your HuggingFace API key',type="password")
40
+ st.session_state['Pinecone_Index']= st.sidebar.text_input('Input Your Pinecone Index','chatbot')
41
+ st.session_state['Pinecone_ENV']= st.sidebar.text_input('Input Your Pinecone Environment','gcp-starter')
42
+ st.session_state['Pinecone_API_Key']= st.sidebar.text_input('Input your Pinecone API key?',type="password")
43
 
44
  load_button = st.sidebar.button("Load data to Pinecone", key="load_button")
45