feat: deeper discovery questions + conversation summary in briefs
All checks were successful
Build & Push / build-and-push (push) Successful in 1m35s

- Agent now asks probing follow-up questions (pain points, current tools, vision, decision context)
- complete_brief tool includes conversationSummary field capturing ALL discussion details
- Summary merges into scope context for richer, more targeted briefs
- Updated both EN and FR system prompts

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-28 15:11:18 +01:00
parent 9b8f0a7f7f
commit 600f1a5241
2 changed files with 52 additions and 32 deletions

View File

@@ -200,7 +200,12 @@ export default function VoiceAgentProvider({ locale, children }: VoiceAgentProvi
setIsGeneratingBrief(true);
console.log('[VoiceAgent] complete_brief called, generating...');
try {
const formData = { ...DEFAULT_FORM_DATA, ...(args as Partial<WizardFormData>), locale };
const toolArgs = args as Partial<WizardFormData> & { conversationSummary?: string };
const summary = toolArgs.conversationSummary ?? '';
const existingScope = toolArgs.scope ?? '';
const combinedScope = [existingScope, summary].filter(Boolean).join('\n\n');
const formData = { ...DEFAULT_FORM_DATA, ...toolArgs, scope: combinedScope, locale };
delete (formData as Record<string, unknown>).conversationSummary;
const res = await fetch('/api/configure', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },