Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -64,8 +64,8 @@ with gr.Blocks() as demo:
|
|
64 |
with gr.Row():
|
65 |
model_choice = gr.Dropdown(label="Select Model", choices=premium_models, value=premium_models[0])
|
66 |
|
67 |
-
|
68 |
-
model_choice = gr.Textbox(label="System Prompt",
|
69 |
|
70 |
chatbot_ui = gr.Chatbot(type="messages")
|
71 |
user_input = gr.Textbox(show_label=False, placeholder="Type your message and press Enter")
|
|
|
64 |
with gr.Row():
|
65 |
model_choice = gr.Dropdown(label="Select Model", choices=premium_models, value=premium_models[0])
|
66 |
|
67 |
+
with gr.Row():
|
68 |
+
model_choice = gr.Textbox(label="System Prompt", value=default_system_prompt)
|
69 |
|
70 |
chatbot_ui = gr.Chatbot(type="messages")
|
71 |
user_input = gr.Textbox(show_label=False, placeholder="Type your message and press Enter")
|