nadiamaqbool81 commited on
Commit
65d8986
·
1 Parent(s): abfc408

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -36,5 +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
 
39
- interface = gr.Interface(fn=the_process, inputs=[input_text, model_choice], outputs="text")
40
  interface.launch()
 
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 = "Text to Code Generation Models Comparison")
40
  interface.launch()