Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -44,14 +44,16 @@ def chatbot(prompt):
|
|
| 44 |
return ai_response
|
| 45 |
|
| 46 |
#Define your HTML content
|
| 47 |
-
|
| 48 |
-
<div style='
|
| 49 |
-
<
|
| 50 |
-
<
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
|
|
|
|
|
|
| 55 |
</div>
|
| 56 |
"""
|
| 57 |
|
|
|
|
| 44 |
return ai_response
|
| 45 |
|
| 46 |
#Define your HTML content
|
| 47 |
+
tml_content = """
|
| 48 |
+
<div style='display: flex; align-items: center;'>
|
| 49 |
+
<img src='https://i.ibb.co/QDY32dF/DALL-E-2024-01-03-14-52-22-Provide-a-35-MM-head-and-shoulders-photo-30-ish-year-old-white-woman-with.png' alt='Chatbot Image' style='width: 300px; margin-right: 20px;'>
|
| 50 |
+
<div>
|
| 51 |
+
<h2>Welcome to the Chatbot</h2>
|
| 52 |
+
<p>You are an entrepreneur exploring opportunities to help parents of young children.</p>
|
| 53 |
+
<p>You are conducting an interview with Freya, a 30-something friend-of-a-friend who has a 2-year old daughter, Laurie.</p>
|
| 54 |
+
<p> Ask her questions about her experience buying toys for her child. Try to use this as a way to identify potential problems she's facing and opportunities you can address.</p>
|
| 55 |
+
<p> After you have asked her five or so questions, type in '<break character>' to see an analysis of your interview style.</p>
|
| 56 |
+
</div>
|
| 57 |
</div>
|
| 58 |
"""
|
| 59 |
|