const result = await client.query({
query: "What is ACME's Q4 revenue?",
mode: "chat", // "chat" | "expert" | "brainstorm" | "context" | "raw_facts"
depth: "thinking", // "basic" | "thinking" | "research"
model: "gpt-5.2",
sessionId: "sess_abc",
maintainContext: true,
includeSummary: true,
webSearchEnabled: false,
conversationUploadIds: ["upload_123"],
});
result.summary; // "ACME Corp reported $50M in Q4 2025..."
result.session_id; // "sess_abc" — echoed back for multi-turn
result.total_facts; // 12
result.sources; // [{ title, chunk_id, score, ... }, ...]
result.entities; // ["ACME Corp", "Jane Smith"]