diff --git a/app/news/[id]/page.tsx b/app/news/[id]/page.tsx
index 0e0fb95..d6f8978 100644
--- a/app/news/[id]/page.tsx
+++ b/app/news/[id]/page.tsx
@@ -2,6 +2,8 @@ import { prisma } from "@//app/lib/prisma"
import { notFound } from "next/navigation"
import Link from "next/link"
+export const dynamic = "force-dynamic"
+
export default async function NewsDetailPage({
params,
}: {
diff --git a/app/news/page.tsx b/app/news/page.tsx
index fe27476..b4cdc60 100644
--- a/app/news/page.tsx
+++ b/app/news/page.tsx
@@ -1,6 +1,8 @@
import { prisma } from "@//app/lib/prisma"
import Link from "next/link"
+export const dynamic = "force-dynamic"
+
export default async function NewsPage() {
const news = await prisma.news.findMany({
where: { published: true },
diff --git a/app/page.tsx b/app/page.tsx
index d533a20..8646039 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -2,6 +2,8 @@ import { prisma } from "@/app/lib/prisma"
import Link from "next/link"
import Image from "next/image"
+export const dynamic = "force-dynamic"
+
export default async function HomePage() {
const agents = await prisma.agent.findMany({
where: { isFeatured: true },
diff --git a/prisma/dev.db b/prisma/dev.db
index 5376838..ab821e7 100644
Binary files a/prisma/dev.db and b/prisma/dev.db differ
diff --git a/prisma/seed.ts b/prisma/seed.ts
index 7df2052..bcd9c6c 100644
--- a/prisma/seed.ts
+++ b/prisma/seed.ts
@@ -250,33 +250,50 @@ async function main() {
// 创建新闻
const news = await Promise.all([
- prisma.news.upsert({
- where: { id: 1 },
- update: {},
- create: {
- title: "智能客服助手 3.0 正式上线,支持多模态交互",
- content: "全新版本集成图像识别与语音交互能力,响应速度提升 40%,企业客户满意度评分达 4.9/5.0。",
+ prisma.news.create({
+ data: {
+ title: "腾讯云升级全栈企业级 Agent 能力,发布 ClawPro 等多款产品",
+ content: "在 2026 腾讯云城市峰会上,腾讯云全面升级企业级 Agent 产品矩阵,首发 ClawPro 专有云版、ADP 智能工作台、Agent Memory、Agent Storage 等多款产品。企业可用自然语言搭建工作流,打通内部 Agent 孤岛,实现统一调度与安全管控。",
type: "news",
published: true,
},
}),
- prisma.news.upsert({
- where: { id: 2 },
- update: {},
- create: {
- title: "2026 AI Agent 市场白皮书:企业渗透率突破 35%",
- content: "据最新行业报告,AI 智能体正在从尝鲜阶段走向规模化落地,客服与内容生成场景率先规模化。",
+ prisma.news.create({
+ data: {
+ title: "阿里发布企业级 Agent 平台「悟空」,面向办公协同场景",
+ content: "阿里巴巴发布企业级 AI 工作平台「悟空」,已启动邀测并内置于钉钉。悟空可接入企业账号体系与权限系统,支持在组织内部调用多种 AI 能力与业务系统,同步上线 AI 能力市场,首批覆盖电商、跨境电商、知识内容等十大行业场景。",
+ type: "news",
+ published: true,
+ },
+ }),
+ prisma.news.create({
+ data: {
+ title: "科大讯飞发布玲珑 Agent OS,企业级 AI 迈进操作系统时代",
+ content: "科大讯飞在第九届数字中国建设峰会上正式发布玲珑 Agent OS,专为企业打造的 AI 原生工作台。内置超级智能体引擎,支持多智能体并行协作,跨系统自动完成任务。沉淀 300 多个开箱即用智能体,覆盖软件开发、贸易服务、数字创意等核心场景。",
+ type: "news",
+ published: true,
+ },
+ }),
+ prisma.news.create({
+ data: {
+ title: "高德发布汽车出行 AI Agent,车载导航进入主动服务时代",
+ content: "高德发布汽车出行 AI Agent,采用「语言大脑+空间大脑」双引擎设计,支持模糊语义搜索、复杂行程一句话串联、动态路线推理及多轮对话编辑。系统可根据充电桩状态与用餐偏好自动优化长途出行方案,标志着车载导航从被动执行走向主动服务。",
type: "industry",
published: true,
},
}),
- prisma.news.upsert({
- where: { id: 3 },
- update: {},
- create: {
- title: "江苏冲浪软件科技与华为云达成战略合作",
-
- content: "双方将在 AI 智能体研发、云端部署与行业解决方案展开深度合作,首期联合创新实验室正式揭牌。",
+ prisma.news.create({
+ data: {
+ title: "Google Cloud 发布 Gemini Enterprise Agent Platform",
+ content: "Google Cloud 宣布推出 Gemini Enterprise Agent Platform,提供从构建到治理的全栈企业级 Agent 能力。包含 Agent Studio 低代码构建工具、支持多天任务的 Agent Runtime、Agent Registry 统一目录与 Agent Gateway 安全网关,助力企业规模化部署可信 AI 智能体。",
+ type: "industry",
+ published: true,
+ },
+ }),
+ prisma.news.create({
+ data: {
+ title: "OpenAI 推出 Frontier 企业 AI Agent 平台",
+ content: "OpenAI 发布 Frontier 企业平台,帮助企业构建、部署和管理 AI Agent。HP、Intuit、Oracle、Uber 等为首批客户。Frontier 支持 AI 同事拥有独立身份与权限,具备跨会话记忆与自主执行能力,已与多家头部 ISV 建立生态合作,推动企业 AI 从工具向协作者演进。",
type: "cooperation",
published: true,
},
diff --git a/public/human/sample.mp4 b/public/human/sample.mp4
new file mode 100644
index 0000000..1cf1ef3
Binary files /dev/null and b/public/human/sample.mp4 differ