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 |
-
outputbox = gr.Textbox(label="
|
20 |
-
iface = gr.Interface(fn=GenerateResp, inputs="
|
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()
|