rapidapi1 / app.py
seawolf2357's picture
Create app.py
01a4535 verified
raw
history blame contribute delete
504 Bytes
import gradio as gr
def hello_world(input_text):
# μž…λ ₯값을 λ°›μ•„μ„œ "world"λ₯Ό ν¬ν•¨ν•˜μ—¬ λ°˜ν™˜ν•©λ‹ˆλ‹€
return f"{input_text}, world!"
# Gradio μΈν„°νŽ˜μ΄μŠ€ 생성
demo = gr.Interface(
fn=hello_world,
inputs=gr.Textbox(placeholder="ν…μŠ€νŠΈλ₯Ό μž…λ ₯ν•˜μ„Έμš”..."),
outputs="text",
title="Hello World App",
description="μž…λ ₯ν•œ ν…μŠ€νŠΈμ— 'world'λ₯Ό μΆ”κ°€ν•˜μ—¬ λ°˜ν™˜ν•©λ‹ˆλ‹€."
)
# μ• ν”Œλ¦¬μΌ€μ΄μ…˜ μ‹€ν–‰
if __name__ == "__main__":
demo.launch()