threads now support suggested_questions

This commit is contained in:
2026-09-09 16:40:42 +03:30
parent 0234abd082
commit 49e67b3a82
7 changed files with 103 additions and 3 deletions

View File

@@ -9,6 +9,7 @@ export type AiV2RunResult = {
run_id: string;
status: 'answered' | 'escalation_offered';
message: string;
suggested_questions?: string[] | null;
escalation: { summary?: string; handoff_context?: Record<string, unknown> } | null;
};