Neodpy commited on
Commit
cc9d21c
·
verified ·
1 Parent(s): 66bd90f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -127,7 +127,11 @@ with gr.Blocks() as demo:
127
  label="GitHub Repository URL or ID",
128
  placeholder="https://github.com/octocat/Hello-World or octocat/Hello-World",
129
  )
130
- output_box = gr.Textbox(label="Generated Documentation", lines=20)
 
 
 
 
131
  generate_button = gr.Button("Generate Documentation")
132
 
133
  # When the button is clicked, call the generate_docs function.
 
127
  label="GitHub Repository URL or ID",
128
  placeholder="https://github.com/octocat/Hello-World or octocat/Hello-World",
129
  )
130
+ output_box = gr.Textbox(
131
+ label="Generated Documentation",
132
+ lines=20,
133
+ interactive=True,
134
+ )
135
  generate_button = gr.Button("Generate Documentation")
136
 
137
  # When the button is clicked, call the generate_docs function.