Spaces:
Sleeping
Sleeping
Commit
·
eb5eb52
1
Parent(s):
0608f54
Add examples
Browse files
app.py
CHANGED
@@ -55,6 +55,11 @@ demo = gr.ChatInterface(
|
|
55 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
56 |
gr.Slider(minimum=0.1, maximum=10, value=1.5, step=0.1, label="Repetition penalty"),
|
57 |
],
|
|
|
|
|
|
|
|
|
|
|
58 |
)
|
59 |
|
60 |
if __name__ == "__main__":
|
|
|
55 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
56 |
gr.Slider(minimum=0.1, maximum=10, value=1.5, step=0.1, label="Repetition penalty"),
|
57 |
],
|
58 |
+
examples=[
|
59 |
+
{"text": "What types of roles are in the system?"},
|
60 |
+
{"text": "How to import records into stock receipts in Boost.space?"},
|
61 |
+
{"text": "Is it possible to create a PDF export from the product?"}
|
62 |
+
],
|
63 |
)
|
64 |
|
65 |
if __name__ == "__main__":
|