Files
ai-portal/app/admin/agents/[id]/edit/page.tsx
T
root 362c37fb42 feat: enhance agent system with hot/quick questions, dynamic chat UI, and new enterprise agents
- Add hotQuestions and quickQuestions fields to agent model
- Update admin form with textarea inputs for hot/quick questions
- Make chat page display dynamic agent data (name, icon, questions)
- Widen center chat area to 60% for better readability
- Add enterprise service category and 3 new agents (jiaotou, promotion, group-policy)
- Update Prisma schema formatting and seed data
2026-05-07 22:14:43 +08:00

62 lines
1.7 KiB
TypeScript

import { getServerSession } from "next-auth/next"
import { redirect } from "next/navigation"
import Link from "next/link"
import { prisma } from "@/app/lib/prisma"
import AgentForm from "../../AgentForm"
export default async function EditAgentPage({
params,
}: {
params: Promise<{ id: string }>
}) {
const session = await getServerSession()
if (!session) {
redirect("/admin/login")
}
const { id } = await params
const agent = await prisma.agent.findUnique({
where: { id: parseInt(id) },
})
if (!agent) {
redirect("/admin/agents")
}
const categories = await prisma.category.findMany()
return (
<div className="min-h-screen bg-gray-50">
<nav className="bg-white border-b border-gray-200">
<div className="max-w-7xl mx-auto px-6 py-4 flex items-center justify-between">
<h1 className="text-xl font-bold text-gray-900"></h1>
<Link href="/admin/agents" className="text-sm text-gray-600 hover:text-gray-900">
</Link>
</div>
</nav>
<main className="max-w-3xl mx-auto px-6 py-8">
<div className="bg-white rounded-2xl shadow-sm border border-gray-200 p-6">
<AgentForm
categories={categories}
agent={{
id: agent.id,
name: agent.name,
slug: agent.slug,
description: agent.description,
icon: agent.icon || "",
categoryId: agent.categoryId || undefined,
features: agent.features,
hotQuestions: agent.hotQuestions,
quickQuestions: agent.quickQuestions,
status: agent.status,
}}
/>
</div>
</main>
</div>
)
}