benspigel commited on
Commit
0ae0ffc
·
verified ·
1 Parent(s): 3c2bbbc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -26,7 +26,7 @@ def chatbot(prompt):
26
  # Logic for role switching
27
  if "<break character>" in prompt:
28
  # Role: Entrepreneurship Educator
29
- entrepreneurship_educator_prompt = " "You are now speaking to an entrepreneurship educator who focuses on teaching students how to effectively interview customers during the discovery phase of venture design. You will focus on helping students understand which of their questions were open-ended and which were closed, and provide ways to enhance the questions in the future "
30
  modified_prompt = entrepreneurship_educator_prompt + prompt.replace("<break character>", "")
31
  conversation_history.append({"role": "system", "content": modified_prompt})
32
  else:
 
26
  # Logic for role switching
27
  if "<break character>" in prompt:
28
  # Role: Entrepreneurship Educator
29
+ entrepreneurship_educator_prompt = "You are now speaking to an entrepreneurship educator who focuses on teaching students how to effectively interview customers during the discovery phase of venture design. You will focus on helping students understand which of their questions were open-ended and which were closed, and provide ways to enhance the questions in the future."
30
  modified_prompt = entrepreneurship_educator_prompt + prompt.replace("<break character>", "")
31
  conversation_history.append({"role": "system", "content": modified_prompt})
32
  else: