Spaces:
Runtime error
Runtime error
Joel Lundgren
commited on
Commit
·
215c956
1
Parent(s):
d7b4521
switch places
Browse files
app.py
CHANGED
|
@@ -129,7 +129,7 @@ with gr.Blocks() as demo:
|
|
| 129 |
detected_objects_output = gr.Textbox(label="Detected Objects")
|
| 130 |
|
| 131 |
with gr.Tab("LLM Chat"):
|
| 132 |
-
model_selector = gr.Dropdown(choices=["
|
| 133 |
system_prompt_input = gr.Textbox(label="System Prompt", value="You are a helpful assistant.")
|
| 134 |
user_prompt_input = gr.Textbox(label="User Prompt")
|
| 135 |
llm_output = gr.Textbox(label="LLM Response")
|
|
|
|
| 129 |
detected_objects_output = gr.Textbox(label="Detected Objects")
|
| 130 |
|
| 131 |
with gr.Tab("LLM Chat"):
|
| 132 |
+
model_selector = gr.Dropdown(choices=["gemma3:1b", "qwen3:0.6b"], label="Select LLM Model")
|
| 133 |
system_prompt_input = gr.Textbox(label="System Prompt", value="You are a helpful assistant.")
|
| 134 |
user_prompt_input = gr.Textbox(label="User Prompt")
|
| 135 |
llm_output = gr.Textbox(label="LLM Response")
|