Spaces:
Runtime error
Runtime error
import gradio as gr | |
from transformers import pipeline | |
# ํ๊ตญ์ด ์ฑํ ๋ชจ๋ธ ๋ถ๋ฌ์ค๊ธฐ (์: KoAlpaca, LLaMA, Mistral ๋ฑ) | |
chat = pipeline("text-generation", model="beomi/KoAlpaca-Polyglot-5.8B") | |
# ๋ถ์ ํจ์ ์ ์ | |
def analyze_korean_text(text): | |
prompt = f"๋ค์ ๋ฌธ์ฅ์ ๋ถ์ํ๊ณ ๋ฌด๋กํ๊ฑฐ๋ ๊ณผ๊ฒฉํ ํํ์ด ์์ผ๋ฉด ์ง์ ํ๊ณ , ๋ ์น์ ํ๊ฒ ๋ฐ๊ฟ์ค:\n\n{text}" | |
response = chat(prompt, max_new_tokens=200)[0]['generated_text'] | |
return response | |
# Gradio ์ธํฐํ์ด์ค | |
iface = gr.Interface( | |
fn=analyze_korean_text, | |
inputs=gr.Textbox(label="๋ถ์ํ ๋ฌธ์ฅ ์ ๋ ฅ"), | |
outputs=gr.Textbox(label="๋ถ์ ๊ฒฐ๊ณผ"), | |
title="๋ฌธ์ฅ ๋ถ์๊ธฐ (์น์ ํ๊ฒ ๋ฐ๊ฟ์ฃผ๋ AI)", | |
description="๋ฌธ์ฅ์ ์ ๋ ฅํ๋ฉด ๋ฌด๋กํ ํํ์ ์ง์ ํ๊ณ ๋ ์์ ์๊ฒ ๋ฐ๊ฟ์ฃผ๋ ๋์ฐ๋ฏธ์ ๋๋ค." | |
) | |
# ์คํ | |
iface.launch() | |