Spaces:
Running
on
Zero
Running
on
Zero
Upload app.py
Browse files
app.py
CHANGED
@@ -48,16 +48,16 @@ with gr.Blocks(theme="NoCrypt/miku@>=1.2.2", fill_width=True, css="") as app:
|
|
48 |
chat_topp = gr.Slider(minimum=0.1, maximum=1.0, value=0.95, step=0.05, label="Top-p")
|
49 |
chat_topk = gr.Slider(minimum=0, maximum=100, value=40, step=1, label="Top-k")
|
50 |
chat_rp = gr.Slider(minimum=0.0, maximum=2.0, value=1.1, step=0.1, label="Repetition penalty")
|
51 |
-
with gr.Accordion("Add models", open=True):
|
52 |
-
chat_add_text = gr.Textbox(label="URL or Repo ID", placeholder="https://huggingface.co/mradermacher/MagnumChronos-i1-GGUF/blob/main/MagnumChronos.i1-Q4_K_M.gguf", lines=1)
|
53 |
-
chat_add_format = gr.Dropdown(choices=get_llm_formats(), value=get_llm_formats()[0], label="Message format")
|
54 |
-
chat_add_submit = gr.Button("Update lists of models")
|
55 |
with gr.Accordion("Modes", open=True):
|
56 |
chat_model = gr.Dropdown(choices=get_dolphin_models(), value=get_dolphin_models()[0][1], allow_custom_value=True, label="Model")
|
57 |
chat_model_info = gr.Markdown(value=get_dolphin_model_info(get_dolphin_models()[0][1]), label="Model info")
|
58 |
with gr.Row():
|
59 |
chat_mode = gr.Dropdown(choices=get_dolphin_sysprompt_mode(), value=get_dolphin_sysprompt_mode()[0], allow_custom_value=False, label="Mode")
|
60 |
chat_lang = gr.Dropdown(choices=get_dolphin_languages(), value="English", allow_custom_value=True, label="Output language")
|
|
|
|
|
|
|
|
|
61 |
with gr.Row():
|
62 |
with gr.Group():
|
63 |
output_text = gr.TextArea(label="Output tags", interactive=False, show_copy_button=True)
|
|
|
48 |
chat_topp = gr.Slider(minimum=0.1, maximum=1.0, value=0.95, step=0.05, label="Top-p")
|
49 |
chat_topk = gr.Slider(minimum=0, maximum=100, value=40, step=1, label="Top-k")
|
50 |
chat_rp = gr.Slider(minimum=0.0, maximum=2.0, value=1.1, step=0.1, label="Repetition penalty")
|
|
|
|
|
|
|
|
|
51 |
with gr.Accordion("Modes", open=True):
|
52 |
chat_model = gr.Dropdown(choices=get_dolphin_models(), value=get_dolphin_models()[0][1], allow_custom_value=True, label="Model")
|
53 |
chat_model_info = gr.Markdown(value=get_dolphin_model_info(get_dolphin_models()[0][1]), label="Model info")
|
54 |
with gr.Row():
|
55 |
chat_mode = gr.Dropdown(choices=get_dolphin_sysprompt_mode(), value=get_dolphin_sysprompt_mode()[0], allow_custom_value=False, label="Mode")
|
56 |
chat_lang = gr.Dropdown(choices=get_dolphin_languages(), value="English", allow_custom_value=True, label="Output language")
|
57 |
+
with gr.Accordion("Add models", open=True):
|
58 |
+
chat_add_text = gr.Textbox(label="URL or Repo ID", placeholder="https://huggingface.co/mradermacher/MagnumChronos-i1-GGUF/blob/main/MagnumChronos.i1-Q4_K_M.gguf", lines=1)
|
59 |
+
chat_add_format = gr.Dropdown(choices=get_llm_formats(), value=get_llm_formats()[0], label="Message format")
|
60 |
+
chat_add_submit = gr.Button("Update lists of models")
|
61 |
with gr.Row():
|
62 |
with gr.Group():
|
63 |
output_text = gr.TextArea(label="Output tags", interactive=False, show_copy_button=True)
|