Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -100,7 +100,7 @@ def chat_llama3_8b(message: str,
|
|
| 100 |
|
| 101 |
|
| 102 |
# Gradio block
|
| 103 |
-
chatbot=gr.Chatbot(height=
|
| 104 |
|
| 105 |
with gr.Blocks(fill_height=True, css=css) as demo:
|
| 106 |
|
|
@@ -126,8 +126,12 @@ with gr.Blocks(fill_height=True, css=css) as demo:
|
|
| 126 |
render=False ),
|
| 127 |
],
|
| 128 |
examples=[
|
| 129 |
-
["
|
| 130 |
-
['How to setup a human base on Mars?
|
|
|
|
|
|
|
|
|
|
|
|
|
| 131 |
],
|
| 132 |
cache_examples=False,
|
| 133 |
)
|
|
|
|
| 100 |
|
| 101 |
|
| 102 |
# Gradio block
|
| 103 |
+
chatbot=gr.Chatbot(height=450, placeholder=PLACEHOLDER, label='Gradio ChatInterface')
|
| 104 |
|
| 105 |
with gr.Blocks(fill_height=True, css=css) as demo:
|
| 106 |
|
|
|
|
| 126 |
render=False ),
|
| 127 |
],
|
| 128 |
examples=[
|
| 129 |
+
["The odd numbers in this group add up to an even number: 15, 32, 5, 13, 82, 7, 1."],
|
| 130 |
+
['How to setup a human base on Mars? Give short answer.'],
|
| 131 |
+
['Explain theory of relativity to me like I’m 8 years old.'],
|
| 132 |
+
['What is 9,000 * 9,000?'],
|
| 133 |
+
['Write a pun-filled happy birthday message to my friend Alex.'],
|
| 134 |
+
['Justify why a penguin might make a good king of the jungle.']
|
| 135 |
],
|
| 136 |
cache_examples=False,
|
| 137 |
)
|