Update app.py
Browse files
app.py
CHANGED
@@ -52,7 +52,7 @@ with gr.Blocks() as demo:
|
|
52 |
value="orca-mini-3b-gguf2-q4_0.gguf")
|
53 |
|
54 |
# Textbox to show model description
|
55 |
-
explanation = gr.Textbox(label="Model Description", lines=10,
|
56 |
|
57 |
# Link the dropdown with the textbox to update the description based on the selected model
|
58 |
model_selection.change(fn=llm_intro, inputs=model_selection, outputs=explanation)
|
|
|
52 |
value="orca-mini-3b-gguf2-q4_0.gguf")
|
53 |
|
54 |
# Textbox to show model description
|
55 |
+
explanation = gr.Textbox(label="Model Description", lines=10, interactive=False, value="Model description displayed here")
|
56 |
|
57 |
# Link the dropdown with the textbox to update the description based on the selected model
|
58 |
model_selection.change(fn=llm_intro, inputs=model_selection, outputs=explanation)
|