mirror of
https://github.com/datascale-ai/opentalking.git
synced 2026-07-06 09:12:40 +08:00
新增医疗导诊双视频展示
This commit is contained in:
@@ -243,6 +243,8 @@ TRAFFIC_COPY = {
|
||||
"case-ecommerce-livestream-front": "案例:电商直播正视",
|
||||
"case-ecommerce-livestream-angle": "案例:电商带货斜视",
|
||||
"case-huangshan-tour-guide": "案例:黄山文旅导览",
|
||||
"case-medical-guide-assistant-zh": "案例:医疗导诊助手中文",
|
||||
"case-medical-guide-assistant-en": "案例:医疗导诊助手英文",
|
||||
"case-news-anchor": "案例:新闻主播",
|
||||
"case-companion-character": "案例:陪伴类角色",
|
||||
"case-anime-talk-show": "案例:动漫脱口秀",
|
||||
@@ -329,6 +331,8 @@ TRAFFIC_COPY = {
|
||||
"case-ecommerce-livestream-front": "Case: E-commerce Front View",
|
||||
"case-ecommerce-livestream-angle": "Case: E-commerce Angled View",
|
||||
"case-huangshan-tour-guide": "Case: Huangshan Tourism Guide",
|
||||
"case-medical-guide-assistant-zh": "Case: Medical Guide Chinese",
|
||||
"case-medical-guide-assistant-en": "Case: Medical Guide English",
|
||||
"case-news-anchor": "Case: News Anchor",
|
||||
"case-companion-character": "Case: Companion Character",
|
||||
"case-anime-talk-show": "Case: Anime Talk Show",
|
||||
|
||||
BIN
apps/homepage/public/images/cases/medical-guide-en-preview.png
Normal file
BIN
apps/homepage/public/images/cases/medical-guide-en-preview.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.4 MiB |
BIN
apps/homepage/public/images/cases/medical-guide-zh-preview.png
Normal file
BIN
apps/homepage/public/images/cases/medical-guide-zh-preview.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 872 KiB |
@@ -16,7 +16,7 @@ export type CaseStudy = {
|
||||
slug: string;
|
||||
title: string;
|
||||
eyebrow: string;
|
||||
category: "livestream" | "media" | "tourism" | "character" | "companion" | "experiment";
|
||||
category: "livestream" | "media" | "tourism" | "healthcare" | "character" | "companion" | "experiment";
|
||||
categoryLabel: string;
|
||||
description: string;
|
||||
detailIntro: string;
|
||||
@@ -91,6 +91,7 @@ export const caseCategories = [
|
||||
{ key: "livestream", label: "直播带货" },
|
||||
{ key: "media", label: "媒体播报" },
|
||||
{ key: "tourism", label: "文旅导览" },
|
||||
{ key: "healthcare", label: "医疗服务" },
|
||||
{ key: "character", label: "角色内容" },
|
||||
{ key: "companion", label: "陪伴互动" },
|
||||
{ key: "experiment", label: "创意实验" },
|
||||
@@ -206,6 +207,53 @@ export const caseStudies: CaseStudy[] = [
|
||||
],
|
||||
outcomes: ["景区讲解视频化", "导览内容可复用", "支持后续多语言与问答扩展"],
|
||||
},
|
||||
{
|
||||
slug: "medical-guide-assistant",
|
||||
title: "医疗导诊助手",
|
||||
eyebrow: "智能导诊",
|
||||
category: "healthcare",
|
||||
categoryLabel: "医疗服务",
|
||||
description:
|
||||
"面向医院大厅、线上问诊入口和健康服务平台,用数字人完成就诊指引、科室导航和检查咨询。",
|
||||
detailIntro:
|
||||
"以医疗导诊助手为例,把数字人讲解、导诊流程、科室导航和多语言服务整合到同一产品体验中,适合医院服务台、互联网医院和健康管理平台。",
|
||||
route: "中英双语导诊演示",
|
||||
features: ["就诊指引", "科室导航", "双语服务"],
|
||||
image: "/images/cases/medical-guide-zh-preview.png",
|
||||
accent: "cyan",
|
||||
videoUrl: "https://1441945933.vod-qcloud.com/0b66444dvodcq1441945933/9b52494c5001834809859448065/S7eTJ67rBLUA.mp4",
|
||||
videoVariants: [
|
||||
{
|
||||
title: "中文导诊助手",
|
||||
description: "面向中文就诊用户,展示挂号缴费、门诊诊室、检查科室和药房等关键导诊路径。",
|
||||
url: "https://1441945933.vod-qcloud.com/0b66444dvodcq1441945933/9b52494c5001834809859448065/S7eTJ67rBLUA.mp4",
|
||||
poster: "/images/cases/medical-guide-zh-preview.png",
|
||||
videoId: "case-medical-guide-assistant-zh",
|
||||
},
|
||||
{
|
||||
title: "English medical guide",
|
||||
description: "为外籍患者或国际医疗服务场景提供英文导诊说明,覆盖问诊入口、科室导航和检查咨询。",
|
||||
url: "https://1441945933.vod-qcloud.com/0b66444dvodcq1441945933/82952c555001834809852510401/uTMRhy1wCnoA.mp4",
|
||||
poster: "/images/cases/medical-guide-en-preview.png",
|
||||
videoId: "case-medical-guide-assistant-en",
|
||||
},
|
||||
],
|
||||
sections: [
|
||||
{
|
||||
title: "场景挑战",
|
||||
body: "医院导诊需要把流程、地点、时间和注意事项讲清楚,同时保持服务语气稳定,避免用户在复杂流程里反复询问。",
|
||||
},
|
||||
{
|
||||
title: "适合扩展",
|
||||
body: "可以接入医院知识库、科室导航、检查须知、挂号规则和多语言问答,让数字人承担高频咨询和基础分诊前置服务。",
|
||||
},
|
||||
{
|
||||
title: "推荐模型",
|
||||
body: "推荐 QuickTalk / FlashTalk:先快速验证导诊脚本和服务流程,再根据大厅屏幕、服务终端或线上入口的画质要求升级。",
|
||||
},
|
||||
],
|
||||
outcomes: ["高频导诊问题自动化", "减少服务台重复咨询", "支持中英文患者服务"],
|
||||
},
|
||||
{
|
||||
slug: "news-anchor",
|
||||
title: "新闻主播",
|
||||
|
||||
@@ -151,6 +151,7 @@ const enCaseCategories = [
|
||||
{ key: "livestream", label: "Live commerce" },
|
||||
{ key: "media", label: "Media" },
|
||||
{ key: "tourism", label: "Tourism" },
|
||||
{ key: "healthcare", label: "Healthcare" },
|
||||
{ key: "character", label: "Character content" },
|
||||
{ key: "companion", label: "Companion" },
|
||||
{ key: "experiment", label: "Creative demos" },
|
||||
@@ -266,6 +267,53 @@ const enCaseStudies: CaseStudy[] = [
|
||||
],
|
||||
outcomes: ["Turn scenic content into guided video", "Reuse destination scripts", "Extend to multilingual Q&A later"],
|
||||
},
|
||||
{
|
||||
slug: "medical-guide-assistant",
|
||||
title: "Medical Guidance Assistant",
|
||||
eyebrow: "Patient guidance",
|
||||
category: "healthcare",
|
||||
categoryLabel: "Healthcare",
|
||||
description:
|
||||
"Use an avatar assistant for hospital lobbies, online care entry points, department navigation, and patient service guidance.",
|
||||
detailIntro:
|
||||
"This medical guidance assistant combines avatar narration, patient flow guidance, department navigation, and multilingual support for hospital service desks, digital care portals, and health platforms.",
|
||||
route: "Chinese and English guidance demo",
|
||||
features: ["Patient guidance", "Department navigation", "Bilingual service"],
|
||||
image: "/images/cases/medical-guide-en-preview.png",
|
||||
accent: "cyan",
|
||||
videoUrl: "https://1441945933.vod-qcloud.com/0b66444dvodcq1441945933/82952c555001834809852510401/uTMRhy1wCnoA.mp4",
|
||||
videoVariants: [
|
||||
{
|
||||
title: "English medical guide",
|
||||
description: "Guide international patients through consultation entry points, department navigation, and examination support.",
|
||||
url: "https://1441945933.vod-qcloud.com/0b66444dvodcq1441945933/82952c555001834809852510401/uTMRhy1wCnoA.mp4",
|
||||
poster: "/images/cases/medical-guide-en-preview.png",
|
||||
videoId: "case-medical-guide-assistant-en",
|
||||
},
|
||||
{
|
||||
title: "Chinese guidance assistant",
|
||||
description: "Help Chinese-speaking patients understand registration, payment, clinic rooms, examination departments, and pharmacy routes.",
|
||||
url: "https://1441945933.vod-qcloud.com/0b66444dvodcq1441945933/9b52494c5001834809859448065/S7eTJ67rBLUA.mp4",
|
||||
poster: "/images/cases/medical-guide-zh-preview.png",
|
||||
videoId: "case-medical-guide-assistant-zh",
|
||||
},
|
||||
],
|
||||
sections: [
|
||||
{
|
||||
title: "Scenario Challenge",
|
||||
body: "Patient guidance needs to explain procedures, locations, timing, and preparation notes clearly while keeping the service tone consistent.",
|
||||
},
|
||||
{
|
||||
title: "Extension Path",
|
||||
body: "Connect hospital knowledge bases, department maps, examination instructions, registration rules, and multilingual Q&A to handle frequent service questions.",
|
||||
},
|
||||
{
|
||||
title: "Recommended Model",
|
||||
body: "Recommended: QuickTalk / FlashTalk. Validate scripts and service flows first, then upgrade quality for lobby screens, kiosks, or online care portals.",
|
||||
},
|
||||
],
|
||||
outcomes: ["Automate frequent guidance questions", "Reduce repetitive front-desk workload", "Support bilingual patient service"],
|
||||
},
|
||||
{
|
||||
slug: "news-anchor",
|
||||
title: "News Anchor",
|
||||
@@ -527,7 +575,7 @@ export const siteContent: Record<Language, SiteContent> = {
|
||||
capabilityDescription: "OpenTalking 把会话、语音、字幕、播放和模型服务串成完整的数字人产品链路。",
|
||||
showcaseEyebrow: "Showcase",
|
||||
showcaseTitle: "真实产品场景,为数字人服务而生",
|
||||
showcaseDescription: "用同一套编排层覆盖直播、文旅导览、播报、陪伴、角色内容和端到端演示。",
|
||||
showcaseDescription: "用同一套编排层覆盖直播、文旅导览、医疗导诊、播报、陪伴、角色内容和端到端演示。",
|
||||
allCasesCta: "全部案例",
|
||||
deploymentEyebrow: "Deployment",
|
||||
deploymentTitle: "按你的需求匹配不同部署方式",
|
||||
@@ -651,7 +699,7 @@ export const siteContent: Record<Language, SiteContent> = {
|
||||
capabilityDescription: "OpenTalking connects dialogue, voice, captions, playback, and model services into a complete AI avatar workflow.",
|
||||
showcaseEyebrow: "Showcase",
|
||||
showcaseTitle: "Built for real avatar use cases",
|
||||
showcaseDescription: "Use the same orchestration layer for livestreaming, tourism guides, broadcast, companion experiences, character content, and end-to-end demos.",
|
||||
showcaseDescription: "Use the same orchestration layer for livestreaming, tourism guides, healthcare guidance, broadcast, companion experiences, character content, and end-to-end demos.",
|
||||
allCasesCta: "All cases",
|
||||
deploymentEyebrow: "Deployment",
|
||||
deploymentTitle: "Pick the right path for your stage",
|
||||
|
||||
Reference in New Issue
Block a user