Update app.py
Browse files
app.py
CHANGED
@@ -198,9 +198,9 @@ with gr.Blocks(theme=gr.themes.Default(), css='styles.css') as demo:
|
|
198 |
## Tokens
|
199 |
### Here go the tokens of the prompt (click on the one to explore)
|
200 |
''')
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
|
205 |
progress_dummy = gr.Markdown('', elem_id='progress_dummy')
|
206 |
interpretation_bubbles = [gr.Textbox('', container=False, visible=False,
|
|
|
198 |
## Tokens
|
199 |
### Here go the tokens of the prompt (click on the one to explore)
|
200 |
''')
|
201 |
+
with gr.Row():
|
202 |
+
for btn in tokens_container:
|
203 |
+
btn.render()
|
204 |
|
205 |
progress_dummy = gr.Markdown('', elem_id='progress_dummy')
|
206 |
interpretation_bubbles = [gr.Textbox('', container=False, visible=False,
|