Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -105,6 +105,13 @@ with gr.Blocks() as demo:
|
|
105 |
char_count = gr.Textbox(label="Minumum Character Limit Check")
|
106 |
input_text.change(fn=len_validator, inputs=input_text, outputs=char_count)
|
107 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
with gr.Row():
|
109 |
with gr.Column():
|
110 |
ai_option = gr.Radio(
|
@@ -142,13 +149,6 @@ with gr.Blocks() as demo:
|
|
142 |
"""
|
143 |
)
|
144 |
|
145 |
-
models = gr.Dropdown(
|
146 |
-
model_list,
|
147 |
-
value=model_list,
|
148 |
-
multiselect=True,
|
149 |
-
label="Models to test against",
|
150 |
-
)
|
151 |
-
|
152 |
with gr.Row():
|
153 |
with gr.Column():
|
154 |
bcLabel = gr.Label(label="Source")
|
|
|
105 |
char_count = gr.Textbox(label="Minumum Character Limit Check")
|
106 |
input_text.change(fn=len_validator, inputs=input_text, outputs=char_count)
|
107 |
|
108 |
+
with gr.Row():
|
109 |
+
models = gr.Dropdown(
|
110 |
+
model_list,
|
111 |
+
value=model_list,
|
112 |
+
multiselect=True,
|
113 |
+
label="Models to test against",
|
114 |
+
)
|
115 |
with gr.Row():
|
116 |
with gr.Column():
|
117 |
ai_option = gr.Radio(
|
|
|
149 |
"""
|
150 |
)
|
151 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
with gr.Row():
|
153 |
with gr.Column():
|
154 |
bcLabel = gr.Label(label="Source")
|