Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -110,7 +110,6 @@ with gr.Blocks(theme=theme, analytics_enabled=False, css=css) as demo:
|
|
110 |
Type in the box below and click the button to generate answers to your most pressing questions!
|
111 |
"""
|
112 |
)
|
113 |
-
do_save = gr.Checkbox(value=True, label="You consent to the storage of your prompt and generated text for research and development purposes.")
|
114 |
with gr.Row():
|
115 |
with gr.Column(scale=3):
|
116 |
instruction = gr.Textbox(placeholder="Enter your question here", label="Question", elem_id="q-input")
|
@@ -131,6 +130,11 @@ with gr.Blocks(theme=theme, analytics_enabled=False, css=css) as demo:
|
|
131 |
)
|
132 |
|
133 |
with gr.Column(scale=1):
|
|
|
|
|
|
|
|
|
|
|
134 |
temperature = gr.Slider(
|
135 |
label="Temperature",
|
136 |
value=0.9,
|
|
|
110 |
Type in the box below and click the button to generate answers to your most pressing questions!
|
111 |
"""
|
112 |
)
|
|
|
113 |
with gr.Row():
|
114 |
with gr.Column(scale=3):
|
115 |
instruction = gr.Textbox(placeholder="Enter your question here", label="Question", elem_id="q-input")
|
|
|
130 |
)
|
131 |
|
132 |
with gr.Column(scale=1):
|
133 |
+
do_save = gr.Checkbox(
|
134 |
+
value=True,
|
135 |
+
label="Store data",
|
136 |
+
info="You consent to the storage of your prompt and generated text for research and development purposes."
|
137 |
+
)
|
138 |
temperature = gr.Slider(
|
139 |
label="Temperature",
|
140 |
value=0.9,
|