Spaces:
Runtime error
Runtime error
Commit
·
9059d98
1
Parent(s):
563ff9f
Update app.py
Browse files
app.py
CHANGED
@@ -15,13 +15,16 @@ models = {
|
|
15 |
|
16 |
selected_model = st.selectbox("Select a model", list(models.keys()))
|
17 |
|
18 |
-
predefined_text = """
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
|
|
|
|
|
|
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)
|