feat: Vibe Architect dedicated mode, SEO follow-up fix (v1.8.0)

This commit is contained in:
admin
2026-03-18 21:02:37 +00:00
Unverified
parent 5e4927624e
commit 2e90246130
5 changed files with 59 additions and 11 deletions

20
app/vibe/page.tsx Normal file
View File

@@ -0,0 +1,20 @@
"use client";
import { useEffect } from "react";
import dynamic from 'next/dynamic';
import modelAdapter from "@/lib/services/adapter-instance";
const AIAssist = dynamic(() => import("@/components/AIAssist"), { ssr: false });
export default function VibePage() {
useEffect(() => {
console.log("[Vibe] Initializing services...");
modelAdapter["qwenService"]["initialize"]?.();
}, []);
return (
<div className="fixed inset-0 bg-[#050508] overflow-hidden">
<AIAssist vibeMode />
</div>
);
}