Kushwanth Chowday Kandala commited on
Commit
792de2f
1 Parent(s): e496258

Follow this steps

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -134,6 +134,13 @@ for i in st.session_state["chat_history"]:
134
  # pinecone.init(api_key=PINECONE_API_KEY, environment=PINECONE_ENV)
135
  # st.text(pinecone)
136
  with st.sidebar:
 
 
 
 
 
 
 
137
  uploaded_files = st.file_uploader('Choose your .pdf file', type="pdf", accept_multiple_files=True)
138
  for uploaded_file in uploaded_files:
139
  bytes_data = uploaded_file.read()
 
134
  # pinecone.init(api_key=PINECONE_API_KEY, environment=PINECONE_ENV)
135
  # st.text(pinecone)
136
  with st.sidebar:
137
+ st.markdown("""
138
+ ***Follow this steps***
139
+ - upload pdf file to train the model on your own docs
140
+ - wait see success message on train completion
141
+ - Takes couple of mins after upload the pdf
142
+ - Now Chat with model to get the summarized info or Generative reponse
143
+ """)
144
  uploaded_files = st.file_uploader('Choose your .pdf file', type="pdf", accept_multiple_files=True)
145
  for uploaded_file in uploaded_files:
146
  bytes_data = uploaded_file.read()