File size: 649 Bytes
6b24c42 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import gradio as gr
def calculate_fortune(date):
# ์ฌ๊ธฐ์ ์ฌ์ฃผ ๊ณ์ฐ ๋ก์ง์ ๊ตฌํํฉ๋๋ค.
# ์์ ์์๋ ์
๋ ฅ๋ฐ์ ๋ ์ง๋ฅผ ๊ทธ๋๋ก ๋ฐํํฉ๋๋ค.
return f"์
๋ ฅํ์ ๋ ์ง๋ {date}์
๋๋ค. ์ฌ์ฃผ ์ ๋ณด๋ฅผ ์ฌ๊ธฐ์ ํ์ํฉ๋๋ค."
# Gradio ์ธํฐํ์ด์ค ๊ตฌ์ฑ
demo = gr.Interface(
fn=calculate_fortune,
inputs=gr.Date(label="์ฌ์ฃผ๋ฅผ ํ์ธํ ๋ ์ง๋ฅผ ์ ํํ์ธ์."),
outputs="text",
title="์ฌ์ฃผ ์
๋ ฅ ์บ๋ฆฐ๋",
description="ํน์ ๋ ์ง์ ๋ํ ์ฌ์ฃผ ์ ๋ณด๋ฅผ ํ์ธํ ์ ์์ต๋๋ค."
)
# ์ธํฐํ์ด์ค ์คํ
if __name__ == "__main__":
demo.launch() |