Spaces:
Running
Running
File size: 3,750 Bytes
2543f2c f35dc2e 8c853ac 097fb1d 3d6570a 2543f2c 29c5484 88a1e0a b6fdddd 88a1e0a 2543f2c 29c5484 88a1e0a 29c5484 f35dc2e 1c68ea4 2543f2c f35dc2e 3d6570a 097fb1d f35dc2e 3d6570a 88a1e0a f35dc2e 29c5484 88a1e0a f35dc2e ca87238 2aca398 f35dc2e 29c5484 2aca398 f35dc2e 88a1e0a f35dc2e 29c5484 2543f2c 88a1e0a f35dc2e 2543f2c 88a1e0a 2aca398 29c5484 2aca398 88a1e0a 2aca398 2543f2c 88a1e0a 29c5484 88a1e0a |
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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
import gradio as gr
import os
from deep_translator import GoogleTranslator
from huggingface_hub import InferenceClient
from transformers import Conversation
# دریافت توکن از محیط (در Hugging Face Secrets تنظیم شود)
HF_TOKEN = os.environ.get("HUGGINGFACE_API_TOKEN")
if not HF_TOKEN:
raise RuntimeError("Missing HUGGINGFACE_API_TOKEN secret")
# ساخت کلاینت با مدل پیشفرض
hf_client = InferenceClient(
model="deepseek-ai/DeepSeek-Prover-V2-671B",
token=HF_TOKEN
)
def generate_topics(field, major, keywords, audience, level):
# اعتبارسنجی ورودیها
if not all([field.strip(), major.strip(), keywords.strip(), audience.strip()]):
return "<div style='color: red;'>❌ لطفاً همه فیلدها را پر کنید.</div>"
# ساخت پرامپت
prompt = (
f"Suggest 3 academic thesis topics based on the following:\n"
f"Field: {field}\n"
f"Specialization: {major}\n"
f"Keywords: {keywords}\n"
f"Target Audience: {audience}\n"
f"Level: {level}"
)
try:
# آمادهسازی یک دیالوگ
conv = Conversation(prompt)
# فراخوانی مدل بهصورت conversational
hf_client.conversational(
conv,
max_new_tokens=512,
temperature=0.7
)
# دریافت آخرین پاسخ مدل
english_output = conv.generated_responses[-1].strip()
# ترجمه به فارسی
try:
translated_output = GoogleTranslator(source='en', target='fa').translate(english_output)
except Exception:
translated_output = english_output
# قالببندی HTML بهصورت لیست مرتب
translated_output_html = "<ol>" + \
"".join(f"<li>{line}</li>" for line in translated_output.split("\n") if line) + \
"</ol>"
return (
"<div>"
f"{translated_output_html}"
"<br><br>📢 برای مشاوره و راهنمایی تخصصی با گروه مشاوره کاسپین تماس بگیرید:<br>"
"<strong>021-88252497</strong>"
"</div>"
)
except Exception as e:
return f"<div style='color: red;'>❌ خطا در تماس با مدل DeepSeek: {e}</div>"
# رابط کاربری Gradio
iface = gr.Interface(
fn=generate_topics,
inputs=[
gr.Textbox(label="رشته", placeholder="مثال: کامپیوتر"),
gr.Textbox(label="گرایش", placeholder="مثال: هوش مصنوعی"),
gr.Textbox(label="کلیدواژهها", placeholder="مثال: یادگیری عمیق، بینایی ماشین"),
gr.Textbox(label="جامعه هدف", placeholder="مثال: دانشجویان دکتری"),
gr.Dropdown(["کارشناسی ارشد", "دکتری"], label="مقطع")
],
outputs=gr.HTML(label="موضوعات پیشنهادی", elem_id="output_box"),
title="🎓 پیشنهادگر موضوع پایاننامه کاسپین",
theme="default",
css="""
#output_box {
min-height: 350px !important;
max-height: 600px !important;
overflow-y: auto !important;
background-color: #1e1e1e !important;
color: white !important;
padding: 20px;
border: 2px solid #ccc;
font-family: 'Tahoma', sans-serif;
font-size: 16px;
text-align: right;
direction: rtl;
line-height: 1.8;
}
"""
)
if __name__ == "__main__":
# برای لینک عمومی: iface.launch(share=True)
iface.launch()
|