KeshavRa commited on
Commit
2c13257
·
verified ·
1 Parent(s): c11d0ed

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -5
app.py CHANGED
@@ -256,9 +256,13 @@ if selected_app == "3) Upload Datasets":
256
  st.markdown("Go to this [google colab link](https://colab.research.google.com/drive/1eCpk9HUoCKZb--tiNyQSHFW2ojoaA35m) to get started")
257
 
258
  if selected_app == "4) Create Chatbot":
259
- code = '''
260
- def hello_world():
261
- print("Hello, world!")
 
 
 
262
  '''
263
-
264
- st.code(code, language='python')
 
 
256
  st.markdown("Go to this [google colab link](https://colab.research.google.com/drive/1eCpk9HUoCKZb--tiNyQSHFW2ojoaA35m) to get started")
257
 
258
  if selected_app == "4) Create Chatbot":
259
+ requirements = '''
260
+ openai
261
+ scipy
262
+ streamlit
263
+ chromadb
264
+ datasets
265
  '''
266
+
267
+ st.write("requirements.txt")
268
+ st.code(requirements, language='python')