Spaces:
Running
Running
freQuensy23
commited on
Commit
•
d65753c
1
Parent(s):
6bfe382
IMP default value
Browse files
app.py
CHANGED
@@ -36,7 +36,7 @@ with gr.Blocks() as demo:
|
|
36 |
llama3 = gr.Textbox(label='llama-3', lines=4, interactive=False)
|
37 |
bloom = gr.Textbox(label='bloom [GPU]', lines=4, interactive=False)
|
38 |
|
39 |
-
user_input = gr.Textbox(label='User Input', lines=2)
|
40 |
gen_button = gr.Button('Generate')
|
41 |
|
42 |
gen_button.click(
|
|
|
36 |
llama3 = gr.Textbox(label='llama-3', lines=4, interactive=False)
|
37 |
bloom = gr.Textbox(label='bloom [GPU]', lines=4, interactive=False)
|
38 |
|
39 |
+
user_input = gr.Textbox(label='User Input', lines=2, value='Calculate expression: 7-3=')
|
40 |
gen_button = gr.Button('Generate')
|
41 |
|
42 |
gen_button.click(
|