benspigel commited on
Commit
d2e9b60
·
1 Parent(s): bf9aba9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -8
app.py CHANGED
@@ -44,14 +44,16 @@ def chatbot(prompt):
44
  return ai_response
45
 
46
  #Define your HTML content
47
- html_content = """
48
- <div style='text-align: <center;'>
49
- <h2>Welcome to InterviewBot9000</h2>
50
- <p>You are an entrepreneur exploring opportunities to help parents of young children.</p>
51
- <p>You are conducting an interview with Freya, a 30-something friend-of-a-friend who has a 2-year old daughter, Laurie.</p>
52
- <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>
53
- <p> After you have asked her five or so questions, type in '&lt;break character&gt;' to see an analysis of your interview style.
54
- <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="DALL-E-2024-01-03-14-52-22-Provide-a-35-MM-head-and-shoulders-photo-30-ish-year-old-white-woman-with" border="0"' alt='Chatbot Image' style='width: 300px;'>
 
 
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 '&lt;break character&gt;' to see an analysis of your interview style.</p>
56
+ </div>
57
  </div>
58
  """
59