Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -71,9 +71,10 @@ if __name__ == "__main__":
|
|
71 |
with gr.Column():
|
72 |
text = gr.Textbox(
|
73 |
label="Input",
|
74 |
-
value=" ", # should be set to " " when plugged into a real API
|
|
|
75 |
)
|
76 |
-
tokens = gr.Slider(1, 64, value=
|
77 |
|
78 |
|
79 |
with gr.Row():
|
|
|
71 |
with gr.Column():
|
72 |
text = gr.Textbox(
|
73 |
label="Input",
|
74 |
+
value=" ", # should be set to " " when plugged into a real API,
|
75 |
+
placeholder="Question: What are the rights of person with disability?\nAnswer:"
|
76 |
)
|
77 |
+
tokens = gr.Slider(1, 64, value=60, step=1, label="Tokens to generate")
|
78 |
|
79 |
|
80 |
with gr.Row():
|