Spaces:
Sleeping
Sleeping
Update webui.py
Browse files
webui.py
CHANGED
@@ -117,7 +117,7 @@ chatbot = gr.Chatbot(show_label=False, layout="panel", show_copy_button=True, he
|
|
117 |
|
118 |
with gr.Blocks(theme="theme-repo/STONE_Theme", title="TensorLM", css="style.css") as demo:
|
119 |
with gr.Row():
|
120 |
-
model = gr.Dropdown(label="Model (only based on Llama in GGML format (.bin))", choices=os.listdir(f"{dir}
|
121 |
#refresh_model = gr.Button(value="Load model", interactive=True, scale=1)
|
122 |
with gr.Row():
|
123 |
with gr.Tab("💬"):
|
|
|
117 |
|
118 |
with gr.Blocks(theme="theme-repo/STONE_Theme", title="TensorLM", css="style.css") as demo:
|
119 |
with gr.Row():
|
120 |
+
model = gr.Dropdown(label="Model (only based on Llama in GGML format (.bin))", choices=os.listdir(f"{dir}/models"), value="None", interactive=True, allow_custom_value=False, scale=50)
|
121 |
#refresh_model = gr.Button(value="Load model", interactive=True, scale=1)
|
122 |
with gr.Row():
|
123 |
with gr.Tab("💬"):
|