KeshavRa commited on
Commit
f659d34
·
verified ·
1 Parent(s): 48e0c35

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -401,7 +401,7 @@ if selected_app == "5) Create Chatbot":
401
  domain_link = st.text_input(f"Please enter name of dataset {i+1} (from Step 4)", "Example: About_YSA_Database")
402
  domain_name = st.text_input(f"What should dataset {i+1} be called in the chatbot itself", "Example: About YSA")
403
 
404
- domain = {"link": username + domain_link, "name": domain_name}
405
  domain_info.append(domain)
406
  st.divider()
407
 
 
401
  domain_link = st.text_input(f"Please enter name of dataset {i+1} (from Step 4)", "Example: About_YSA_Database")
402
  domain_name = st.text_input(f"What should dataset {i+1} be called in the chatbot itself", "Example: About YSA")
403
 
404
+ domain = {"link": username + '/' + domain_link, "name": domain_name}
405
  domain_info.append(domain)
406
  st.divider()
407