KeshavRa commited on
Commit
1a8c55e
·
verified ·
1 Parent(s): f3f8fee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -1
app.py CHANGED
@@ -253,4 +253,12 @@ if selected_app == "2) Merge CSVs":
253
  st.rerun()
254
 
255
  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")
 
 
 
 
 
 
 
 
 
253
  st.rerun()
254
 
255
  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 = '''python
260
+ def hello_world():
261
+ print("Hello, world!")
262
+ '''
263
+
264
+ st.code(code, language='python')