feat: Add AI Assist module - Conversational intelligence with specialized agent switching - Real-time preview for code, design, content, and SEO - Multi-agent routing logic (Content, SEO, SMM, PM, Code, Design) - High-end UI with chat thread and live preview sandbox - Integrated with Ollama, Qwen, and Z.AI services
This commit is contained in:
@@ -292,4 +292,16 @@ export interface MarketResearchResult {
|
||||
rawContent: string;
|
||||
}
|
||||
|
||||
export type AppView = "prompt-enhancer" | "prd-generator" | "action-plan" | "slides-gen" | "google-ads" | "ux-designer" | "market-research" | "settings" | "history";
|
||||
export interface AIAssistMessage {
|
||||
role: "user" | "assistant" | "system";
|
||||
content: string;
|
||||
agent?: string;
|
||||
preview?: {
|
||||
type: "code" | "design" | "content" | "seo";
|
||||
data: string;
|
||||
language?: string;
|
||||
};
|
||||
timestamp: Date;
|
||||
}
|
||||
|
||||
export type AppView = "prompt-enhancer" | "prd-generator" | "action-plan" | "slides-gen" | "google-ads" | "ux-designer" | "market-research" | "ai-assist" | "settings" | "history";
|
||||
|
||||
Reference in New Issue
Block a user