Update app.py
Browse files
app.py
CHANGED
@@ -25,6 +25,15 @@ class GlobalState:
|
|
25 |
interpretation_prompt_template : str = '{prompt}'
|
26 |
original_prompt_template : str = '{prompt}'
|
27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
|
29 |
## functions
|
30 |
@spaces.GPU
|
|
|
25 |
interpretation_prompt_template : str = '{prompt}'
|
26 |
original_prompt_template : str = '{prompt}'
|
27 |
|
28 |
+
|
29 |
+
suggested_interpretation_prompts = [
|
30 |
+
"Sure, here's a bullet list of the key words in your message:",
|
31 |
+
"Sure, I'll summarize your message:",
|
32 |
+
"Sure, here are the words in your message:",
|
33 |
+
"Before responding, let me repeat the message you wrote:",
|
34 |
+
"Let me repeat the message:"
|
35 |
+
]
|
36 |
+
|
37 |
|
38 |
## functions
|
39 |
@spaces.GPU
|