Opera8 commited on
Commit
b6424a6
·
verified ·
1 Parent(s): 7c48bbc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -16
app.py CHANGED
@@ -67,22 +67,22 @@ def respond(message, history):
67
  except Exception as e:
68
  yield f"❌ خطای غیرمنتظره: {e}"
69
 
70
- # ساخت دمو با واسط کاربری متناسب با آخرین نسخه گرادیو
71
- demo = gr.ChatInterface(
72
- fn=respond,
73
- title="Alpha AI Test Space 🤖",
74
- description="تست اتصال متنی و تصویری به هوش مصنوعی آلفا از سرورهای خارج از کشور (Hugging Face / USA)",
75
- multimodal=True,
76
- textbox=gr.MultimodalTextbox(
77
- placeholder="پیام خود را بنویسید یا تصویر آپلود کنید...",
78
- file_types=["image"]
79
- ),
80
- examples=[
81
- {"text": "درباره اهمیت هوش مصنوعی در زندگی روزمره توضیح بده.", "files": []},
82
- {"text": "سه کتاب معروف در زمینه خودشناسی معرفی کن.", "files": []}
83
- ],
84
- theme="soft"
85
- )
86
 
87
  if __name__ == "__main__":
88
  demo.launch()
 
67
  except Exception as e:
68
  yield f"❌ خطای غیرمنتظره: {e}"
69
 
70
+ # اعمال تم به صورت استاندارد با استفاده از gr.Blocks
71
+ with gr.Blocks(theme="soft") as demo:
72
+ gr.ChatInterface(
73
+ fn=respond,
74
+ title="Alpha AI Test Space 🤖",
75
+ description="تست اتصال متنی و تصویری به هوش مصنوعی آلفا از سرورهای خارج از کشور (Hugging Face / USA)",
76
+ multimodal=True,
77
+ textbox=gr.MultimodalTextbox(
78
+ placeholder="پیام خود را بنویسید یا تصویر آپلود کنید...",
79
+ file_types=["image"]
80
+ ),
81
+ examples=[
82
+ {"text": "درباره اهمیت هوش مصنوعی در زندگی روزمره توضیح بده.", "files": []},
83
+ {"text": "سه کتاب معروف در زمینه خودشناسی معرفی کن.", "files": []}
84
+ ]
85
+ )
86
 
87
  if __name__ == "__main__":
88
  demo.launch()