yuji96's picture
bug fix
380dc97
raw
history blame contribute delete
775 Bytes
import gradio as gr
from api import main
demo = gr.Interface(
fn=main,
inputs=[
gr.Textbox(label="query (検索キーワード)"),
gr.Textbox(lines=2, label="description (LPページの文章)"),
],
examples=[
[
"仕事 求人",
(
"リクルートが運営するAirワーク 採用管理(エアワーク 採用管理)は、"
"世界No.1求人検索エンジンIndeedへ自動掲載ができる、採用HP作成も可能な無料採用管理サービスです。"
),
]
],
outputs=[
gr.Textbox(label="selling_points (抽出されたセールスポイント)"),
gr.Textbox(label="title (ページタイトル)"),
],
)
demo.launch()