Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -135,8 +135,7 @@ def clear_fn():
|
|
| 135 |
base_stats=[
|
| 136 |
{"Health":100,"Power":20,"Strength":24},
|
| 137 |
]
|
| 138 |
-
text_stats='''
|
| 139 |
-
*******************
|
| 140 |
Health: 100
|
| 141 |
Power: 20
|
| 142 |
Strength: 24
|
|
@@ -148,7 +147,7 @@ with gr.Blocks() as app:
|
|
| 148 |
chatbot = gr.Chatbot(label="Mixtral 8x7B Chatbot",show_copy_button=True)
|
| 149 |
with gr.Row():
|
| 150 |
with gr.Column(scale=3):
|
| 151 |
-
prompt=gr.Textbox(label = "Prompt")
|
| 152 |
with gr.Column(scale=1):
|
| 153 |
button=gr.Button()
|
| 154 |
|
|
|
|
| 135 |
base_stats=[
|
| 136 |
{"Health":100,"Power":20,"Strength":24},
|
| 137 |
]
|
| 138 |
+
text_stats='''*******************
|
|
|
|
| 139 |
Health: 100
|
| 140 |
Power: 20
|
| 141 |
Strength: 24
|
|
|
|
| 147 |
chatbot = gr.Chatbot(label="Mixtral 8x7B Chatbot",show_copy_button=True)
|
| 148 |
with gr.Row():
|
| 149 |
with gr.Column(scale=3):
|
| 150 |
+
prompt=gr.Textbox(label = "Prompt", value="Start a new game")
|
| 151 |
with gr.Column(scale=1):
|
| 152 |
button=gr.Button()
|
| 153 |
|