Kobkrit Viriyayudhakorn commited on
Commit
7faefb7
1 Parent(s): 365020a

Change interface again

Browse files
Files changed (1) hide show
  1. app.py +11 -10
app.py CHANGED
@@ -1,23 +1,24 @@
1
  import gradio as gr
2
  import openthaigpt
3
- demo = gr.Blocks()
4
 
5
  def gen(input):
6
  return openthaigpt.generate(input)
7
 
8
  def zero(input):
9
- return openthaigpt.zero(input)
10
 
11
-
12
- gen_interface = gr.Interface(fn=gen, inputs=gr.Textbox(lines=3, label="Input Prompt", value="Q: อยากลดความอ้วน ทำอย่างไร\n\nA:"), outputs="text")
13
- zero_interface = gr.Interface(fn=zero, inputs=gr.Textbox(lines=3, label="Input Text", value="การลดน้ำหนักเป็นเรื่องที่ต้องพิจารณาอย่างละเอียดและรอบคอบเพื่อให้ได้ผลลัพธ์ที่ดีและมีประสิทธิภาพมากที่สุด"), outputs="text")
14
-
15
- with demo:
16
  gr.Markdown("OpenThaiGPT version 0.0.10")
17
  with gr.Tabs():
18
  with gr.TabItem("Generate"):
19
- gen_interface
 
 
 
20
  with gr.TabItem("Zero (GPT Check)"):
21
- zero_interface
 
 
 
22
 
23
- demo.launch()
 
1
  import gradio as gr
2
  import openthaigpt
 
3
 
4
  def gen(input):
5
  return openthaigpt.generate(input)
6
 
7
  def zero(input):
8
+ return str(openthaigpt.zero(input))
9
 
10
+ with gr.Blocks() as demo:
 
 
 
 
11
  gr.Markdown("OpenThaiGPT version 0.0.10")
12
  with gr.Tabs():
13
  with gr.TabItem("Generate"):
14
+ gen_input = gr.Textbox(lines=3, label="Input Prompt", value="Q: อยากลดความอ้วน ทำอย่างไร\n\nA:")
15
+ gen_output = gr.Textbox(lines=3, label="Generated Output", value="")
16
+ gen_btn = gr.Button("Generate")
17
+ gen_btn.click(fn=gen, inputs=gen_input, outputs=gen_output)
18
  with gr.TabItem("Zero (GPT Check)"):
19
+ zero_input = gr.Textbox(lines=3, label="Input Text", value="การลดน้ำหนักเป็นเรื่องที่ต้องพิจารณาอย่างละเอียดและรอบคอบเพื่อให้ได้ผลลัพธ์ที่ดีและมีประสิทธิภาพมากที่สุด")
20
+ zero_output = gr.Textbox(lines=3, label="Check Result", value="")
21
+ zero_btn = gr.Button("Check")
22
+ zero_btn.click(fn=zero, inputs=zero_input, outputs=zero_output)
23
 
24
+ demo.launch()