import { Agent } from "atypica"; import { BusinessResearch } from "@/lib/research"; export class ResearchAgent { constructor() { this.model = new BusinessResearch(); this.context = "subjective_world"; } async analyze(problem) { const insights = await this.model .understand(problem) .simulate() .interview() .report(); return insights; } }
用「语言模型」为「主观世界」建模
商业研究是理解人类决策的学问。人的决策受到叙事、情感和认知偏见的影响。
理解决策机制是商业研究的核心。