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