CoolFace
Apppublic

peteroh1/korean

sourceHugging Facemitupdated 3y agoView on Hugging Face
0likes
app.py12 linesDownload Raw Back to root
1import gradio as gr2from api_fn import request_hyper3 4with gr.Blocks() as demo:5    gr.Markdown("# 한국어 문법 도우미")6    input_text = gr.Textbox(label="한국어 문법에 대해 설명해 줍니다.")7    send_btn = gr.Button("보내기")8    ai_textbox = gr.Textbox(label="클로바의 답변")9 10    send_btn.click(request_hyper, inputs=input_text , outputs=ai_textbox)11 12demo.launch()