Update app.py
Browse files
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 |
-
|
20 |
-
iface = gr.Interface(fn=GenerateResp, inputs="inputbox", outputs="
|
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="GPT-VC",lines=8)
|
20 |
+
iface = gr.Interface(fn=GenerateResp, inputs="inputbox", outputs="outputbox")
|
21 |
iface.launch()
|