tharun1507 commited on
Commit
bb8fe7f
·
verified ·
1 Parent(s): c3df842

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -61,6 +61,7 @@ demo = gr.Interface(
61
  gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
62
  gr.Slider(minimum=0.1, maximum=1.0, value=0.95, step=0.05, label="Top-p (nucleus sampling)"),
63
  ],
 
64
  examples=examples,
65
  title="Python Code Explainer"
66
  )
 
61
  gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
62
  gr.Slider(minimum=0.1, maximum=1.0, value=0.95, step=0.05, label="Top-p (nucleus sampling)"),
63
  ],
64
+ outputs=gr.Textbox(label="Explanation Here", lines=10), # Added the outputs argument
65
  examples=examples,
66
  title="Python Code Explainer"
67
  )