Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -63,6 +63,10 @@ with gr.Blocks(css=css) as myface:
|
|
63 |
border-right-color: #ffffff !important;
|
64 |
border-bottom-color: #ffffff !important;
|
65 |
border-left-color: #000000 !important;
|
|
|
|
|
|
|
|
|
66 |
}
|
67 |
:root {
|
68 |
--neutral-100: #000000 !important;
|
@@ -83,7 +87,7 @@ with gr.Blocks(css=css) as myface:
|
|
83 |
with gr.Row():
|
84 |
with gr.Column(scale=100):
|
85 |
#Model selection dropdown
|
86 |
-
model_name1 = gr.Dropdown(label="Select Model", choices=[m for m in models], type="index", value=current_model, interactive=True
|
87 |
with gr.Row():
|
88 |
with gr.Column(scale=100):
|
89 |
magic1=gr.Textbox(label="Your Prompt", lines=4)
|
|
|
63 |
border-right-color: #ffffff !important;
|
64 |
border-bottom-color: #ffffff !important;
|
65 |
border-left-color: #000000 !important;
|
66 |
+
}
|
67 |
+
.gr-input {
|
68 |
+
color: #ffffff; !important;
|
69 |
+
background-image: linear-gradient(#1e1e2e, #24273a, #303446) !important;
|
70 |
}
|
71 |
:root {
|
72 |
--neutral-100: #000000 !important;
|
|
|
87 |
with gr.Row():
|
88 |
with gr.Column(scale=100):
|
89 |
#Model selection dropdown
|
90 |
+
model_name1 = gr.Dropdown(label="Select Model", choices=[m for m in models], type="index", value=current_model, interactive=True)
|
91 |
with gr.Row():
|
92 |
with gr.Column(scale=100):
|
93 |
magic1=gr.Textbox(label="Your Prompt", lines=4)
|