Spaces:
Runtime error
Runtime error
Commit
·
e934080
1
Parent(s):
4e15b3e
Update app.py
Browse files
app.py
CHANGED
@@ -36,6 +36,5 @@ model_choice = gr.Dropdown(label="Select Model", choices=[m for m in names], typ
|
|
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 |
-
|
40 |
-
interface = gr.Interface(fn=the_process, inputs=[input_text, model_choice], outputs="text", title = title, theme = theme)
|
41 |
interface.launch()
|
|
|
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()
|