Spaces:
Runtime error
Runtime error
Commit
·
f8fd67a
1
Parent(s):
65d8986
Update app.py
Browse files
app.py
CHANGED
@@ -35,6 +35,6 @@ gr.HTML("""<h1 style="font-weight:600;font-size:50;margin-top:4px;margin-bottom:
|
|
35 |
model_choice = gr.Dropdown(label="Select Model", choices=[m for m in names], type="index", interactive=True)
|
36 |
input_text = gr.Textbox(label="Input Prompt")
|
37 |
output_window = gr.Code(label="Generated Code")
|
38 |
-
|
39 |
-
interface = gr.Interface(fn=the_process, inputs=[input_text, model_choice], outputs="text", title =
|
40 |
interface.launch()
|
|
|
35 |
model_choice = gr.Dropdown(label="Select Model", choices=[m for m in names], type="index", interactive=True)
|
36 |
input_text = gr.Textbox(label="Input Prompt")
|
37 |
output_window = gr.Code(label="Generated Code")
|
38 |
+
title="Text to Code Generation Models Comparison"
|
39 |
+
interface = gr.Interface(fn=the_process, inputs=[input_text, model_choice], outputs="text", title = title)
|
40 |
interface.launch()
|