Sal-ONE commited on
Commit
5f11d4b
·
1 Parent(s): 62efdbd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -29,7 +29,7 @@ def code_gen(text, max_tokens, temp, top_p, rep_penality):
29
  Inferece = gr.Interface(
30
  fn=code_gen,
31
  inputs=[
32
- gr.components.Textbox(label="Input what you want, the AI will make the code for you."),
33
  gr.components.Slider(minimum=128, maximum=1024, step=128, value=512, label="Choose Max Token Size"),
34
  gr.components.Slider(minimum=0.1, maximum=1, step=0.05, value=0.65, label="Choose the model Temperature"),
35
  gr.components.Slider(minimum=0.1, maximum=1.25, step=0.05, value=0.9, label="Choose top_p"),
 
29
  Inferece = gr.Interface(
30
  fn=code_gen,
31
  inputs=[
32
+ gr.components.Textbox(label="Enter your request, and the AI will generate the code for you."),
33
  gr.components.Slider(minimum=128, maximum=1024, step=128, value=512, label="Choose Max Token Size"),
34
  gr.components.Slider(minimum=0.1, maximum=1, step=0.05, value=0.65, label="Choose the model Temperature"),
35
  gr.components.Slider(minimum=0.1, maximum=1.25, step=0.05, value=0.9, label="Choose top_p"),