rexwang8 commited on
Commit
9dd1cf6
·
1 Parent(s): ffb0b83

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -16,6 +16,6 @@ def GenerateResp(prompt):
16
 
17
 
18
  inputbox = gr.Textbox(label="Input",lines=3,placeholder='Type anything. The longer the better since it gives Qilin more context. Qilin is trained on english translated eastern (mostly chinese) webnovels.')
19
- outputbox = gr.Textbox(label="GPT-VC",lines=8)
20
- iface = gr.Interface(fn=GenerateResp, inputs="inputbox", outputs="outputbox")
21
  iface.launch()
 
16
 
17
 
18
  inputbox = gr.Textbox(label="Input",lines=3,placeholder='Type anything. The longer the better since it gives Qilin more context. Qilin is trained on english translated eastern (mostly chinese) webnovels.')
19
+ outputbox = gr.Textbox(label="Qilin-Lit-6B",lines=8)
20
+ iface = gr.Interface(fn=GenerateResp, inputs="text", outputs="text")
21
  iface.launch()