nicoladisabato commited on
Commit
9059d98
·
1 Parent(s): 563ff9f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -7
app.py CHANGED
@@ -15,13 +15,16 @@ models = {
15
 
16
  selected_model = st.selectbox("Select a model", list(models.keys()))
17
 
18
- predefined_text = """Nico: the moon is very beautiful tonight.
19
- Demo: I agree with you.
20
- Nico: My dream is to go to the moon one day.
21
- Demo: Are you serious? I'm scared about the space.
22
- Nico: So won't you come?
23
- Demo: I prefer to go to Lido Le Canne in Pulsano.
24
- Nico: Ahahah
 
 
 
25
  """
26
 
27
  text = st.text_area("Enter your chat", value=predefined_text, height=200)
 
15
 
16
  selected_model = st.selectbox("Select a model", list(models.keys()))
17
 
18
+ predefined_text = """Alice: Hey, have you heard about the new movie coming out next week?
19
+ Bob: Yes, I saw the trailer. It looks really exciting.
20
+ Alice: I'm thinking of getting tickets for opening night. Are you interested?
21
+ Bob: I'd love to, but I might be busy with work that night.
22
+ Alice: Oh, that's a shame. It would have been fun to watch it together.
23
+ Bob: Definitely! Let me know how the movie is after you watch it.
24
+ Alice: Will do! I'm hoping it lives up to the hype.
25
+ Bob: Fingers crossed! Enjoy the movie if you go.
26
+ Alice: Thanks! I'll give you a spoiler-free review afterward.
27
+ Bob: Looking forward to it. Have a great time!
28
  """
29
 
30
  text = st.text_area("Enter your chat", value=predefined_text, height=200)