sam2ai commited on
Commit
a56fc6a
1 Parent(s): 237ac64

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -9,7 +9,7 @@ def generate_text(input_text):
9
  print(output)
10
  return output['choices'][0]['text']
11
 
12
- input_text = gr.inputs.Textbox(label="Enter your input text")
13
- output_text = gr.outputs.Textbox(lines= 10, label="Output text")
14
 
15
  gr.Interface(fn=generate_text, inputs=input_text, outputs=output_text, title="Alpaca GGML").launch()
 
9
  print(output)
10
  return output['choices'][0]['text']
11
 
12
+ input_text = gr.inputs.Textbox(lines= 10, label="Enter your input text")
13
+ output_text = gr.outputs.Textbox(label="Output text")
14
 
15
  gr.Interface(fn=generate_text, inputs=input_text, outputs=output_text, title="Alpaca GGML").launch()