KeshavRa commited on
Commit
1b0d2b2
·
verified ·
1 Parent(s): 2c437a1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -1
app.py CHANGED
@@ -723,4 +723,22 @@ if selected_app == "5) Create Chatbot":
723
  st.rerun()
724
 
725
  if selected_app == "6) Deploy Chatbot":
726
- st.write("deploy")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
723
  st.rerun()
724
 
725
  if selected_app == "6) Deploy Chatbot":
726
+ st.markdown("### On this page, you'll take your chatbot onto your organization's webpage")
727
+ st.divider()
728
+
729
+ st.markdown("## Option 1 (Simple): get a link")
730
+
731
+ st.write("1. Click the three dots in the top right and then 'Embed this space'")
732
+ image = Image.open('Example25.png')
733
+ st.image(image, caption="Example for Step 1",use_column_width=True)
734
+ st.divider()
735
+
736
+ st.write("2. Copy the link 'Direct URL'")
737
+ image = Image.open('Example26.png')
738
+ st.image(image, caption="Example for Step 2",use_column_width=True)
739
+ st.divider()
740
+
741
+ st.write("3. Put that link anywhere on your webpage, it looks like this")
742
+ image = Image.open('Example27.png')
743
+ st.image(image, caption="Example for Step 3",use_column_width=True)
744
+ st.divider()