Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -77,7 +77,7 @@ with gr.Blocks() as app:
|
|
| 77 |
with gr.Row():
|
| 78 |
with gr.Column(scale=3):
|
| 79 |
with gr.Group():
|
| 80 |
-
chat_b = gr.Chatbot()
|
| 81 |
with gr.Row():
|
| 82 |
with gr.Column(scale=3):
|
| 83 |
inp = gr.Textbox(label="Prompt")
|
|
@@ -95,7 +95,7 @@ with gr.Blocks() as app:
|
|
| 95 |
im_width=gr.Number(label="Width",value=500)
|
| 96 |
wait_time=gr.Number(label="Wait Time",value=3000)
|
| 97 |
theme=gr.Radio(label="Theme", choices=["light","dark"],value="light")
|
| 98 |
-
chatblock=gr.Dropdown(label="Chatblocks",choices=[c for c in range(1,40)],multiselect=True)
|
| 99 |
|
| 100 |
im_btn=gr.Button("Screenshot")
|
| 101 |
img=gr.Image(type='filepath')
|
|
|
|
| 77 |
with gr.Row():
|
| 78 |
with gr.Column(scale=3):
|
| 79 |
with gr.Group():
|
| 80 |
+
chat_b = gr.Chatbot(label="Chatbot Mixtral-8x7b-instruct-v0.1")
|
| 81 |
with gr.Row():
|
| 82 |
with gr.Column(scale=3):
|
| 83 |
inp = gr.Textbox(label="Prompt")
|
|
|
|
| 95 |
im_width=gr.Number(label="Width",value=500)
|
| 96 |
wait_time=gr.Number(label="Wait Time",value=3000)
|
| 97 |
theme=gr.Radio(label="Theme", choices=["light","dark"],value="light")
|
| 98 |
+
chatblock=gr.Dropdown(label="Chatblocks",info="Choose specific blocks of chat",choices=[c for c in range(1,40)],multiselect=True)
|
| 99 |
|
| 100 |
im_btn=gr.Button("Screenshot")
|
| 101 |
img=gr.Image(type='filepath')
|