Xhaheen commited on
Commit
be059e0
1 Parent(s): 31df063

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -27,10 +27,9 @@ description = '''OpenAI Codex is an artificial intelligence model developed by O
27
  It parses natural language and generates code in response.
28
  It is used to power GitHub Copilot, a programming autocompletion
29
  tool developed for Code generation.'''
30
-
31
 
32
 
33
- iface = gr.Interface( happytt,[ gr.inputs.Slider(0, 1, step=0.1),gr.inputs.Slider(1, 4000, step=1),
34
  gr.inputs.Textbox(type='str',
35
  label="input prompt")],"text", title = title, description = description )
36
  iface.launch(debug=True)
 
27
  It parses natural language and generates code in response.
28
  It is used to power GitHub Copilot, a programming autocompletion
29
  tool developed for Code generation.'''
 
30
 
31
 
32
+ iface = gr.Interface( happytt,[ gr.inputs.Slider(0, 1, step=0.1),gr.inputs.Slider(150, 4000, step=1),
33
  gr.inputs.Textbox(type='str',
34
  label="input prompt")],"text", title = title, description = description )
35
  iface.launch(debug=True)