Update app.py
Browse files
app.py
CHANGED
@@ -165,13 +165,13 @@ with gr.Blocks(theme="Nymbo/Alyx_Theme") as demo:
|
|
165 |
examples=examples_questions,
|
166 |
additional_inputs=additional_inputs,
|
167 |
cache_examples=False,
|
168 |
-
|
169 |
|
170 |
relevant_info = gr.Textbox(
|
171 |
label="Retrieved Information",
|
172 |
interactive=False,
|
173 |
-
lines=20
|
174 |
-
|
175 |
|
176 |
# Launch the Gradio app
|
177 |
demo.launch(share=True)
|
|
|
165 |
examples=examples_questions,
|
166 |
additional_inputs=additional_inputs,
|
167 |
cache_examples=False,
|
168 |
+
scale=2) # scale=2 means it takes 2 parts out of 3 (2/3)
|
169 |
|
170 |
relevant_info = gr.Textbox(
|
171 |
label="Retrieved Information",
|
172 |
interactive=False,
|
173 |
+
lines=20,
|
174 |
+
scale=1) # scale=1 means it takes 1 part out of 3 (1/3)
|
175 |
|
176 |
# Launch the Gradio app
|
177 |
demo.launch(share=True)
|