mike boone commited on
Commit
a4dafef
·
1 Parent(s): d6c8674

fix: update onboarding invite docs link

Browse files
Files changed (1) hide show
  1. chat_interface.py +5 -2
chat_interface.py CHANGED
@@ -5081,11 +5081,14 @@ def create_chat_interface():
5081
  display = (display_name or clean_email.split("@")[0]).strip()
5082
  app_url = resolve_app_url_for_invite(request).rstrip("/") + "/"
5083
  invite = (
5084
- f"Hi {display} - you now have access to DemoPrep.\n\n"
5085
  f"App: {app_url}\n"
 
5086
  f"Username: {clean_email}\n"
5087
  f"Temporary password: {temp_password}\n\n"
5088
- "Please sign in and immediately change your password before running demos."
 
 
5089
  )
5090
  if not um._supports_must_change_password():
5091
  invite += (
 
5081
  display = (display_name or clean_email.split("@")[0]).strip()
5082
  app_url = resolve_app_url_for_invite(request).rstrip("/") + "/"
5083
  invite = (
5084
+ f"Hi {display}, I set up DemoPrep access for you.\n\n"
5085
  f"App: {app_url}\n"
5086
+ "Docs: https://thoughtspot-dp-demoprep-doc.static.hf.space/index.html\n"
5087
  f"Username: {clean_email}\n"
5088
  f"Temporary password: {temp_password}\n\n"
5089
+ "When you first sign in, DemoPrep will ask you to choose a new password. "
5090
+ "After that, you can start building demos from the main screen.\n\n"
5091
+ "If anything looks off, drop a note in the DemoPrep Slack channel."
5092
  )
5093
  if not um._supports_must_change_password():
5094
  invite += (