Spaces:
Runtime error
Runtime error
File size: 1,641 Bytes
7b09d7a 249f773 7b09d7a 249f773 7b09d7a 2fb4300 249f773 e349f17 249f773 7d9a618 249f773 5fa9e64 249f773 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
import gradio as gr
from transformers import pipeline
# بارگیری مدل از Hugging Face
model_name = "deepseek-ai/DeepSeek-V2.5-1210" # نام مدل را اینجا وارد کنید
pipe = pipeline("text-generation", model=model_name, trust_remote_code=True)
def respond(
message,
history: list[tuple[str, str]],
system_message,
max_tokens,
temperature,
top_p,
):
# ساخت پیامها برای مدل
messages = [
{"role": "system", "content": system_message},
{"role": "user", "content": message},
]
# تولید متن با مدل
try:
response = pipe(
messages,
max_length=max_tokens,
temperature=temperature,
top_p=top_p,
num_return_sequences=1
)
yield response[0]['generated_text']
except Exception as e:
yield f"خطا در تولید متن: {str(e)}"
# ایجاد رابط کاربری با Gradio
demo = gr.ChatInterface(
respond,
additional_inputs=[
gr.Textbox(value="شما یک ربات دوستداشتنی هستید.", label="پیام سیستم"),
gr.Slider(minimum=1, maximum=1024, value=256, step=1, label="حداکثر توکنهای جدید"),
gr.Slider(minimum=0.1, maximum=2.0, value=0.7, step=0.1, label="دما (Temperature)"),
gr.Slider(
minimum=0.1,
maximum=1.0,
value=0.9,
step=0.05,
label="Top-p (نمونهگیری هستهای)",
),
],
)
# اجرای برنامه
if __name__ == "__main__":
demo.launch() |