Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 = "
|
| 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:
|