[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-microsoft-add-workiq":3,"mdc-rkga8a-key":33,"related-repo-microsoft-add-workiq":9000,"related-org-microsoft-add-workiq":9073},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":29,"sourceUrl":31,"mdContent":32},"add-workiq","add Work IQ Copilot MCP","Adds Work IQ Copilot MCP by delegating to \u002Fadd-connector with api-id=shared_a365copilotchatmcp and action mode. Use when users need Microsoft 365 knowledge-grounded Work IQ search\u002Fchat.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"microsoft","Microsoft","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fmicrosoft.png",[12,16,19,20],{"name":13,"slug":14,"type":15},"Copilot","copilot","tag",{"name":17,"slug":18,"type":15},"Microsoft 365","microsoft-365",{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},"MCP","mcp",2,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002FManaged-Apps","2026-07-03T16:31:35.439156",null,3,[],{"repoUrl":24,"stars":23,"forks":27,"topics":30,"description":26},[],"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002FManaged-Apps\u002Ftree\u002FHEAD\u002Fplugins\u002Fmicrosoft-managed-apps\u002Fskills\u002Fadd-workiq","---\nname: add-workiq\ndescription: Adds Work IQ Copilot MCP by delegating to \u002Fadd-connector with api-id=shared_a365copilotchatmcp and action mode. Use when users need Microsoft 365 knowledge-grounded Work IQ search\u002Fchat.\nuser-invocable: true\nallowed-tools: Read, AskUserQuestion, Skill\nmodel: sonnet\n---\n\n**📋 Shared Instructions: [shared-instructions.md](${CLAUDE_PLUGIN_ROOT}\u002Fshared\u002Fshared-instructions.md)** — Cross-cutting concerns.\n\n# Add Work IQ Copilot MCP (Wrapper)\n\nThis skill is a thin wrapper. Use `\u002Fadd-connector` as the single implementation path.\n\n## Delegation contract\n\nInvoke `\u002Fadd-connector` with:\n\n- `api-id`: `shared_a365copilotchatmcp`\n- `mode`: `action`\n\n---\n\n# Work IQ Integration: MCP Session Pattern\n\nAfter the connector is added, you'll have access to `WorkIQCopilotMCPService`. **Work IQ uses MCP (Model Context Protocol), a stateful protocol. Use the `McpSession` wrapper class to manage this properly.**\n\n## Setup: Create McpSession Wrapper\n\n⚠️ **CRITICAL:** The McpSession implementation is complex. Copy the production-ready code below exactly. It handles session negotiation, auto-retry on errors, proper JSON-RPC ID sequencing, and response parsing.\n\nCreate `src\u002Fconnectors\u002FmcpClient.ts`:\n\n```typescript\nimport type { IOperationResult } from '@microsoft\u002Fmanaged-apps\u002Fdata'\nimport { WorkIQCopilotMCPService } from '..\u002F..\u002Fgenerated\u002Fservices\u002FWorkIQCopilotMCPService'\nimport type { QueryRequest } from '..\u002F..\u002Fgenerated\u002Fmodels\u002FWorkIQCopilotMCPModel'\n\nexport interface JsonRpcRequest {\n  jsonrpc: '2.0'\n  id?: string\n  method: string\n  params?: Record\u003Cstring, unknown>\n}\n\nexport interface JsonRpcResponse {\n  jsonrpc?: string\n  id?: string\n  result?: Record\u003Cstring, unknown>\n  error?: { code?: number; message?: string; data?: unknown }\n}\n\ntype CopilotConversationMessage = {\n  text?: string\n  attributions?: Array\u003C{ attributionType?: string; providerDisplayName?: string; seeMoreWebUrl?: string }>\n}\n\ntype CopilotConversation = {\n  messages?: CopilotConversationMessage[]\n}\n\nfunction parseRpc(result: IOperationResult\u003Cunknown>): JsonRpcResponse {\n  if (!result.success && result.error) {\n    return { error: { message: result.error.message } }\n  }\n\n  const data: unknown = result.data\n  if (data == null) return {}\n  if (typeof data === 'object') return data as JsonRpcResponse\n  if (typeof data === 'string') {\n    const dataLines = data\n      .split(\u002F\\r?\\n\u002F)\n      .filter((line) => line.startsWith('data:'))\n      .map((line) => line.slice(5).trim())\n    const payload = dataLines.length ? dataLines.join('') : data\n    try {\n      return JSON.parse(payload) as JsonRpcResponse\n    } catch {\n      return { result: { raw: data } }\n    }\n  }\n\n  return { result: { raw: data } }\n}\n\nexport class McpSession {\n  private nextId = 1\n  private sessionId: string | undefined\n  private conversationId: string | undefined\n  private initialized = false\n\n  private extractSessionId(raw: IOperationResult\u003Cunknown>): string | undefined {\n    const container = raw as unknown as Record\u003Cstring, unknown>\n    const dataObj =\n      raw.data && typeof raw.data === 'object' ? (raw.data as Record\u003Cstring, unknown>) : undefined\n    const resultObj =\n      dataObj?.result && typeof dataObj.result === 'object'\n        ? (dataObj.result as Record\u003Cstring, unknown>)\n        : undefined\n\n    const candidates: Array\u003Cunknown> = [\n      dataObj?.['Mcp-Session-Id'],\n      dataObj?.mcpSessionId,\n      dataObj?.sessionId,\n      resultObj?.['Mcp-Session-Id'],\n      resultObj?.mcpSessionId,\n      resultObj?.sessionId,\n      container['Mcp-Session-Id'],\n      container.mcpSessionId,\n      container.sessionId,\n    ]\n\n    const found = candidates.find((value) => typeof value === 'string' && value.length > 0)\n    return typeof found === 'string' ? found : undefined\n  }\n\n  private isSessionNotFound(res: JsonRpcResponse): boolean {\n    const message = (res.error?.message ?? '').toLowerCase()\n    return message.includes('session not found') || res.error?.code === -32001\n  }\n\n  private resetSession(): void {\n    this.sessionId = undefined\n    this.initialized = false\n  }\n\n  private async send(\n    method: string,\n    params?: Record\u003Cstring, unknown>,\n    allowRetry = true\n  ): Promise\u003CJsonRpcResponse> {\n    const req: JsonRpcRequest = { jsonrpc: '2.0', id: String(this.nextId++), method, params }\n    const raw = (await WorkIQCopilotMCPService.mcp_m365copilot(\n      this.sessionId,\n      req as QueryRequest\n    )) as unknown as IOperationResult\u003Cunknown>\n\n    const negotiatedSessionId = this.extractSessionId(raw)\n    if (negotiatedSessionId) {\n      this.sessionId = negotiatedSessionId\n    }\n\n    const parsed = parseRpc(raw)\n\n    if (allowRetry && method !== 'initialize' && this.isSessionNotFound(parsed)) {\n      this.resetSession()\n      await this.initialize()\n      return this.send(method, params, false)\n    }\n\n    return parsed\n  }\n\n  async initialize(): Promise\u003CJsonRpcResponse> {\n    const res = await this.send('initialize', {\n      protocolVersion: '2025-06-18',\n      capabilities: {},\n      clientInfo: { name: 'Custom App', version: '1.0.0' },\n    })\n    this.initialized = !res.error\n    return res\n  }\n\n  async callCopilotChat(message: string): Promise\u003C{ text: string; conversationId?: string }> {\n    if (!this.initialized) await this.initialize()\n    const raw = await this.send('tools\u002Fcall', {\n      name: 'CopilotChat',\n      arguments: {\n        message,\n        ...(this.conversationId ? { conversationId: this.conversationId } : {}),\n      },\n    })\n\n    const parsed = extractCopilotText(raw)\n    if (parsed.conversationId) {\n      this.conversationId = parsed.conversationId\n    }\n\n    return { text: parsed.text, conversationId: parsed.conversationId }\n  }\n}\n\nfunction extractContentText(res: JsonRpcResponse): string | undefined {\n  const content = res.result?.content as Array\u003C{ type?: string; text?: string }> | undefined\n  if (!Array.isArray(content)) {\n    return undefined\n  }\n\n  const textBlocks = content\n    .filter((c) => c.type === 'text' && typeof c.text === 'string')\n    .map((c) => c.text!.trim())\n    .filter((value) => value.length > 0)\n\n  if (textBlocks.length === 0) {\n    return undefined\n  }\n\n  \u002F\u002F Prefer the JSON payload block. Some responses append metadata text blocks\n  \u002F\u002F such as \"CorrelationId: ...\" that should not be concatenated.\n  const jsonBlock = textBlocks.find(\n    (block) => block.startsWith('{') && \u002F\"conversationId\"|\"rawResponse\"|\"reply\"\u002F.test(block)\n  )\n  if (jsonBlock) {\n    return jsonBlock\n  }\n\n  const nonMetadata = textBlocks.find((block) => !\u002F^CorrelationId\\s*:\u002Fi.test(block))\n  return nonMetadata ?? textBlocks[0]\n}\n\nexport function extractCopilotText(res: JsonRpcResponse): { text: string; conversationId?: string } {\n  if (res.error) {\n    return { text: `Error: ${res.error.message ?? JSON.stringify(res.error)}` }\n  }\n\n  const rawText = extractContentText(res)\n  if (!rawText) {\n    return { text: res.result ? JSON.stringify(res.result, null, 2) : '(no content returned)' }\n  }\n\n  try {\n    const inner = JSON.parse(rawText) as {\n      conversationId?: string\n      reply?: string\n      message?: string\n      rawResponse?: string\n    }\n\n    if (typeof inner.rawResponse === 'string') {\n      try {\n        const convo = JSON.parse(inner.rawResponse) as CopilotConversation\n        const messages = Array.isArray(convo.messages) ? convo.messages : []\n        const attributed = messages.find(\n          (m) => Array.isArray(m.attributions) && m.attributions.length > 0\n        )\n        const selected = attributed ?? messages[1] ?? messages[messages.length - 1]\n        const replyText = selected?.text?.trim()\n        if (replyText) {\n          return { text: replyText, conversationId: inner.conversationId }\n        }\n      } catch {\n        \u002F\u002F Fall through to simple reply extraction.\n      }\n    }\n\n    const fallbackText = inner.reply?.trim() || inner.message?.trim() || rawText\n    return { text: fallbackText, conversationId: inner.conversationId }\n  } catch {\n    return { text: rawText }\n  }\n}\n```\n\n## Usage: Generic Work IQ Integration Pattern\n\nInitialize **once per app** (typically on component mount or app boot) and reuse for all Work IQ calls:\n\n```typescript\nimport { McpSession } from '.\u002Fconnectors\u002FmcpClient'\n\n\u002F\u002F Initialize once per app session (e.g., in React useEffect on app boot)\nconst workIqSession = new McpSession()\n\n\u002F\u002F Call with any knowledge-grounded prompt\nexport async function queryWorkIQ(userPrompt: string): Promise\u003Cstring> {\n  try {\n    const { text } = await workIqSession.callCopilotChat(userPrompt)\n    return text\n  } catch (error) {\n    const msg = error instanceof Error ? error.message : 'Work IQ query failed'\n    console.error('Work IQ Error:', msg)\n    throw error\n  }\n}\n```\n\n**Key Patterns:**\n- ✅ Initialize once, reuse across multiple calls\n- ✅ Pass context-specific prompts to `callCopilotChat()`\n- ✅ Adapt prompts for your specific scenario (meetings, priorities, analysis, etc.)\n- ✅ Session automatically reinitializes if \"Session not found\" error occurs\n- ✅ Conversation ID is automatically persisted across calls for multi-turn chats\n\n## Prompt Structure\n\nWork IQ responds well to **context-rich, structured prompts**. Use this pattern and adapt it for your specific scenario:\n\n```typescript\n\u002F\u002F Generic pattern to adapt for your use case:\nconst prompt = `\nYou are [role\u002Fexpert description].\n\n**Context:**\n- [Relevant data or background information]\n- [Additional context as needed]\n\n**Task:** [Clear, specific instruction]\n\n**Format:** [If you need structured output, specify the format]\n- Use markdown with clear section headings (## Section, ## Action Items, etc.)\n- Specify limits (word count, number of items, etc.)\n`.trim()\n\nconst { text } = await workIqSession.callCopilotChat(prompt)\n```\n\n**How to adapt this pattern:**\n- ✅ Customize the role and context for your scenario (e.g., \"meeting summarizer\", \"action item prioritizer\", \"project analyst\")\n- ✅ Add domain-specific information from your app\n- ✅ Define the exact format you need (structured markdown, JSON, bullets, etc.)\n- ✅ Adjust word limits and output expectations for your use case\n\n**Examples of adaptable scenarios:**\n- Meeting summaries with action items\n- Prioritized daily action items from emails\n- Project risk analysis from documents\n- Team performance insights from communications\n- Or any other knowledge-grounded analysis task\n\n## Response Parsing\n\nWork IQ returns text that you parse based on your use case.\n\n**For structured markdown output** (when you asked for ## sections):\n\n```typescript\nconst { text } = await workIqSession.callCopilotChat(prompt)\n\n\u002F\u002F Extract markdown sections\nfunction extractSection(text: string, sectionName: string): string[] {\n  const regex = new RegExp(`##\\\\s*${sectionName}\\\\s*([\\\\s\\\\S]*?)(?=##|$)`)\n  const match = text.match(regex)\n  if (!match) return []\n  \n  return match[1]\n    .split('\\n')\n    .filter(line => line.trim().startsWith('-'))\n    .map(line => line.replace(\u002F^-\\s*\u002F, '').trim())\n    .filter(Boolean)\n}\n\nconst summary = extractSection(text, 'Summary')\nconst actionItems = extractSection(text, 'Action Items')\n```\n\n**For unstructured output** (when format is not critical):\n\n```typescript\nconst { text } = await workIqSession.callCopilotChat(prompt)\n\u002F\u002F Use text directly - display as-is or format as needed for your UI\n```\n\n**Adjust parsing based on:**\n- ✅ The format you specified in the prompt\n- ✅ Your response structure (markdown sections, JSON, numbered lists, etc.)\n- ✅ Both structured (markdown, JSON) and unstructured (text) outputs\n\n## Error Handling & Auto-Recovery\n\nMcpSession automatically handles \"Session not found\" errors by reinitializing. Surface errors appropriately:\n\n```typescript\ntry {\n  const { text } = await workIqSession.callCopilotChat(prompt)\n  \n  if (text.includes('Error:')) {\n    throw new Error(text)\n  }\n  \n  return text\n} catch (error) {\n  const errorMsg = error instanceof Error ? error.message : 'Query failed'\n  console.error('Work IQ Error:', errorMsg)\n  throw error\n}\n```\n\n**What McpSession handles automatically:**\n- ✅ Detects \"Session not found\" (-32001) errors\n- ✅ Closes the session and auto-reinitializes\n- ✅ Retries the failed request with the new session\n- ✅ No manual retry logic needed\n\n**You only need to:**\n- ✅ Wrap calls in try\u002Fcatch\n- ✅ Surface errors to users appropriately\n- ✅ Let exceptions propagate for app-level error handling\n\n---\n\n## Implementation Guidance\n\n**Step 1: Copy mcpClient.ts**\nUse the provided McpSession implementation as-is. It handles all MCP protocol complexity.\n\n**Step 2: Initialize once**\nCreate the McpSession instance once per app session (in useEffect or on boot).\n\n**Step 3: Craft your prompts**\nFor your specific use case, provide context-rich prompts that include:\n- Your domain context (meetings, priorities, risks, etc.)\n- Specific data from your app\n- Expected output format\n\n**Step 4: Parse and display**\nExtract the relevant data from Work IQ's response based on the format you requested.\n\n---\n\n## Common Use Cases\n\n**Meeting Summaries:**\n- Prompt Work IQ with meeting context (date, organizer, attendees, description)\n- Request ## Summary and ## Action Items sections\n- Parse markdown sections and display in modal\n\n**Prioritized Daily Action Items:**\n- Query Work IQ to extract high-priority tasks from emails\u002Fmessages\n- Request ranked list format with due dates and owners\n- Parse and display as prioritized task list\n\n**Project Risk Analysis:**\n- Prompt Work IQ to analyze project communications\n- Request structured risk assessment with mitigation recommendations\n- Parse JSON and display risk dashboard\n\n**Team Performance Insights:**\n- Query collaboration patterns from Teams\u002Femails\n- Request insights on productivity and blockers\n- Parse and display performance dashboard\n\n**Any Knowledge-Grounded Analysis:**\n- Adapt the pattern for your domain\n- Use Work IQ's access to M365 data (emails, Teams, calendar, documents)\n- Return structured or unstructured output as needed\n\n## Why This Pattern is Required\n\n**Work IQ uses MCP (Model Context Protocol)**, a stateful protocol that requires:\n1. **Session initialization** before first call (handshake to exchange capabilities)\n2. **Session ID tracking** across all requests\n3. **Proper JSON-RPC ID sequencing** (each request must have a unique numeric ID)\n4. **Multi-turn conversation support** with conversation ID persistence\n5. **Complex response parsing** (nested JSON-RPC + optional streaming)\n6. **Automatic error recovery** on session timeouts\n\nThe `McpSession` class handles all of this. Attempting to bypass it (using random session IDs, hardcoded IDs, or direct API calls) will result in \"Session not found\" errors and failed integrations.\n",{"data":34,"body":38},{"name":4,"description":6,"user-invocable":35,"allowed-tools":36,"model":37},true,"Read, AskUserQuestion, Skill","sonnet",{"type":39,"children":40},"root",[41,62,69,83,90,102,140,144,150,176,182,194,207,6811,6817,6829,7232,7240,7274,7280,7292,7486,7494,7517,7525,7553,7559,7564,7574,8212,8222,8280,8288,8306,8312,8317,8639,8647,8670,8678,8696,8699,8705,8715,8725,8735,8753,8763,8766,8772,8780,8798,8806,8824,8832,8850,8858,8876,8884,8902,8908,8918,8982,8994],{"type":42,"tag":43,"props":44,"children":45},"element","p",{},[46,60],{"type":42,"tag":47,"props":48,"children":49},"strong",{},[50,53],{"type":51,"value":52},"text","📋 Shared Instructions: ",{"type":42,"tag":54,"props":55,"children":57},"a",{"href":56},"$%7BCLAUDE_PLUGIN_ROOT%7D\u002Fshared\u002Fshared-instructions.md",[58],{"type":51,"value":59},"shared-instructions.md",{"type":51,"value":61}," — Cross-cutting concerns.",{"type":42,"tag":63,"props":64,"children":66},"h1",{"id":65},"add-work-iq-copilot-mcp-wrapper",[67],{"type":51,"value":68},"Add Work IQ Copilot MCP (Wrapper)",{"type":42,"tag":43,"props":70,"children":71},{},[72,74,81],{"type":51,"value":73},"This skill is a thin wrapper. Use ",{"type":42,"tag":75,"props":76,"children":78},"code",{"className":77},[],[79],{"type":51,"value":80},"\u002Fadd-connector",{"type":51,"value":82}," as the single implementation path.",{"type":42,"tag":84,"props":85,"children":87},"h2",{"id":86},"delegation-contract",[88],{"type":51,"value":89},"Delegation contract",{"type":42,"tag":43,"props":91,"children":92},{},[93,95,100],{"type":51,"value":94},"Invoke ",{"type":42,"tag":75,"props":96,"children":98},{"className":97},[],[99],{"type":51,"value":80},{"type":51,"value":101}," with:",{"type":42,"tag":103,"props":104,"children":105},"ul",{},[106,124],{"type":42,"tag":107,"props":108,"children":109},"li",{},[110,116,118],{"type":42,"tag":75,"props":111,"children":113},{"className":112},[],[114],{"type":51,"value":115},"api-id",{"type":51,"value":117},": ",{"type":42,"tag":75,"props":119,"children":121},{"className":120},[],[122],{"type":51,"value":123},"shared_a365copilotchatmcp",{"type":42,"tag":107,"props":125,"children":126},{},[127,133,134],{"type":42,"tag":75,"props":128,"children":130},{"className":129},[],[131],{"type":51,"value":132},"mode",{"type":51,"value":117},{"type":42,"tag":75,"props":135,"children":137},{"className":136},[],[138],{"type":51,"value":139},"action",{"type":42,"tag":141,"props":142,"children":143},"hr",{},[],{"type":42,"tag":63,"props":145,"children":147},{"id":146},"work-iq-integration-mcp-session-pattern",[148],{"type":51,"value":149},"Work IQ Integration: MCP Session Pattern",{"type":42,"tag":43,"props":151,"children":152},{},[153,155,161,163],{"type":51,"value":154},"After the connector is added, you'll have access to ",{"type":42,"tag":75,"props":156,"children":158},{"className":157},[],[159],{"type":51,"value":160},"WorkIQCopilotMCPService",{"type":51,"value":162},". ",{"type":42,"tag":47,"props":164,"children":165},{},[166,168,174],{"type":51,"value":167},"Work IQ uses MCP (Model Context Protocol), a stateful protocol. Use the ",{"type":42,"tag":75,"props":169,"children":171},{"className":170},[],[172],{"type":51,"value":173},"McpSession",{"type":51,"value":175}," wrapper class to manage this properly.",{"type":42,"tag":84,"props":177,"children":179},{"id":178},"setup-create-mcpsession-wrapper",[180],{"type":51,"value":181},"Setup: Create McpSession Wrapper",{"type":42,"tag":43,"props":183,"children":184},{},[185,187,192],{"type":51,"value":186},"⚠️ ",{"type":42,"tag":47,"props":188,"children":189},{},[190],{"type":51,"value":191},"CRITICAL:",{"type":51,"value":193}," The McpSession implementation is complex. Copy the production-ready code below exactly. It handles session negotiation, auto-retry on errors, proper JSON-RPC ID sequencing, and response parsing.",{"type":42,"tag":43,"props":195,"children":196},{},[197,199,205],{"type":51,"value":198},"Create ",{"type":42,"tag":75,"props":200,"children":202},{"className":201},[],[203],{"type":51,"value":204},"src\u002Fconnectors\u002FmcpClient.ts",{"type":51,"value":206},":",{"type":42,"tag":208,"props":209,"children":214},"pre",{"className":210,"code":211,"language":212,"meta":213,"style":213},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import type { IOperationResult } from '@microsoft\u002Fmanaged-apps\u002Fdata'\nimport { WorkIQCopilotMCPService } from '..\u002F..\u002Fgenerated\u002Fservices\u002FWorkIQCopilotMCPService'\nimport type { QueryRequest } from '..\u002F..\u002Fgenerated\u002Fmodels\u002FWorkIQCopilotMCPModel'\n\nexport interface JsonRpcRequest {\n  jsonrpc: '2.0'\n  id?: string\n  method: string\n  params?: Record\u003Cstring, unknown>\n}\n\nexport interface JsonRpcResponse {\n  jsonrpc?: string\n  id?: string\n  result?: Record\u003Cstring, unknown>\n  error?: { code?: number; message?: string; data?: unknown }\n}\n\ntype CopilotConversationMessage = {\n  text?: string\n  attributions?: Array\u003C{ attributionType?: string; providerDisplayName?: string; seeMoreWebUrl?: string }>\n}\n\ntype CopilotConversation = {\n  messages?: CopilotConversationMessage[]\n}\n\nfunction parseRpc(result: IOperationResult\u003Cunknown>): JsonRpcResponse {\n  if (!result.success && result.error) {\n    return { error: { message: result.error.message } }\n  }\n\n  const data: unknown = result.data\n  if (data == null) return {}\n  if (typeof data === 'object') return data as JsonRpcResponse\n  if (typeof data === 'string') {\n    const dataLines = data\n      .split(\u002F\\r?\\n\u002F)\n      .filter((line) => line.startsWith('data:'))\n      .map((line) => line.slice(5).trim())\n    const payload = dataLines.length ? dataLines.join('') : data\n    try {\n      return JSON.parse(payload) as JsonRpcResponse\n    } catch {\n      return { result: { raw: data } }\n    }\n  }\n\n  return { result: { raw: data } }\n}\n\nexport class McpSession {\n  private nextId = 1\n  private sessionId: string | undefined\n  private conversationId: string | undefined\n  private initialized = false\n\n  private extractSessionId(raw: IOperationResult\u003Cunknown>): string | undefined {\n    const container = raw as unknown as Record\u003Cstring, unknown>\n    const dataObj =\n      raw.data && typeof raw.data === 'object' ? (raw.data as Record\u003Cstring, unknown>) : undefined\n    const resultObj =\n      dataObj?.result && typeof dataObj.result === 'object'\n        ? (dataObj.result as Record\u003Cstring, unknown>)\n        : undefined\n\n    const candidates: Array\u003Cunknown> = [\n      dataObj?.['Mcp-Session-Id'],\n      dataObj?.mcpSessionId,\n      dataObj?.sessionId,\n      resultObj?.['Mcp-Session-Id'],\n      resultObj?.mcpSessionId,\n      resultObj?.sessionId,\n      container['Mcp-Session-Id'],\n      container.mcpSessionId,\n      container.sessionId,\n    ]\n\n    const found = candidates.find((value) => typeof value === 'string' && value.length > 0)\n    return typeof found === 'string' ? found : undefined\n  }\n\n  private isSessionNotFound(res: JsonRpcResponse): boolean {\n    const message = (res.error?.message ?? '').toLowerCase()\n    return message.includes('session not found') || res.error?.code === -32001\n  }\n\n  private resetSession(): void {\n    this.sessionId = undefined\n    this.initialized = false\n  }\n\n  private async send(\n    method: string,\n    params?: Record\u003Cstring, unknown>,\n    allowRetry = true\n  ): Promise\u003CJsonRpcResponse> {\n    const req: JsonRpcRequest = { jsonrpc: '2.0', id: String(this.nextId++), method, params }\n    const raw = (await WorkIQCopilotMCPService.mcp_m365copilot(\n      this.sessionId,\n      req as QueryRequest\n    )) as unknown as IOperationResult\u003Cunknown>\n\n    const negotiatedSessionId = this.extractSessionId(raw)\n    if (negotiatedSessionId) {\n      this.sessionId = negotiatedSessionId\n    }\n\n    const parsed = parseRpc(raw)\n\n    if (allowRetry && method !== 'initialize' && this.isSessionNotFound(parsed)) {\n      this.resetSession()\n      await this.initialize()\n      return this.send(method, params, false)\n    }\n\n    return parsed\n  }\n\n  async initialize(): Promise\u003CJsonRpcResponse> {\n    const res = await this.send('initialize', {\n      protocolVersion: '2025-06-18',\n      capabilities: {},\n      clientInfo: { name: 'Custom App', version: '1.0.0' },\n    })\n    this.initialized = !res.error\n    return res\n  }\n\n  async callCopilotChat(message: string): Promise\u003C{ text: string; conversationId?: string }> {\n    if (!this.initialized) await this.initialize()\n    const raw = await this.send('tools\u002Fcall', {\n      name: 'CopilotChat',\n      arguments: {\n        message,\n        ...(this.conversationId ? { conversationId: this.conversationId } : {}),\n      },\n    })\n\n    const parsed = extractCopilotText(raw)\n    if (parsed.conversationId) {\n      this.conversationId = parsed.conversationId\n    }\n\n    return { text: parsed.text, conversationId: parsed.conversationId }\n  }\n}\n\nfunction extractContentText(res: JsonRpcResponse): string | undefined {\n  const content = res.result?.content as Array\u003C{ type?: string; text?: string }> | undefined\n  if (!Array.isArray(content)) {\n    return undefined\n  }\n\n  const textBlocks = content\n    .filter((c) => c.type === 'text' && typeof c.text === 'string')\n    .map((c) => c.text!.trim())\n    .filter((value) => value.length > 0)\n\n  if (textBlocks.length === 0) {\n    return undefined\n  }\n\n  \u002F\u002F Prefer the JSON payload block. Some responses append metadata text blocks\n  \u002F\u002F such as \"CorrelationId: ...\" that should not be concatenated.\n  const jsonBlock = textBlocks.find(\n    (block) => block.startsWith('{') && \u002F\"conversationId\"|\"rawResponse\"|\"reply\"\u002F.test(block)\n  )\n  if (jsonBlock) {\n    return jsonBlock\n  }\n\n  const nonMetadata = textBlocks.find((block) => !\u002F^CorrelationId\\s*:\u002Fi.test(block))\n  return nonMetadata ?? textBlocks[0]\n}\n\nexport function extractCopilotText(res: JsonRpcResponse): { text: string; conversationId?: string } {\n  if (res.error) {\n    return { text: `Error: ${res.error.message ?? JSON.stringify(res.error)}` }\n  }\n\n  const rawText = extractContentText(res)\n  if (!rawText) {\n    return { text: res.result ? JSON.stringify(res.result, null, 2) : '(no content returned)' }\n  }\n\n  try {\n    const inner = JSON.parse(rawText) as {\n      conversationId?: string\n      reply?: string\n      message?: string\n      rawResponse?: string\n    }\n\n    if (typeof inner.rawResponse === 'string') {\n      try {\n        const convo = JSON.parse(inner.rawResponse) as CopilotConversation\n        const messages = Array.isArray(convo.messages) ? convo.messages : []\n        const attributed = messages.find(\n          (m) => Array.isArray(m.attributions) && m.attributions.length > 0\n        )\n        const selected = attributed ?? messages[1] ?? messages[messages.length - 1]\n        const replyText = selected?.text?.trim()\n        if (replyText) {\n          return { text: replyText, conversationId: inner.conversationId }\n        }\n      } catch {\n        \u002F\u002F Fall through to simple reply extraction.\n      }\n    }\n\n    const fallbackText = inner.reply?.trim() || inner.message?.trim() || rawText\n    return { text: fallbackText, conversationId: inner.conversationId }\n  } catch {\n    return { text: rawText }\n  }\n}\n","typescript","",[215],{"type":42,"tag":75,"props":216,"children":217},{"__ignoreMap":213},[218,273,310,351,360,386,413,432,449,492,501,509,530,546,562,599,671,679,687,710,727,802,810,818,839,861,869,877,933,995,1058,1067,1075,1113,1154,1216,1260,1283,1330,1401,1475,1544,1557,1602,1620,1665,1674,1682,1690,1735,1743,1751,1773,1796,1827,1856,1879,1887,1946,2003,2021,2136,2153,2207,2265,2278,2286,2328,2368,2389,2410,2447,2467,2487,2520,2540,2560,2569,2577,2683,2732,2740,2748,2792,2860,2942,2950,2958,2985,3006,3027,3035,3043,3066,3087,3125,3143,3174,3287,3329,3346,3364,3401,3409,3448,3474,3495,3503,3511,3544,3552,3626,3643,3664,3711,3719,3727,3740,3748,3756,3794,3847,3877,3895,3965,3977,4011,4024,4032,4040,4119,4160,4213,4243,4260,4273,4340,4349,4361,4369,4402,4434,4463,4471,4479,4539,4547,4555,4563,4612,4702,4748,4760,4768,4776,4798,4901,4958,5014,5022,5063,5075,5083,5091,5101,5110,5143,5258,5267,5292,5305,5313,5321,5426,5460,5468,5476,5553,5585,5682,5690,5698,5731,5760,5863,5871,5879,5892,5941,5958,5975,5992,6009,6017,6025,6078,6091,6151,6227,6260,6349,6358,6438,6479,6505,6558,6567,6584,6593,6602,6610,6618,6698,6750,6767,6795,6803],{"type":42,"tag":219,"props":220,"children":223},"span",{"class":221,"line":222},"line",1,[224,230,235,241,247,252,257,262,268],{"type":42,"tag":219,"props":225,"children":227},{"style":226},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[228],{"type":51,"value":229},"import",{"type":42,"tag":219,"props":231,"children":232},{"style":226},[233],{"type":51,"value":234}," type",{"type":42,"tag":219,"props":236,"children":238},{"style":237},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[239],{"type":51,"value":240}," {",{"type":42,"tag":219,"props":242,"children":244},{"style":243},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[245],{"type":51,"value":246}," IOperationResult",{"type":42,"tag":219,"props":248,"children":249},{"style":237},[250],{"type":51,"value":251}," }",{"type":42,"tag":219,"props":253,"children":254},{"style":226},[255],{"type":51,"value":256}," from",{"type":42,"tag":219,"props":258,"children":259},{"style":237},[260],{"type":51,"value":261}," '",{"type":42,"tag":219,"props":263,"children":265},{"style":264},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[266],{"type":51,"value":267},"@microsoft\u002Fmanaged-apps\u002Fdata",{"type":42,"tag":219,"props":269,"children":270},{"style":237},[271],{"type":51,"value":272},"'\n",{"type":42,"tag":219,"props":274,"children":275},{"class":221,"line":23},[276,280,284,289,293,297,301,306],{"type":42,"tag":219,"props":277,"children":278},{"style":226},[279],{"type":51,"value":229},{"type":42,"tag":219,"props":281,"children":282},{"style":237},[283],{"type":51,"value":240},{"type":42,"tag":219,"props":285,"children":286},{"style":243},[287],{"type":51,"value":288}," WorkIQCopilotMCPService",{"type":42,"tag":219,"props":290,"children":291},{"style":237},[292],{"type":51,"value":251},{"type":42,"tag":219,"props":294,"children":295},{"style":226},[296],{"type":51,"value":256},{"type":42,"tag":219,"props":298,"children":299},{"style":237},[300],{"type":51,"value":261},{"type":42,"tag":219,"props":302,"children":303},{"style":264},[304],{"type":51,"value":305},"..\u002F..\u002Fgenerated\u002Fservices\u002FWorkIQCopilotMCPService",{"type":42,"tag":219,"props":307,"children":308},{"style":237},[309],{"type":51,"value":272},{"type":42,"tag":219,"props":311,"children":312},{"class":221,"line":27},[313,317,321,325,330,334,338,342,347],{"type":42,"tag":219,"props":314,"children":315},{"style":226},[316],{"type":51,"value":229},{"type":42,"tag":219,"props":318,"children":319},{"style":226},[320],{"type":51,"value":234},{"type":42,"tag":219,"props":322,"children":323},{"style":237},[324],{"type":51,"value":240},{"type":42,"tag":219,"props":326,"children":327},{"style":243},[328],{"type":51,"value":329}," QueryRequest",{"type":42,"tag":219,"props":331,"children":332},{"style":237},[333],{"type":51,"value":251},{"type":42,"tag":219,"props":335,"children":336},{"style":226},[337],{"type":51,"value":256},{"type":42,"tag":219,"props":339,"children":340},{"style":237},[341],{"type":51,"value":261},{"type":42,"tag":219,"props":343,"children":344},{"style":264},[345],{"type":51,"value":346},"..\u002F..\u002Fgenerated\u002Fmodels\u002FWorkIQCopilotMCPModel",{"type":42,"tag":219,"props":348,"children":349},{"style":237},[350],{"type":51,"value":272},{"type":42,"tag":219,"props":352,"children":354},{"class":221,"line":353},4,[355],{"type":42,"tag":219,"props":356,"children":357},{"emptyLinePlaceholder":35},[358],{"type":51,"value":359},"\n",{"type":42,"tag":219,"props":361,"children":363},{"class":221,"line":362},5,[364,369,375,381],{"type":42,"tag":219,"props":365,"children":366},{"style":226},[367],{"type":51,"value":368},"export",{"type":42,"tag":219,"props":370,"children":372},{"style":371},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[373],{"type":51,"value":374}," interface",{"type":42,"tag":219,"props":376,"children":378},{"style":377},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[379],{"type":51,"value":380}," JsonRpcRequest",{"type":42,"tag":219,"props":382,"children":383},{"style":237},[384],{"type":51,"value":385}," {\n",{"type":42,"tag":219,"props":387,"children":389},{"class":221,"line":388},6,[390,396,400,404,409],{"type":42,"tag":219,"props":391,"children":393},{"style":392},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[394],{"type":51,"value":395},"  jsonrpc",{"type":42,"tag":219,"props":397,"children":398},{"style":237},[399],{"type":51,"value":206},{"type":42,"tag":219,"props":401,"children":402},{"style":237},[403],{"type":51,"value":261},{"type":42,"tag":219,"props":405,"children":406},{"style":264},[407],{"type":51,"value":408},"2.0",{"type":42,"tag":219,"props":410,"children":411},{"style":237},[412],{"type":51,"value":272},{"type":42,"tag":219,"props":414,"children":416},{"class":221,"line":415},7,[417,422,427],{"type":42,"tag":219,"props":418,"children":419},{"style":392},[420],{"type":51,"value":421},"  id",{"type":42,"tag":219,"props":423,"children":424},{"style":237},[425],{"type":51,"value":426},"?:",{"type":42,"tag":219,"props":428,"children":429},{"style":377},[430],{"type":51,"value":431}," string\n",{"type":42,"tag":219,"props":433,"children":435},{"class":221,"line":434},8,[436,441,445],{"type":42,"tag":219,"props":437,"children":438},{"style":392},[439],{"type":51,"value":440},"  method",{"type":42,"tag":219,"props":442,"children":443},{"style":237},[444],{"type":51,"value":206},{"type":42,"tag":219,"props":446,"children":447},{"style":377},[448],{"type":51,"value":431},{"type":42,"tag":219,"props":450,"children":452},{"class":221,"line":451},9,[453,458,462,467,472,477,482,487],{"type":42,"tag":219,"props":454,"children":455},{"style":392},[456],{"type":51,"value":457},"  params",{"type":42,"tag":219,"props":459,"children":460},{"style":237},[461],{"type":51,"value":426},{"type":42,"tag":219,"props":463,"children":464},{"style":377},[465],{"type":51,"value":466}," Record",{"type":42,"tag":219,"props":468,"children":469},{"style":237},[470],{"type":51,"value":471},"\u003C",{"type":42,"tag":219,"props":473,"children":474},{"style":377},[475],{"type":51,"value":476},"string",{"type":42,"tag":219,"props":478,"children":479},{"style":237},[480],{"type":51,"value":481},",",{"type":42,"tag":219,"props":483,"children":484},{"style":377},[485],{"type":51,"value":486}," unknown",{"type":42,"tag":219,"props":488,"children":489},{"style":237},[490],{"type":51,"value":491},">\n",{"type":42,"tag":219,"props":493,"children":495},{"class":221,"line":494},10,[496],{"type":42,"tag":219,"props":497,"children":498},{"style":237},[499],{"type":51,"value":500},"}\n",{"type":42,"tag":219,"props":502,"children":504},{"class":221,"line":503},11,[505],{"type":42,"tag":219,"props":506,"children":507},{"emptyLinePlaceholder":35},[508],{"type":51,"value":359},{"type":42,"tag":219,"props":510,"children":512},{"class":221,"line":511},12,[513,517,521,526],{"type":42,"tag":219,"props":514,"children":515},{"style":226},[516],{"type":51,"value":368},{"type":42,"tag":219,"props":518,"children":519},{"style":371},[520],{"type":51,"value":374},{"type":42,"tag":219,"props":522,"children":523},{"style":377},[524],{"type":51,"value":525}," JsonRpcResponse",{"type":42,"tag":219,"props":527,"children":528},{"style":237},[529],{"type":51,"value":385},{"type":42,"tag":219,"props":531,"children":533},{"class":221,"line":532},13,[534,538,542],{"type":42,"tag":219,"props":535,"children":536},{"style":392},[537],{"type":51,"value":395},{"type":42,"tag":219,"props":539,"children":540},{"style":237},[541],{"type":51,"value":426},{"type":42,"tag":219,"props":543,"children":544},{"style":377},[545],{"type":51,"value":431},{"type":42,"tag":219,"props":547,"children":549},{"class":221,"line":548},14,[550,554,558],{"type":42,"tag":219,"props":551,"children":552},{"style":392},[553],{"type":51,"value":421},{"type":42,"tag":219,"props":555,"children":556},{"style":237},[557],{"type":51,"value":426},{"type":42,"tag":219,"props":559,"children":560},{"style":377},[561],{"type":51,"value":431},{"type":42,"tag":219,"props":563,"children":565},{"class":221,"line":564},15,[566,571,575,579,583,587,591,595],{"type":42,"tag":219,"props":567,"children":568},{"style":392},[569],{"type":51,"value":570},"  result",{"type":42,"tag":219,"props":572,"children":573},{"style":237},[574],{"type":51,"value":426},{"type":42,"tag":219,"props":576,"children":577},{"style":377},[578],{"type":51,"value":466},{"type":42,"tag":219,"props":580,"children":581},{"style":237},[582],{"type":51,"value":471},{"type":42,"tag":219,"props":584,"children":585},{"style":377},[586],{"type":51,"value":476},{"type":42,"tag":219,"props":588,"children":589},{"style":237},[590],{"type":51,"value":481},{"type":42,"tag":219,"props":592,"children":593},{"style":377},[594],{"type":51,"value":486},{"type":42,"tag":219,"props":596,"children":597},{"style":237},[598],{"type":51,"value":491},{"type":42,"tag":219,"props":600,"children":602},{"class":221,"line":601},16,[603,608,612,616,621,625,630,635,640,644,649,653,658,662,666],{"type":42,"tag":219,"props":604,"children":605},{"style":392},[606],{"type":51,"value":607},"  error",{"type":42,"tag":219,"props":609,"children":610},{"style":237},[611],{"type":51,"value":426},{"type":42,"tag":219,"props":613,"children":614},{"style":237},[615],{"type":51,"value":240},{"type":42,"tag":219,"props":617,"children":618},{"style":392},[619],{"type":51,"value":620}," code",{"type":42,"tag":219,"props":622,"children":623},{"style":237},[624],{"type":51,"value":426},{"type":42,"tag":219,"props":626,"children":627},{"style":377},[628],{"type":51,"value":629}," number",{"type":42,"tag":219,"props":631,"children":632},{"style":237},[633],{"type":51,"value":634},";",{"type":42,"tag":219,"props":636,"children":637},{"style":392},[638],{"type":51,"value":639}," message",{"type":42,"tag":219,"props":641,"children":642},{"style":237},[643],{"type":51,"value":426},{"type":42,"tag":219,"props":645,"children":646},{"style":377},[647],{"type":51,"value":648}," string",{"type":42,"tag":219,"props":650,"children":651},{"style":237},[652],{"type":51,"value":634},{"type":42,"tag":219,"props":654,"children":655},{"style":392},[656],{"type":51,"value":657}," data",{"type":42,"tag":219,"props":659,"children":660},{"style":237},[661],{"type":51,"value":426},{"type":42,"tag":219,"props":663,"children":664},{"style":377},[665],{"type":51,"value":486},{"type":42,"tag":219,"props":667,"children":668},{"style":237},[669],{"type":51,"value":670}," }\n",{"type":42,"tag":219,"props":672,"children":674},{"class":221,"line":673},17,[675],{"type":42,"tag":219,"props":676,"children":677},{"style":237},[678],{"type":51,"value":500},{"type":42,"tag":219,"props":680,"children":682},{"class":221,"line":681},18,[683],{"type":42,"tag":219,"props":684,"children":685},{"emptyLinePlaceholder":35},[686],{"type":51,"value":359},{"type":42,"tag":219,"props":688,"children":690},{"class":221,"line":689},19,[691,696,701,706],{"type":42,"tag":219,"props":692,"children":693},{"style":371},[694],{"type":51,"value":695},"type",{"type":42,"tag":219,"props":697,"children":698},{"style":377},[699],{"type":51,"value":700}," CopilotConversationMessage",{"type":42,"tag":219,"props":702,"children":703},{"style":237},[704],{"type":51,"value":705}," =",{"type":42,"tag":219,"props":707,"children":708},{"style":237},[709],{"type":51,"value":385},{"type":42,"tag":219,"props":711,"children":713},{"class":221,"line":712},20,[714,719,723],{"type":42,"tag":219,"props":715,"children":716},{"style":392},[717],{"type":51,"value":718},"  text",{"type":42,"tag":219,"props":720,"children":721},{"style":237},[722],{"type":51,"value":426},{"type":42,"tag":219,"props":724,"children":725},{"style":377},[726],{"type":51,"value":431},{"type":42,"tag":219,"props":728,"children":730},{"class":221,"line":729},21,[731,736,740,745,750,755,759,763,767,772,776,780,784,789,793,797],{"type":42,"tag":219,"props":732,"children":733},{"style":392},[734],{"type":51,"value":735},"  attributions",{"type":42,"tag":219,"props":737,"children":738},{"style":237},[739],{"type":51,"value":426},{"type":42,"tag":219,"props":741,"children":742},{"style":377},[743],{"type":51,"value":744}," Array",{"type":42,"tag":219,"props":746,"children":747},{"style":237},[748],{"type":51,"value":749},"\u003C{",{"type":42,"tag":219,"props":751,"children":752},{"style":392},[753],{"type":51,"value":754}," attributionType",{"type":42,"tag":219,"props":756,"children":757},{"style":237},[758],{"type":51,"value":426},{"type":42,"tag":219,"props":760,"children":761},{"style":377},[762],{"type":51,"value":648},{"type":42,"tag":219,"props":764,"children":765},{"style":237},[766],{"type":51,"value":634},{"type":42,"tag":219,"props":768,"children":769},{"style":392},[770],{"type":51,"value":771}," providerDisplayName",{"type":42,"tag":219,"props":773,"children":774},{"style":237},[775],{"type":51,"value":426},{"type":42,"tag":219,"props":777,"children":778},{"style":377},[779],{"type":51,"value":648},{"type":42,"tag":219,"props":781,"children":782},{"style":237},[783],{"type":51,"value":634},{"type":42,"tag":219,"props":785,"children":786},{"style":392},[787],{"type":51,"value":788}," seeMoreWebUrl",{"type":42,"tag":219,"props":790,"children":791},{"style":237},[792],{"type":51,"value":426},{"type":42,"tag":219,"props":794,"children":795},{"style":377},[796],{"type":51,"value":648},{"type":42,"tag":219,"props":798,"children":799},{"style":237},[800],{"type":51,"value":801}," }>\n",{"type":42,"tag":219,"props":803,"children":805},{"class":221,"line":804},22,[806],{"type":42,"tag":219,"props":807,"children":808},{"style":237},[809],{"type":51,"value":500},{"type":42,"tag":219,"props":811,"children":813},{"class":221,"line":812},23,[814],{"type":42,"tag":219,"props":815,"children":816},{"emptyLinePlaceholder":35},[817],{"type":51,"value":359},{"type":42,"tag":219,"props":819,"children":821},{"class":221,"line":820},24,[822,826,831,835],{"type":42,"tag":219,"props":823,"children":824},{"style":371},[825],{"type":51,"value":695},{"type":42,"tag":219,"props":827,"children":828},{"style":377},[829],{"type":51,"value":830}," CopilotConversation",{"type":42,"tag":219,"props":832,"children":833},{"style":237},[834],{"type":51,"value":705},{"type":42,"tag":219,"props":836,"children":837},{"style":237},[838],{"type":51,"value":385},{"type":42,"tag":219,"props":840,"children":842},{"class":221,"line":841},25,[843,848,852,856],{"type":42,"tag":219,"props":844,"children":845},{"style":392},[846],{"type":51,"value":847},"  messages",{"type":42,"tag":219,"props":849,"children":850},{"style":237},[851],{"type":51,"value":426},{"type":42,"tag":219,"props":853,"children":854},{"style":377},[855],{"type":51,"value":700},{"type":42,"tag":219,"props":857,"children":858},{"style":243},[859],{"type":51,"value":860},"[]\n",{"type":42,"tag":219,"props":862,"children":864},{"class":221,"line":863},26,[865],{"type":42,"tag":219,"props":866,"children":867},{"style":237},[868],{"type":51,"value":500},{"type":42,"tag":219,"props":870,"children":872},{"class":221,"line":871},27,[873],{"type":42,"tag":219,"props":874,"children":875},{"emptyLinePlaceholder":35},[876],{"type":51,"value":359},{"type":42,"tag":219,"props":878,"children":880},{"class":221,"line":879},28,[881,886,892,897,903,907,911,915,920,925,929],{"type":42,"tag":219,"props":882,"children":883},{"style":371},[884],{"type":51,"value":885},"function",{"type":42,"tag":219,"props":887,"children":889},{"style":888},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[890],{"type":51,"value":891}," parseRpc",{"type":42,"tag":219,"props":893,"children":894},{"style":237},[895],{"type":51,"value":896},"(",{"type":42,"tag":219,"props":898,"children":900},{"style":899},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[901],{"type":51,"value":902},"result",{"type":42,"tag":219,"props":904,"children":905},{"style":237},[906],{"type":51,"value":206},{"type":42,"tag":219,"props":908,"children":909},{"style":377},[910],{"type":51,"value":246},{"type":42,"tag":219,"props":912,"children":913},{"style":237},[914],{"type":51,"value":471},{"type":42,"tag":219,"props":916,"children":917},{"style":377},[918],{"type":51,"value":919},"unknown",{"type":42,"tag":219,"props":921,"children":922},{"style":237},[923],{"type":51,"value":924},">):",{"type":42,"tag":219,"props":926,"children":927},{"style":377},[928],{"type":51,"value":525},{"type":42,"tag":219,"props":930,"children":931},{"style":237},[932],{"type":51,"value":385},{"type":42,"tag":219,"props":934,"children":936},{"class":221,"line":935},29,[937,942,947,952,956,961,966,971,976,980,985,990],{"type":42,"tag":219,"props":938,"children":939},{"style":226},[940],{"type":51,"value":941},"  if",{"type":42,"tag":219,"props":943,"children":944},{"style":392},[945],{"type":51,"value":946}," (",{"type":42,"tag":219,"props":948,"children":949},{"style":237},[950],{"type":51,"value":951},"!",{"type":42,"tag":219,"props":953,"children":954},{"style":243},[955],{"type":51,"value":902},{"type":42,"tag":219,"props":957,"children":958},{"style":237},[959],{"type":51,"value":960},".",{"type":42,"tag":219,"props":962,"children":963},{"style":243},[964],{"type":51,"value":965},"success",{"type":42,"tag":219,"props":967,"children":968},{"style":237},[969],{"type":51,"value":970}," &&",{"type":42,"tag":219,"props":972,"children":973},{"style":243},[974],{"type":51,"value":975}," result",{"type":42,"tag":219,"props":977,"children":978},{"style":237},[979],{"type":51,"value":960},{"type":42,"tag":219,"props":981,"children":982},{"style":243},[983],{"type":51,"value":984},"error",{"type":42,"tag":219,"props":986,"children":987},{"style":392},[988],{"type":51,"value":989},") ",{"type":42,"tag":219,"props":991,"children":992},{"style":237},[993],{"type":51,"value":994},"{\n",{"type":42,"tag":219,"props":996,"children":998},{"class":221,"line":997},30,[999,1004,1008,1013,1017,1021,1025,1029,1033,1037,1041,1045,1050,1054],{"type":42,"tag":219,"props":1000,"children":1001},{"style":226},[1002],{"type":51,"value":1003},"    return",{"type":42,"tag":219,"props":1005,"children":1006},{"style":237},[1007],{"type":51,"value":240},{"type":42,"tag":219,"props":1009,"children":1010},{"style":392},[1011],{"type":51,"value":1012}," error",{"type":42,"tag":219,"props":1014,"children":1015},{"style":237},[1016],{"type":51,"value":206},{"type":42,"tag":219,"props":1018,"children":1019},{"style":237},[1020],{"type":51,"value":240},{"type":42,"tag":219,"props":1022,"children":1023},{"style":392},[1024],{"type":51,"value":639},{"type":42,"tag":219,"props":1026,"children":1027},{"style":237},[1028],{"type":51,"value":206},{"type":42,"tag":219,"props":1030,"children":1031},{"style":243},[1032],{"type":51,"value":975},{"type":42,"tag":219,"props":1034,"children":1035},{"style":237},[1036],{"type":51,"value":960},{"type":42,"tag":219,"props":1038,"children":1039},{"style":243},[1040],{"type":51,"value":984},{"type":42,"tag":219,"props":1042,"children":1043},{"style":237},[1044],{"type":51,"value":960},{"type":42,"tag":219,"props":1046,"children":1047},{"style":243},[1048],{"type":51,"value":1049},"message",{"type":42,"tag":219,"props":1051,"children":1052},{"style":237},[1053],{"type":51,"value":251},{"type":42,"tag":219,"props":1055,"children":1056},{"style":237},[1057],{"type":51,"value":670},{"type":42,"tag":219,"props":1059,"children":1061},{"class":221,"line":1060},31,[1062],{"type":42,"tag":219,"props":1063,"children":1064},{"style":237},[1065],{"type":51,"value":1066},"  }\n",{"type":42,"tag":219,"props":1068,"children":1070},{"class":221,"line":1069},32,[1071],{"type":42,"tag":219,"props":1072,"children":1073},{"emptyLinePlaceholder":35},[1074],{"type":51,"value":359},{"type":42,"tag":219,"props":1076,"children":1078},{"class":221,"line":1077},33,[1079,1084,1088,1092,1096,1100,1104,1108],{"type":42,"tag":219,"props":1080,"children":1081},{"style":371},[1082],{"type":51,"value":1083},"  const",{"type":42,"tag":219,"props":1085,"children":1086},{"style":243},[1087],{"type":51,"value":657},{"type":42,"tag":219,"props":1089,"children":1090},{"style":237},[1091],{"type":51,"value":206},{"type":42,"tag":219,"props":1093,"children":1094},{"style":377},[1095],{"type":51,"value":486},{"type":42,"tag":219,"props":1097,"children":1098},{"style":237},[1099],{"type":51,"value":705},{"type":42,"tag":219,"props":1101,"children":1102},{"style":243},[1103],{"type":51,"value":975},{"type":42,"tag":219,"props":1105,"children":1106},{"style":237},[1107],{"type":51,"value":960},{"type":42,"tag":219,"props":1109,"children":1110},{"style":243},[1111],{"type":51,"value":1112},"data\n",{"type":42,"tag":219,"props":1114,"children":1116},{"class":221,"line":1115},34,[1117,1121,1125,1130,1135,1140,1144,1149],{"type":42,"tag":219,"props":1118,"children":1119},{"style":226},[1120],{"type":51,"value":941},{"type":42,"tag":219,"props":1122,"children":1123},{"style":392},[1124],{"type":51,"value":946},{"type":42,"tag":219,"props":1126,"children":1127},{"style":243},[1128],{"type":51,"value":1129},"data",{"type":42,"tag":219,"props":1131,"children":1132},{"style":237},[1133],{"type":51,"value":1134}," ==",{"type":42,"tag":219,"props":1136,"children":1137},{"style":237},[1138],{"type":51,"value":1139}," null",{"type":42,"tag":219,"props":1141,"children":1142},{"style":392},[1143],{"type":51,"value":989},{"type":42,"tag":219,"props":1145,"children":1146},{"style":226},[1147],{"type":51,"value":1148},"return",{"type":42,"tag":219,"props":1150,"children":1151},{"style":237},[1152],{"type":51,"value":1153}," {}\n",{"type":42,"tag":219,"props":1155,"children":1157},{"class":221,"line":1156},35,[1158,1162,1166,1171,1175,1180,1184,1189,1194,1198,1202,1206,1211],{"type":42,"tag":219,"props":1159,"children":1160},{"style":226},[1161],{"type":51,"value":941},{"type":42,"tag":219,"props":1163,"children":1164},{"style":392},[1165],{"type":51,"value":946},{"type":42,"tag":219,"props":1167,"children":1168},{"style":237},[1169],{"type":51,"value":1170},"typeof",{"type":42,"tag":219,"props":1172,"children":1173},{"style":243},[1174],{"type":51,"value":657},{"type":42,"tag":219,"props":1176,"children":1177},{"style":237},[1178],{"type":51,"value":1179}," ===",{"type":42,"tag":219,"props":1181,"children":1182},{"style":237},[1183],{"type":51,"value":261},{"type":42,"tag":219,"props":1185,"children":1186},{"style":264},[1187],{"type":51,"value":1188},"object",{"type":42,"tag":219,"props":1190,"children":1191},{"style":237},[1192],{"type":51,"value":1193},"'",{"type":42,"tag":219,"props":1195,"children":1196},{"style":392},[1197],{"type":51,"value":989},{"type":42,"tag":219,"props":1199,"children":1200},{"style":226},[1201],{"type":51,"value":1148},{"type":42,"tag":219,"props":1203,"children":1204},{"style":243},[1205],{"type":51,"value":657},{"type":42,"tag":219,"props":1207,"children":1208},{"style":226},[1209],{"type":51,"value":1210}," as",{"type":42,"tag":219,"props":1212,"children":1213},{"style":377},[1214],{"type":51,"value":1215}," JsonRpcResponse\n",{"type":42,"tag":219,"props":1217,"children":1219},{"class":221,"line":1218},36,[1220,1224,1228,1232,1236,1240,1244,1248,1252,1256],{"type":42,"tag":219,"props":1221,"children":1222},{"style":226},[1223],{"type":51,"value":941},{"type":42,"tag":219,"props":1225,"children":1226},{"style":392},[1227],{"type":51,"value":946},{"type":42,"tag":219,"props":1229,"children":1230},{"style":237},[1231],{"type":51,"value":1170},{"type":42,"tag":219,"props":1233,"children":1234},{"style":243},[1235],{"type":51,"value":657},{"type":42,"tag":219,"props":1237,"children":1238},{"style":237},[1239],{"type":51,"value":1179},{"type":42,"tag":219,"props":1241,"children":1242},{"style":237},[1243],{"type":51,"value":261},{"type":42,"tag":219,"props":1245,"children":1246},{"style":264},[1247],{"type":51,"value":476},{"type":42,"tag":219,"props":1249,"children":1250},{"style":237},[1251],{"type":51,"value":1193},{"type":42,"tag":219,"props":1253,"children":1254},{"style":392},[1255],{"type":51,"value":989},{"type":42,"tag":219,"props":1257,"children":1258},{"style":237},[1259],{"type":51,"value":994},{"type":42,"tag":219,"props":1261,"children":1263},{"class":221,"line":1262},37,[1264,1269,1274,1278],{"type":42,"tag":219,"props":1265,"children":1266},{"style":371},[1267],{"type":51,"value":1268},"    const",{"type":42,"tag":219,"props":1270,"children":1271},{"style":243},[1272],{"type":51,"value":1273}," dataLines",{"type":42,"tag":219,"props":1275,"children":1276},{"style":237},[1277],{"type":51,"value":705},{"type":42,"tag":219,"props":1279,"children":1280},{"style":243},[1281],{"type":51,"value":1282}," data\n",{"type":42,"tag":219,"props":1284,"children":1286},{"class":221,"line":1285},38,[1287,1292,1297,1301,1306,1311,1316,1321,1325],{"type":42,"tag":219,"props":1288,"children":1289},{"style":237},[1290],{"type":51,"value":1291},"      .",{"type":42,"tag":219,"props":1293,"children":1294},{"style":888},[1295],{"type":51,"value":1296},"split",{"type":42,"tag":219,"props":1298,"children":1299},{"style":392},[1300],{"type":51,"value":896},{"type":42,"tag":219,"props":1302,"children":1303},{"style":237},[1304],{"type":51,"value":1305},"\u002F",{"type":42,"tag":219,"props":1307,"children":1308},{"style":264},[1309],{"type":51,"value":1310},"\\r",{"type":42,"tag":219,"props":1312,"children":1313},{"style":237},[1314],{"type":51,"value":1315},"?",{"type":42,"tag":219,"props":1317,"children":1318},{"style":264},[1319],{"type":51,"value":1320},"\\n",{"type":42,"tag":219,"props":1322,"children":1323},{"style":237},[1324],{"type":51,"value":1305},{"type":42,"tag":219,"props":1326,"children":1327},{"style":392},[1328],{"type":51,"value":1329},")\n",{"type":42,"tag":219,"props":1331,"children":1333},{"class":221,"line":1332},39,[1334,1338,1343,1347,1351,1355,1360,1365,1370,1374,1379,1383,1387,1392,1396],{"type":42,"tag":219,"props":1335,"children":1336},{"style":237},[1337],{"type":51,"value":1291},{"type":42,"tag":219,"props":1339,"children":1340},{"style":888},[1341],{"type":51,"value":1342},"filter",{"type":42,"tag":219,"props":1344,"children":1345},{"style":392},[1346],{"type":51,"value":896},{"type":42,"tag":219,"props":1348,"children":1349},{"style":237},[1350],{"type":51,"value":896},{"type":42,"tag":219,"props":1352,"children":1353},{"style":899},[1354],{"type":51,"value":221},{"type":42,"tag":219,"props":1356,"children":1357},{"style":237},[1358],{"type":51,"value":1359},")",{"type":42,"tag":219,"props":1361,"children":1362},{"style":371},[1363],{"type":51,"value":1364}," =>",{"type":42,"tag":219,"props":1366,"children":1367},{"style":243},[1368],{"type":51,"value":1369}," line",{"type":42,"tag":219,"props":1371,"children":1372},{"style":237},[1373],{"type":51,"value":960},{"type":42,"tag":219,"props":1375,"children":1376},{"style":888},[1377],{"type":51,"value":1378},"startsWith",{"type":42,"tag":219,"props":1380,"children":1381},{"style":392},[1382],{"type":51,"value":896},{"type":42,"tag":219,"props":1384,"children":1385},{"style":237},[1386],{"type":51,"value":1193},{"type":42,"tag":219,"props":1388,"children":1389},{"style":264},[1390],{"type":51,"value":1391},"data:",{"type":42,"tag":219,"props":1393,"children":1394},{"style":237},[1395],{"type":51,"value":1193},{"type":42,"tag":219,"props":1397,"children":1398},{"style":392},[1399],{"type":51,"value":1400},"))\n",{"type":42,"tag":219,"props":1402,"children":1404},{"class":221,"line":1403},40,[1405,1409,1414,1418,1422,1426,1430,1434,1438,1442,1447,1451,1457,1461,1465,1470],{"type":42,"tag":219,"props":1406,"children":1407},{"style":237},[1408],{"type":51,"value":1291},{"type":42,"tag":219,"props":1410,"children":1411},{"style":888},[1412],{"type":51,"value":1413},"map",{"type":42,"tag":219,"props":1415,"children":1416},{"style":392},[1417],{"type":51,"value":896},{"type":42,"tag":219,"props":1419,"children":1420},{"style":237},[1421],{"type":51,"value":896},{"type":42,"tag":219,"props":1423,"children":1424},{"style":899},[1425],{"type":51,"value":221},{"type":42,"tag":219,"props":1427,"children":1428},{"style":237},[1429],{"type":51,"value":1359},{"type":42,"tag":219,"props":1431,"children":1432},{"style":371},[1433],{"type":51,"value":1364},{"type":42,"tag":219,"props":1435,"children":1436},{"style":243},[1437],{"type":51,"value":1369},{"type":42,"tag":219,"props":1439,"children":1440},{"style":237},[1441],{"type":51,"value":960},{"type":42,"tag":219,"props":1443,"children":1444},{"style":888},[1445],{"type":51,"value":1446},"slice",{"type":42,"tag":219,"props":1448,"children":1449},{"style":392},[1450],{"type":51,"value":896},{"type":42,"tag":219,"props":1452,"children":1454},{"style":1453},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1455],{"type":51,"value":1456},"5",{"type":42,"tag":219,"props":1458,"children":1459},{"style":392},[1460],{"type":51,"value":1359},{"type":42,"tag":219,"props":1462,"children":1463},{"style":237},[1464],{"type":51,"value":960},{"type":42,"tag":219,"props":1466,"children":1467},{"style":888},[1468],{"type":51,"value":1469},"trim",{"type":42,"tag":219,"props":1471,"children":1472},{"style":392},[1473],{"type":51,"value":1474},"())\n",{"type":42,"tag":219,"props":1476,"children":1478},{"class":221,"line":1477},41,[1479,1483,1488,1492,1496,1500,1505,1510,1514,1518,1523,1527,1532,1536,1540],{"type":42,"tag":219,"props":1480,"children":1481},{"style":371},[1482],{"type":51,"value":1268},{"type":42,"tag":219,"props":1484,"children":1485},{"style":243},[1486],{"type":51,"value":1487}," payload",{"type":42,"tag":219,"props":1489,"children":1490},{"style":237},[1491],{"type":51,"value":705},{"type":42,"tag":219,"props":1493,"children":1494},{"style":243},[1495],{"type":51,"value":1273},{"type":42,"tag":219,"props":1497,"children":1498},{"style":237},[1499],{"type":51,"value":960},{"type":42,"tag":219,"props":1501,"children":1502},{"style":243},[1503],{"type":51,"value":1504},"length",{"type":42,"tag":219,"props":1506,"children":1507},{"style":237},[1508],{"type":51,"value":1509}," ?",{"type":42,"tag":219,"props":1511,"children":1512},{"style":243},[1513],{"type":51,"value":1273},{"type":42,"tag":219,"props":1515,"children":1516},{"style":237},[1517],{"type":51,"value":960},{"type":42,"tag":219,"props":1519,"children":1520},{"style":888},[1521],{"type":51,"value":1522},"join",{"type":42,"tag":219,"props":1524,"children":1525},{"style":392},[1526],{"type":51,"value":896},{"type":42,"tag":219,"props":1528,"children":1529},{"style":237},[1530],{"type":51,"value":1531},"''",{"type":42,"tag":219,"props":1533,"children":1534},{"style":392},[1535],{"type":51,"value":989},{"type":42,"tag":219,"props":1537,"children":1538},{"style":237},[1539],{"type":51,"value":206},{"type":42,"tag":219,"props":1541,"children":1542},{"style":243},[1543],{"type":51,"value":1282},{"type":42,"tag":219,"props":1545,"children":1547},{"class":221,"line":1546},42,[1548,1553],{"type":42,"tag":219,"props":1549,"children":1550},{"style":226},[1551],{"type":51,"value":1552},"    try",{"type":42,"tag":219,"props":1554,"children":1555},{"style":237},[1556],{"type":51,"value":385},{"type":42,"tag":219,"props":1558,"children":1560},{"class":221,"line":1559},43,[1561,1566,1571,1575,1580,1584,1589,1593,1598],{"type":42,"tag":219,"props":1562,"children":1563},{"style":226},[1564],{"type":51,"value":1565},"      return",{"type":42,"tag":219,"props":1567,"children":1568},{"style":243},[1569],{"type":51,"value":1570}," JSON",{"type":42,"tag":219,"props":1572,"children":1573},{"style":237},[1574],{"type":51,"value":960},{"type":42,"tag":219,"props":1576,"children":1577},{"style":888},[1578],{"type":51,"value":1579},"parse",{"type":42,"tag":219,"props":1581,"children":1582},{"style":392},[1583],{"type":51,"value":896},{"type":42,"tag":219,"props":1585,"children":1586},{"style":243},[1587],{"type":51,"value":1588},"payload",{"type":42,"tag":219,"props":1590,"children":1591},{"style":392},[1592],{"type":51,"value":989},{"type":42,"tag":219,"props":1594,"children":1595},{"style":226},[1596],{"type":51,"value":1597},"as",{"type":42,"tag":219,"props":1599,"children":1600},{"style":377},[1601],{"type":51,"value":1215},{"type":42,"tag":219,"props":1603,"children":1605},{"class":221,"line":1604},44,[1606,1611,1616],{"type":42,"tag":219,"props":1607,"children":1608},{"style":237},[1609],{"type":51,"value":1610},"    }",{"type":42,"tag":219,"props":1612,"children":1613},{"style":226},[1614],{"type":51,"value":1615}," catch",{"type":42,"tag":219,"props":1617,"children":1618},{"style":237},[1619],{"type":51,"value":385},{"type":42,"tag":219,"props":1621,"children":1623},{"class":221,"line":1622},45,[1624,1628,1632,1636,1640,1644,1649,1653,1657,1661],{"type":42,"tag":219,"props":1625,"children":1626},{"style":226},[1627],{"type":51,"value":1565},{"type":42,"tag":219,"props":1629,"children":1630},{"style":237},[1631],{"type":51,"value":240},{"type":42,"tag":219,"props":1633,"children":1634},{"style":392},[1635],{"type":51,"value":975},{"type":42,"tag":219,"props":1637,"children":1638},{"style":237},[1639],{"type":51,"value":206},{"type":42,"tag":219,"props":1641,"children":1642},{"style":237},[1643],{"type":51,"value":240},{"type":42,"tag":219,"props":1645,"children":1646},{"style":392},[1647],{"type":51,"value":1648}," raw",{"type":42,"tag":219,"props":1650,"children":1651},{"style":237},[1652],{"type":51,"value":206},{"type":42,"tag":219,"props":1654,"children":1655},{"style":243},[1656],{"type":51,"value":657},{"type":42,"tag":219,"props":1658,"children":1659},{"style":237},[1660],{"type":51,"value":251},{"type":42,"tag":219,"props":1662,"children":1663},{"style":237},[1664],{"type":51,"value":670},{"type":42,"tag":219,"props":1666,"children":1668},{"class":221,"line":1667},46,[1669],{"type":42,"tag":219,"props":1670,"children":1671},{"style":237},[1672],{"type":51,"value":1673},"    }\n",{"type":42,"tag":219,"props":1675,"children":1677},{"class":221,"line":1676},47,[1678],{"type":42,"tag":219,"props":1679,"children":1680},{"style":237},[1681],{"type":51,"value":1066},{"type":42,"tag":219,"props":1683,"children":1685},{"class":221,"line":1684},48,[1686],{"type":42,"tag":219,"props":1687,"children":1688},{"emptyLinePlaceholder":35},[1689],{"type":51,"value":359},{"type":42,"tag":219,"props":1691,"children":1693},{"class":221,"line":1692},49,[1694,1699,1703,1707,1711,1715,1719,1723,1727,1731],{"type":42,"tag":219,"props":1695,"children":1696},{"style":226},[1697],{"type":51,"value":1698},"  return",{"type":42,"tag":219,"props":1700,"children":1701},{"style":237},[1702],{"type":51,"value":240},{"type":42,"tag":219,"props":1704,"children":1705},{"style":392},[1706],{"type":51,"value":975},{"type":42,"tag":219,"props":1708,"children":1709},{"style":237},[1710],{"type":51,"value":206},{"type":42,"tag":219,"props":1712,"children":1713},{"style":237},[1714],{"type":51,"value":240},{"type":42,"tag":219,"props":1716,"children":1717},{"style":392},[1718],{"type":51,"value":1648},{"type":42,"tag":219,"props":1720,"children":1721},{"style":237},[1722],{"type":51,"value":206},{"type":42,"tag":219,"props":1724,"children":1725},{"style":243},[1726],{"type":51,"value":657},{"type":42,"tag":219,"props":1728,"children":1729},{"style":237},[1730],{"type":51,"value":251},{"type":42,"tag":219,"props":1732,"children":1733},{"style":237},[1734],{"type":51,"value":670},{"type":42,"tag":219,"props":1736,"children":1738},{"class":221,"line":1737},50,[1739],{"type":42,"tag":219,"props":1740,"children":1741},{"style":237},[1742],{"type":51,"value":500},{"type":42,"tag":219,"props":1744,"children":1746},{"class":221,"line":1745},51,[1747],{"type":42,"tag":219,"props":1748,"children":1749},{"emptyLinePlaceholder":35},[1750],{"type":51,"value":359},{"type":42,"tag":219,"props":1752,"children":1754},{"class":221,"line":1753},52,[1755,1759,1764,1769],{"type":42,"tag":219,"props":1756,"children":1757},{"style":226},[1758],{"type":51,"value":368},{"type":42,"tag":219,"props":1760,"children":1761},{"style":371},[1762],{"type":51,"value":1763}," class",{"type":42,"tag":219,"props":1765,"children":1766},{"style":377},[1767],{"type":51,"value":1768}," McpSession",{"type":42,"tag":219,"props":1770,"children":1771},{"style":237},[1772],{"type":51,"value":385},{"type":42,"tag":219,"props":1774,"children":1776},{"class":221,"line":1775},53,[1777,1782,1787,1791],{"type":42,"tag":219,"props":1778,"children":1779},{"style":371},[1780],{"type":51,"value":1781},"  private",{"type":42,"tag":219,"props":1783,"children":1784},{"style":392},[1785],{"type":51,"value":1786}," nextId",{"type":42,"tag":219,"props":1788,"children":1789},{"style":237},[1790],{"type":51,"value":705},{"type":42,"tag":219,"props":1792,"children":1793},{"style":1453},[1794],{"type":51,"value":1795}," 1\n",{"type":42,"tag":219,"props":1797,"children":1799},{"class":221,"line":1798},54,[1800,1804,1809,1813,1817,1822],{"type":42,"tag":219,"props":1801,"children":1802},{"style":371},[1803],{"type":51,"value":1781},{"type":42,"tag":219,"props":1805,"children":1806},{"style":392},[1807],{"type":51,"value":1808}," sessionId",{"type":42,"tag":219,"props":1810,"children":1811},{"style":237},[1812],{"type":51,"value":206},{"type":42,"tag":219,"props":1814,"children":1815},{"style":377},[1816],{"type":51,"value":648},{"type":42,"tag":219,"props":1818,"children":1819},{"style":237},[1820],{"type":51,"value":1821}," |",{"type":42,"tag":219,"props":1823,"children":1824},{"style":377},[1825],{"type":51,"value":1826}," undefined\n",{"type":42,"tag":219,"props":1828,"children":1830},{"class":221,"line":1829},55,[1831,1835,1840,1844,1848,1852],{"type":42,"tag":219,"props":1832,"children":1833},{"style":371},[1834],{"type":51,"value":1781},{"type":42,"tag":219,"props":1836,"children":1837},{"style":392},[1838],{"type":51,"value":1839}," conversationId",{"type":42,"tag":219,"props":1841,"children":1842},{"style":237},[1843],{"type":51,"value":206},{"type":42,"tag":219,"props":1845,"children":1846},{"style":377},[1847],{"type":51,"value":648},{"type":42,"tag":219,"props":1849,"children":1850},{"style":237},[1851],{"type":51,"value":1821},{"type":42,"tag":219,"props":1853,"children":1854},{"style":377},[1855],{"type":51,"value":1826},{"type":42,"tag":219,"props":1857,"children":1859},{"class":221,"line":1858},56,[1860,1864,1869,1873],{"type":42,"tag":219,"props":1861,"children":1862},{"style":371},[1863],{"type":51,"value":1781},{"type":42,"tag":219,"props":1865,"children":1866},{"style":392},[1867],{"type":51,"value":1868}," initialized",{"type":42,"tag":219,"props":1870,"children":1871},{"style":237},[1872],{"type":51,"value":705},{"type":42,"tag":219,"props":1874,"children":1876},{"style":1875},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[1877],{"type":51,"value":1878}," false\n",{"type":42,"tag":219,"props":1880,"children":1882},{"class":221,"line":1881},57,[1883],{"type":42,"tag":219,"props":1884,"children":1885},{"emptyLinePlaceholder":35},[1886],{"type":51,"value":359},{"type":42,"tag":219,"props":1888,"children":1890},{"class":221,"line":1889},58,[1891,1895,1900,1904,1909,1913,1917,1921,1925,1929,1933,1937,1942],{"type":42,"tag":219,"props":1892,"children":1893},{"style":371},[1894],{"type":51,"value":1781},{"type":42,"tag":219,"props":1896,"children":1897},{"style":392},[1898],{"type":51,"value":1899}," extractSessionId",{"type":42,"tag":219,"props":1901,"children":1902},{"style":237},[1903],{"type":51,"value":896},{"type":42,"tag":219,"props":1905,"children":1906},{"style":899},[1907],{"type":51,"value":1908},"raw",{"type":42,"tag":219,"props":1910,"children":1911},{"style":237},[1912],{"type":51,"value":206},{"type":42,"tag":219,"props":1914,"children":1915},{"style":377},[1916],{"type":51,"value":246},{"type":42,"tag":219,"props":1918,"children":1919},{"style":237},[1920],{"type":51,"value":471},{"type":42,"tag":219,"props":1922,"children":1923},{"style":377},[1924],{"type":51,"value":919},{"type":42,"tag":219,"props":1926,"children":1927},{"style":237},[1928],{"type":51,"value":924},{"type":42,"tag":219,"props":1930,"children":1931},{"style":377},[1932],{"type":51,"value":648},{"type":42,"tag":219,"props":1934,"children":1935},{"style":237},[1936],{"type":51,"value":1821},{"type":42,"tag":219,"props":1938,"children":1939},{"style":377},[1940],{"type":51,"value":1941}," undefined",{"type":42,"tag":219,"props":1943,"children":1944},{"style":237},[1945],{"type":51,"value":385},{"type":42,"tag":219,"props":1947,"children":1949},{"class":221,"line":1948},59,[1950,1954,1959,1963,1967,1971,1975,1979,1983,1987,1991,1995,1999],{"type":42,"tag":219,"props":1951,"children":1952},{"style":371},[1953],{"type":51,"value":1268},{"type":42,"tag":219,"props":1955,"children":1956},{"style":243},[1957],{"type":51,"value":1958}," container",{"type":42,"tag":219,"props":1960,"children":1961},{"style":237},[1962],{"type":51,"value":705},{"type":42,"tag":219,"props":1964,"children":1965},{"style":243},[1966],{"type":51,"value":1648},{"type":42,"tag":219,"props":1968,"children":1969},{"style":226},[1970],{"type":51,"value":1210},{"type":42,"tag":219,"props":1972,"children":1973},{"style":377},[1974],{"type":51,"value":486},{"type":42,"tag":219,"props":1976,"children":1977},{"style":226},[1978],{"type":51,"value":1210},{"type":42,"tag":219,"props":1980,"children":1981},{"style":377},[1982],{"type":51,"value":466},{"type":42,"tag":219,"props":1984,"children":1985},{"style":237},[1986],{"type":51,"value":471},{"type":42,"tag":219,"props":1988,"children":1989},{"style":377},[1990],{"type":51,"value":476},{"type":42,"tag":219,"props":1992,"children":1993},{"style":237},[1994],{"type":51,"value":481},{"type":42,"tag":219,"props":1996,"children":1997},{"style":377},[1998],{"type":51,"value":486},{"type":42,"tag":219,"props":2000,"children":2001},{"style":237},[2002],{"type":51,"value":491},{"type":42,"tag":219,"props":2004,"children":2006},{"class":221,"line":2005},60,[2007,2011,2016],{"type":42,"tag":219,"props":2008,"children":2009},{"style":371},[2010],{"type":51,"value":1268},{"type":42,"tag":219,"props":2012,"children":2013},{"style":243},[2014],{"type":51,"value":2015}," dataObj",{"type":42,"tag":219,"props":2017,"children":2018},{"style":237},[2019],{"type":51,"value":2020}," =\n",{"type":42,"tag":219,"props":2022,"children":2024},{"class":221,"line":2023},61,[2025,2030,2034,2038,2042,2047,2051,2055,2059,2063,2067,2071,2075,2079,2083,2087,2091,2095,2099,2103,2107,2111,2115,2119,2124,2128,2132],{"type":42,"tag":219,"props":2026,"children":2027},{"style":243},[2028],{"type":51,"value":2029},"      raw",{"type":42,"tag":219,"props":2031,"children":2032},{"style":237},[2033],{"type":51,"value":960},{"type":42,"tag":219,"props":2035,"children":2036},{"style":243},[2037],{"type":51,"value":1129},{"type":42,"tag":219,"props":2039,"children":2040},{"style":237},[2041],{"type":51,"value":970},{"type":42,"tag":219,"props":2043,"children":2044},{"style":237},[2045],{"type":51,"value":2046}," typeof",{"type":42,"tag":219,"props":2048,"children":2049},{"style":243},[2050],{"type":51,"value":1648},{"type":42,"tag":219,"props":2052,"children":2053},{"style":237},[2054],{"type":51,"value":960},{"type":42,"tag":219,"props":2056,"children":2057},{"style":243},[2058],{"type":51,"value":1129},{"type":42,"tag":219,"props":2060,"children":2061},{"style":237},[2062],{"type":51,"value":1179},{"type":42,"tag":219,"props":2064,"children":2065},{"style":237},[2066],{"type":51,"value":261},{"type":42,"tag":219,"props":2068,"children":2069},{"style":264},[2070],{"type":51,"value":1188},{"type":42,"tag":219,"props":2072,"children":2073},{"style":237},[2074],{"type":51,"value":1193},{"type":42,"tag":219,"props":2076,"children":2077},{"style":237},[2078],{"type":51,"value":1509},{"type":42,"tag":219,"props":2080,"children":2081},{"style":392},[2082],{"type":51,"value":946},{"type":42,"tag":219,"props":2084,"children":2085},{"style":243},[2086],{"type":51,"value":1908},{"type":42,"tag":219,"props":2088,"children":2089},{"style":237},[2090],{"type":51,"value":960},{"type":42,"tag":219,"props":2092,"children":2093},{"style":243},[2094],{"type":51,"value":1129},{"type":42,"tag":219,"props":2096,"children":2097},{"style":226},[2098],{"type":51,"value":1210},{"type":42,"tag":219,"props":2100,"children":2101},{"style":377},[2102],{"type":51,"value":466},{"type":42,"tag":219,"props":2104,"children":2105},{"style":237},[2106],{"type":51,"value":471},{"type":42,"tag":219,"props":2108,"children":2109},{"style":377},[2110],{"type":51,"value":476},{"type":42,"tag":219,"props":2112,"children":2113},{"style":237},[2114],{"type":51,"value":481},{"type":42,"tag":219,"props":2116,"children":2117},{"style":377},[2118],{"type":51,"value":486},{"type":42,"tag":219,"props":2120,"children":2121},{"style":237},[2122],{"type":51,"value":2123},">",{"type":42,"tag":219,"props":2125,"children":2126},{"style":392},[2127],{"type":51,"value":989},{"type":42,"tag":219,"props":2129,"children":2130},{"style":237},[2131],{"type":51,"value":206},{"type":42,"tag":219,"props":2133,"children":2134},{"style":237},[2135],{"type":51,"value":1826},{"type":42,"tag":219,"props":2137,"children":2139},{"class":221,"line":2138},62,[2140,2144,2149],{"type":42,"tag":219,"props":2141,"children":2142},{"style":371},[2143],{"type":51,"value":1268},{"type":42,"tag":219,"props":2145,"children":2146},{"style":243},[2147],{"type":51,"value":2148}," resultObj",{"type":42,"tag":219,"props":2150,"children":2151},{"style":237},[2152],{"type":51,"value":2020},{"type":42,"tag":219,"props":2154,"children":2156},{"class":221,"line":2155},63,[2157,2162,2167,2171,2175,2179,2183,2187,2191,2195,2199,2203],{"type":42,"tag":219,"props":2158,"children":2159},{"style":243},[2160],{"type":51,"value":2161},"      dataObj",{"type":42,"tag":219,"props":2163,"children":2164},{"style":237},[2165],{"type":51,"value":2166},"?.",{"type":42,"tag":219,"props":2168,"children":2169},{"style":243},[2170],{"type":51,"value":902},{"type":42,"tag":219,"props":2172,"children":2173},{"style":237},[2174],{"type":51,"value":970},{"type":42,"tag":219,"props":2176,"children":2177},{"style":237},[2178],{"type":51,"value":2046},{"type":42,"tag":219,"props":2180,"children":2181},{"style":243},[2182],{"type":51,"value":2015},{"type":42,"tag":219,"props":2184,"children":2185},{"style":237},[2186],{"type":51,"value":960},{"type":42,"tag":219,"props":2188,"children":2189},{"style":243},[2190],{"type":51,"value":902},{"type":42,"tag":219,"props":2192,"children":2193},{"style":237},[2194],{"type":51,"value":1179},{"type":42,"tag":219,"props":2196,"children":2197},{"style":237},[2198],{"type":51,"value":261},{"type":42,"tag":219,"props":2200,"children":2201},{"style":264},[2202],{"type":51,"value":1188},{"type":42,"tag":219,"props":2204,"children":2205},{"style":237},[2206],{"type":51,"value":272},{"type":42,"tag":219,"props":2208,"children":2210},{"class":221,"line":2209},64,[2211,2216,2220,2225,2229,2233,2237,2241,2245,2249,2253,2257,2261],{"type":42,"tag":219,"props":2212,"children":2213},{"style":237},[2214],{"type":51,"value":2215},"        ?",{"type":42,"tag":219,"props":2217,"children":2218},{"style":392},[2219],{"type":51,"value":946},{"type":42,"tag":219,"props":2221,"children":2222},{"style":243},[2223],{"type":51,"value":2224},"dataObj",{"type":42,"tag":219,"props":2226,"children":2227},{"style":237},[2228],{"type":51,"value":960},{"type":42,"tag":219,"props":2230,"children":2231},{"style":243},[2232],{"type":51,"value":902},{"type":42,"tag":219,"props":2234,"children":2235},{"style":226},[2236],{"type":51,"value":1210},{"type":42,"tag":219,"props":2238,"children":2239},{"style":377},[2240],{"type":51,"value":466},{"type":42,"tag":219,"props":2242,"children":2243},{"style":237},[2244],{"type":51,"value":471},{"type":42,"tag":219,"props":2246,"children":2247},{"style":377},[2248],{"type":51,"value":476},{"type":42,"tag":219,"props":2250,"children":2251},{"style":237},[2252],{"type":51,"value":481},{"type":42,"tag":219,"props":2254,"children":2255},{"style":377},[2256],{"type":51,"value":486},{"type":42,"tag":219,"props":2258,"children":2259},{"style":237},[2260],{"type":51,"value":2123},{"type":42,"tag":219,"props":2262,"children":2263},{"style":392},[2264],{"type":51,"value":1329},{"type":42,"tag":219,"props":2266,"children":2268},{"class":221,"line":2267},65,[2269,2274],{"type":42,"tag":219,"props":2270,"children":2271},{"style":237},[2272],{"type":51,"value":2273},"        :",{"type":42,"tag":219,"props":2275,"children":2276},{"style":237},[2277],{"type":51,"value":1826},{"type":42,"tag":219,"props":2279,"children":2281},{"class":221,"line":2280},66,[2282],{"type":42,"tag":219,"props":2283,"children":2284},{"emptyLinePlaceholder":35},[2285],{"type":51,"value":359},{"type":42,"tag":219,"props":2287,"children":2289},{"class":221,"line":2288},67,[2290,2294,2299,2303,2307,2311,2315,2319,2323],{"type":42,"tag":219,"props":2291,"children":2292},{"style":371},[2293],{"type":51,"value":1268},{"type":42,"tag":219,"props":2295,"children":2296},{"style":243},[2297],{"type":51,"value":2298}," candidates",{"type":42,"tag":219,"props":2300,"children":2301},{"style":237},[2302],{"type":51,"value":206},{"type":42,"tag":219,"props":2304,"children":2305},{"style":377},[2306],{"type":51,"value":744},{"type":42,"tag":219,"props":2308,"children":2309},{"style":237},[2310],{"type":51,"value":471},{"type":42,"tag":219,"props":2312,"children":2313},{"style":377},[2314],{"type":51,"value":919},{"type":42,"tag":219,"props":2316,"children":2317},{"style":237},[2318],{"type":51,"value":2123},{"type":42,"tag":219,"props":2320,"children":2321},{"style":237},[2322],{"type":51,"value":705},{"type":42,"tag":219,"props":2324,"children":2325},{"style":392},[2326],{"type":51,"value":2327}," [\n",{"type":42,"tag":219,"props":2329,"children":2331},{"class":221,"line":2330},68,[2332,2336,2340,2345,2349,2354,2358,2363],{"type":42,"tag":219,"props":2333,"children":2334},{"style":243},[2335],{"type":51,"value":2161},{"type":42,"tag":219,"props":2337,"children":2338},{"style":237},[2339],{"type":51,"value":2166},{"type":42,"tag":219,"props":2341,"children":2342},{"style":392},[2343],{"type":51,"value":2344},"[",{"type":42,"tag":219,"props":2346,"children":2347},{"style":237},[2348],{"type":51,"value":1193},{"type":42,"tag":219,"props":2350,"children":2351},{"style":264},[2352],{"type":51,"value":2353},"Mcp-Session-Id",{"type":42,"tag":219,"props":2355,"children":2356},{"style":237},[2357],{"type":51,"value":1193},{"type":42,"tag":219,"props":2359,"children":2360},{"style":392},[2361],{"type":51,"value":2362},"]",{"type":42,"tag":219,"props":2364,"children":2365},{"style":237},[2366],{"type":51,"value":2367},",\n",{"type":42,"tag":219,"props":2369,"children":2371},{"class":221,"line":2370},69,[2372,2376,2380,2385],{"type":42,"tag":219,"props":2373,"children":2374},{"style":243},[2375],{"type":51,"value":2161},{"type":42,"tag":219,"props":2377,"children":2378},{"style":237},[2379],{"type":51,"value":2166},{"type":42,"tag":219,"props":2381,"children":2382},{"style":243},[2383],{"type":51,"value":2384},"mcpSessionId",{"type":42,"tag":219,"props":2386,"children":2387},{"style":237},[2388],{"type":51,"value":2367},{"type":42,"tag":219,"props":2390,"children":2392},{"class":221,"line":2391},70,[2393,2397,2401,2406],{"type":42,"tag":219,"props":2394,"children":2395},{"style":243},[2396],{"type":51,"value":2161},{"type":42,"tag":219,"props":2398,"children":2399},{"style":237},[2400],{"type":51,"value":2166},{"type":42,"tag":219,"props":2402,"children":2403},{"style":243},[2404],{"type":51,"value":2405},"sessionId",{"type":42,"tag":219,"props":2407,"children":2408},{"style":237},[2409],{"type":51,"value":2367},{"type":42,"tag":219,"props":2411,"children":2413},{"class":221,"line":2412},71,[2414,2419,2423,2427,2431,2435,2439,2443],{"type":42,"tag":219,"props":2415,"children":2416},{"style":243},[2417],{"type":51,"value":2418},"      resultObj",{"type":42,"tag":219,"props":2420,"children":2421},{"style":237},[2422],{"type":51,"value":2166},{"type":42,"tag":219,"props":2424,"children":2425},{"style":392},[2426],{"type":51,"value":2344},{"type":42,"tag":219,"props":2428,"children":2429},{"style":237},[2430],{"type":51,"value":1193},{"type":42,"tag":219,"props":2432,"children":2433},{"style":264},[2434],{"type":51,"value":2353},{"type":42,"tag":219,"props":2436,"children":2437},{"style":237},[2438],{"type":51,"value":1193},{"type":42,"tag":219,"props":2440,"children":2441},{"style":392},[2442],{"type":51,"value":2362},{"type":42,"tag":219,"props":2444,"children":2445},{"style":237},[2446],{"type":51,"value":2367},{"type":42,"tag":219,"props":2448,"children":2450},{"class":221,"line":2449},72,[2451,2455,2459,2463],{"type":42,"tag":219,"props":2452,"children":2453},{"style":243},[2454],{"type":51,"value":2418},{"type":42,"tag":219,"props":2456,"children":2457},{"style":237},[2458],{"type":51,"value":2166},{"type":42,"tag":219,"props":2460,"children":2461},{"style":243},[2462],{"type":51,"value":2384},{"type":42,"tag":219,"props":2464,"children":2465},{"style":237},[2466],{"type":51,"value":2367},{"type":42,"tag":219,"props":2468,"children":2470},{"class":221,"line":2469},73,[2471,2475,2479,2483],{"type":42,"tag":219,"props":2472,"children":2473},{"style":243},[2474],{"type":51,"value":2418},{"type":42,"tag":219,"props":2476,"children":2477},{"style":237},[2478],{"type":51,"value":2166},{"type":42,"tag":219,"props":2480,"children":2481},{"style":243},[2482],{"type":51,"value":2405},{"type":42,"tag":219,"props":2484,"children":2485},{"style":237},[2486],{"type":51,"value":2367},{"type":42,"tag":219,"props":2488,"children":2490},{"class":221,"line":2489},74,[2491,2496,2500,2504,2508,2512,2516],{"type":42,"tag":219,"props":2492,"children":2493},{"style":243},[2494],{"type":51,"value":2495},"      container",{"type":42,"tag":219,"props":2497,"children":2498},{"style":392},[2499],{"type":51,"value":2344},{"type":42,"tag":219,"props":2501,"children":2502},{"style":237},[2503],{"type":51,"value":1193},{"type":42,"tag":219,"props":2505,"children":2506},{"style":264},[2507],{"type":51,"value":2353},{"type":42,"tag":219,"props":2509,"children":2510},{"style":237},[2511],{"type":51,"value":1193},{"type":42,"tag":219,"props":2513,"children":2514},{"style":392},[2515],{"type":51,"value":2362},{"type":42,"tag":219,"props":2517,"children":2518},{"style":237},[2519],{"type":51,"value":2367},{"type":42,"tag":219,"props":2521,"children":2523},{"class":221,"line":2522},75,[2524,2528,2532,2536],{"type":42,"tag":219,"props":2525,"children":2526},{"style":243},[2527],{"type":51,"value":2495},{"type":42,"tag":219,"props":2529,"children":2530},{"style":237},[2531],{"type":51,"value":960},{"type":42,"tag":219,"props":2533,"children":2534},{"style":243},[2535],{"type":51,"value":2384},{"type":42,"tag":219,"props":2537,"children":2538},{"style":237},[2539],{"type":51,"value":2367},{"type":42,"tag":219,"props":2541,"children":2543},{"class":221,"line":2542},76,[2544,2548,2552,2556],{"type":42,"tag":219,"props":2545,"children":2546},{"style":243},[2547],{"type":51,"value":2495},{"type":42,"tag":219,"props":2549,"children":2550},{"style":237},[2551],{"type":51,"value":960},{"type":42,"tag":219,"props":2553,"children":2554},{"style":243},[2555],{"type":51,"value":2405},{"type":42,"tag":219,"props":2557,"children":2558},{"style":237},[2559],{"type":51,"value":2367},{"type":42,"tag":219,"props":2561,"children":2563},{"class":221,"line":2562},77,[2564],{"type":42,"tag":219,"props":2565,"children":2566},{"style":392},[2567],{"type":51,"value":2568},"    ]\n",{"type":42,"tag":219,"props":2570,"children":2572},{"class":221,"line":2571},78,[2573],{"type":42,"tag":219,"props":2574,"children":2575},{"emptyLinePlaceholder":35},[2576],{"type":51,"value":359},{"type":42,"tag":219,"props":2578,"children":2580},{"class":221,"line":2579},79,[2581,2585,2590,2594,2598,2602,2607,2611,2615,2620,2624,2628,2632,2637,2641,2645,2649,2653,2657,2661,2665,2669,2674,2679],{"type":42,"tag":219,"props":2582,"children":2583},{"style":371},[2584],{"type":51,"value":1268},{"type":42,"tag":219,"props":2586,"children":2587},{"style":243},[2588],{"type":51,"value":2589}," found",{"type":42,"tag":219,"props":2591,"children":2592},{"style":237},[2593],{"type":51,"value":705},{"type":42,"tag":219,"props":2595,"children":2596},{"style":243},[2597],{"type":51,"value":2298},{"type":42,"tag":219,"props":2599,"children":2600},{"style":237},[2601],{"type":51,"value":960},{"type":42,"tag":219,"props":2603,"children":2604},{"style":888},[2605],{"type":51,"value":2606},"find",{"type":42,"tag":219,"props":2608,"children":2609},{"style":392},[2610],{"type":51,"value":896},{"type":42,"tag":219,"props":2612,"children":2613},{"style":237},[2614],{"type":51,"value":896},{"type":42,"tag":219,"props":2616,"children":2617},{"style":899},[2618],{"type":51,"value":2619},"value",{"type":42,"tag":219,"props":2621,"children":2622},{"style":237},[2623],{"type":51,"value":1359},{"type":42,"tag":219,"props":2625,"children":2626},{"style":371},[2627],{"type":51,"value":1364},{"type":42,"tag":219,"props":2629,"children":2630},{"style":237},[2631],{"type":51,"value":2046},{"type":42,"tag":219,"props":2633,"children":2634},{"style":243},[2635],{"type":51,"value":2636}," value",{"type":42,"tag":219,"props":2638,"children":2639},{"style":237},[2640],{"type":51,"value":1179},{"type":42,"tag":219,"props":2642,"children":2643},{"style":237},[2644],{"type":51,"value":261},{"type":42,"tag":219,"props":2646,"children":2647},{"style":264},[2648],{"type":51,"value":476},{"type":42,"tag":219,"props":2650,"children":2651},{"style":237},[2652],{"type":51,"value":1193},{"type":42,"tag":219,"props":2654,"children":2655},{"style":237},[2656],{"type":51,"value":970},{"type":42,"tag":219,"props":2658,"children":2659},{"style":243},[2660],{"type":51,"value":2636},{"type":42,"tag":219,"props":2662,"children":2663},{"style":237},[2664],{"type":51,"value":960},{"type":42,"tag":219,"props":2666,"children":2667},{"style":243},[2668],{"type":51,"value":1504},{"type":42,"tag":219,"props":2670,"children":2671},{"style":237},[2672],{"type":51,"value":2673}," >",{"type":42,"tag":219,"props":2675,"children":2676},{"style":1453},[2677],{"type":51,"value":2678}," 0",{"type":42,"tag":219,"props":2680,"children":2681},{"style":392},[2682],{"type":51,"value":1329},{"type":42,"tag":219,"props":2684,"children":2686},{"class":221,"line":2685},80,[2687,2691,2695,2699,2703,2707,2711,2715,2719,2723,2728],{"type":42,"tag":219,"props":2688,"children":2689},{"style":226},[2690],{"type":51,"value":1003},{"type":42,"tag":219,"props":2692,"children":2693},{"style":237},[2694],{"type":51,"value":2046},{"type":42,"tag":219,"props":2696,"children":2697},{"style":243},[2698],{"type":51,"value":2589},{"type":42,"tag":219,"props":2700,"children":2701},{"style":237},[2702],{"type":51,"value":1179},{"type":42,"tag":219,"props":2704,"children":2705},{"style":237},[2706],{"type":51,"value":261},{"type":42,"tag":219,"props":2708,"children":2709},{"style":264},[2710],{"type":51,"value":476},{"type":42,"tag":219,"props":2712,"children":2713},{"style":237},[2714],{"type":51,"value":1193},{"type":42,"tag":219,"props":2716,"children":2717},{"style":237},[2718],{"type":51,"value":1509},{"type":42,"tag":219,"props":2720,"children":2721},{"style":243},[2722],{"type":51,"value":2589},{"type":42,"tag":219,"props":2724,"children":2725},{"style":237},[2726],{"type":51,"value":2727}," :",{"type":42,"tag":219,"props":2729,"children":2730},{"style":237},[2731],{"type":51,"value":1826},{"type":42,"tag":219,"props":2733,"children":2735},{"class":221,"line":2734},81,[2736],{"type":42,"tag":219,"props":2737,"children":2738},{"style":237},[2739],{"type":51,"value":1066},{"type":42,"tag":219,"props":2741,"children":2743},{"class":221,"line":2742},82,[2744],{"type":42,"tag":219,"props":2745,"children":2746},{"emptyLinePlaceholder":35},[2747],{"type":51,"value":359},{"type":42,"tag":219,"props":2749,"children":2751},{"class":221,"line":2750},83,[2752,2756,2761,2765,2770,2774,2778,2783,2788],{"type":42,"tag":219,"props":2753,"children":2754},{"style":371},[2755],{"type":51,"value":1781},{"type":42,"tag":219,"props":2757,"children":2758},{"style":392},[2759],{"type":51,"value":2760}," isSessionNotFound",{"type":42,"tag":219,"props":2762,"children":2763},{"style":237},[2764],{"type":51,"value":896},{"type":42,"tag":219,"props":2766,"children":2767},{"style":899},[2768],{"type":51,"value":2769},"res",{"type":42,"tag":219,"props":2771,"children":2772},{"style":237},[2773],{"type":51,"value":206},{"type":42,"tag":219,"props":2775,"children":2776},{"style":377},[2777],{"type":51,"value":525},{"type":42,"tag":219,"props":2779,"children":2780},{"style":237},[2781],{"type":51,"value":2782},"):",{"type":42,"tag":219,"props":2784,"children":2785},{"style":377},[2786],{"type":51,"value":2787}," boolean",{"type":42,"tag":219,"props":2789,"children":2790},{"style":237},[2791],{"type":51,"value":385},{"type":42,"tag":219,"props":2793,"children":2795},{"class":221,"line":2794},84,[2796,2800,2804,2808,2812,2816,2820,2824,2828,2832,2837,2842,2846,2850,2855],{"type":42,"tag":219,"props":2797,"children":2798},{"style":371},[2799],{"type":51,"value":1268},{"type":42,"tag":219,"props":2801,"children":2802},{"style":243},[2803],{"type":51,"value":639},{"type":42,"tag":219,"props":2805,"children":2806},{"style":237},[2807],{"type":51,"value":705},{"type":42,"tag":219,"props":2809,"children":2810},{"style":392},[2811],{"type":51,"value":946},{"type":42,"tag":219,"props":2813,"children":2814},{"style":243},[2815],{"type":51,"value":2769},{"type":42,"tag":219,"props":2817,"children":2818},{"style":237},[2819],{"type":51,"value":960},{"type":42,"tag":219,"props":2821,"children":2822},{"style":243},[2823],{"type":51,"value":984},{"type":42,"tag":219,"props":2825,"children":2826},{"style":237},[2827],{"type":51,"value":2166},{"type":42,"tag":219,"props":2829,"children":2830},{"style":243},[2831],{"type":51,"value":1049},{"type":42,"tag":219,"props":2833,"children":2834},{"style":237},[2835],{"type":51,"value":2836}," ??",{"type":42,"tag":219,"props":2838,"children":2839},{"style":237},[2840],{"type":51,"value":2841}," ''",{"type":42,"tag":219,"props":2843,"children":2844},{"style":392},[2845],{"type":51,"value":1359},{"type":42,"tag":219,"props":2847,"children":2848},{"style":237},[2849],{"type":51,"value":960},{"type":42,"tag":219,"props":2851,"children":2852},{"style":888},[2853],{"type":51,"value":2854},"toLowerCase",{"type":42,"tag":219,"props":2856,"children":2857},{"style":392},[2858],{"type":51,"value":2859},"()\n",{"type":42,"tag":219,"props":2861,"children":2863},{"class":221,"line":2862},85,[2864,2868,2872,2876,2881,2885,2889,2894,2898,2902,2907,2912,2916,2920,2924,2928,2932,2937],{"type":42,"tag":219,"props":2865,"children":2866},{"style":226},[2867],{"type":51,"value":1003},{"type":42,"tag":219,"props":2869,"children":2870},{"style":243},[2871],{"type":51,"value":639},{"type":42,"tag":219,"props":2873,"children":2874},{"style":237},[2875],{"type":51,"value":960},{"type":42,"tag":219,"props":2877,"children":2878},{"style":888},[2879],{"type":51,"value":2880},"includes",{"type":42,"tag":219,"props":2882,"children":2883},{"style":392},[2884],{"type":51,"value":896},{"type":42,"tag":219,"props":2886,"children":2887},{"style":237},[2888],{"type":51,"value":1193},{"type":42,"tag":219,"props":2890,"children":2891},{"style":264},[2892],{"type":51,"value":2893},"session not found",{"type":42,"tag":219,"props":2895,"children":2896},{"style":237},[2897],{"type":51,"value":1193},{"type":42,"tag":219,"props":2899,"children":2900},{"style":392},[2901],{"type":51,"value":989},{"type":42,"tag":219,"props":2903,"children":2904},{"style":237},[2905],{"type":51,"value":2906},"||",{"type":42,"tag":219,"props":2908,"children":2909},{"style":243},[2910],{"type":51,"value":2911}," res",{"type":42,"tag":219,"props":2913,"children":2914},{"style":237},[2915],{"type":51,"value":960},{"type":42,"tag":219,"props":2917,"children":2918},{"style":243},[2919],{"type":51,"value":984},{"type":42,"tag":219,"props":2921,"children":2922},{"style":237},[2923],{"type":51,"value":2166},{"type":42,"tag":219,"props":2925,"children":2926},{"style":243},[2927],{"type":51,"value":75},{"type":42,"tag":219,"props":2929,"children":2930},{"style":237},[2931],{"type":51,"value":1179},{"type":42,"tag":219,"props":2933,"children":2934},{"style":237},[2935],{"type":51,"value":2936}," -",{"type":42,"tag":219,"props":2938,"children":2939},{"style":1453},[2940],{"type":51,"value":2941},"32001\n",{"type":42,"tag":219,"props":2943,"children":2945},{"class":221,"line":2944},86,[2946],{"type":42,"tag":219,"props":2947,"children":2948},{"style":237},[2949],{"type":51,"value":1066},{"type":42,"tag":219,"props":2951,"children":2953},{"class":221,"line":2952},87,[2954],{"type":42,"tag":219,"props":2955,"children":2956},{"emptyLinePlaceholder":35},[2957],{"type":51,"value":359},{"type":42,"tag":219,"props":2959,"children":2961},{"class":221,"line":2960},88,[2962,2966,2971,2976,2981],{"type":42,"tag":219,"props":2963,"children":2964},{"style":371},[2965],{"type":51,"value":1781},{"type":42,"tag":219,"props":2967,"children":2968},{"style":392},[2969],{"type":51,"value":2970}," resetSession",{"type":42,"tag":219,"props":2972,"children":2973},{"style":237},[2974],{"type":51,"value":2975},"():",{"type":42,"tag":219,"props":2977,"children":2978},{"style":377},[2979],{"type":51,"value":2980}," void",{"type":42,"tag":219,"props":2982,"children":2983},{"style":237},[2984],{"type":51,"value":385},{"type":42,"tag":219,"props":2986,"children":2988},{"class":221,"line":2987},89,[2989,2994,2998,3002],{"type":42,"tag":219,"props":2990,"children":2991},{"style":237},[2992],{"type":51,"value":2993},"    this.",{"type":42,"tag":219,"props":2995,"children":2996},{"style":243},[2997],{"type":51,"value":2405},{"type":42,"tag":219,"props":2999,"children":3000},{"style":237},[3001],{"type":51,"value":705},{"type":42,"tag":219,"props":3003,"children":3004},{"style":237},[3005],{"type":51,"value":1826},{"type":42,"tag":219,"props":3007,"children":3009},{"class":221,"line":3008},90,[3010,3014,3019,3023],{"type":42,"tag":219,"props":3011,"children":3012},{"style":237},[3013],{"type":51,"value":2993},{"type":42,"tag":219,"props":3015,"children":3016},{"style":243},[3017],{"type":51,"value":3018},"initialized",{"type":42,"tag":219,"props":3020,"children":3021},{"style":237},[3022],{"type":51,"value":705},{"type":42,"tag":219,"props":3024,"children":3025},{"style":1875},[3026],{"type":51,"value":1878},{"type":42,"tag":219,"props":3028,"children":3030},{"class":221,"line":3029},91,[3031],{"type":42,"tag":219,"props":3032,"children":3033},{"style":237},[3034],{"type":51,"value":1066},{"type":42,"tag":219,"props":3036,"children":3038},{"class":221,"line":3037},92,[3039],{"type":42,"tag":219,"props":3040,"children":3041},{"emptyLinePlaceholder":35},[3042],{"type":51,"value":359},{"type":42,"tag":219,"props":3044,"children":3046},{"class":221,"line":3045},93,[3047,3051,3056,3061],{"type":42,"tag":219,"props":3048,"children":3049},{"style":371},[3050],{"type":51,"value":1781},{"type":42,"tag":219,"props":3052,"children":3053},{"style":371},[3054],{"type":51,"value":3055}," async",{"type":42,"tag":219,"props":3057,"children":3058},{"style":392},[3059],{"type":51,"value":3060}," send",{"type":42,"tag":219,"props":3062,"children":3063},{"style":237},[3064],{"type":51,"value":3065},"(\n",{"type":42,"tag":219,"props":3067,"children":3069},{"class":221,"line":3068},94,[3070,3075,3079,3083],{"type":42,"tag":219,"props":3071,"children":3072},{"style":899},[3073],{"type":51,"value":3074},"    method",{"type":42,"tag":219,"props":3076,"children":3077},{"style":237},[3078],{"type":51,"value":206},{"type":42,"tag":219,"props":3080,"children":3081},{"style":377},[3082],{"type":51,"value":648},{"type":42,"tag":219,"props":3084,"children":3085},{"style":237},[3086],{"type":51,"value":2367},{"type":42,"tag":219,"props":3088,"children":3090},{"class":221,"line":3089},95,[3091,3096,3100,3104,3108,3112,3116,3120],{"type":42,"tag":219,"props":3092,"children":3093},{"style":899},[3094],{"type":51,"value":3095},"    params",{"type":42,"tag":219,"props":3097,"children":3098},{"style":237},[3099],{"type":51,"value":426},{"type":42,"tag":219,"props":3101,"children":3102},{"style":377},[3103],{"type":51,"value":466},{"type":42,"tag":219,"props":3105,"children":3106},{"style":237},[3107],{"type":51,"value":471},{"type":42,"tag":219,"props":3109,"children":3110},{"style":377},[3111],{"type":51,"value":476},{"type":42,"tag":219,"props":3113,"children":3114},{"style":237},[3115],{"type":51,"value":481},{"type":42,"tag":219,"props":3117,"children":3118},{"style":377},[3119],{"type":51,"value":486},{"type":42,"tag":219,"props":3121,"children":3122},{"style":237},[3123],{"type":51,"value":3124},">,\n",{"type":42,"tag":219,"props":3126,"children":3128},{"class":221,"line":3127},96,[3129,3134,3138],{"type":42,"tag":219,"props":3130,"children":3131},{"style":899},[3132],{"type":51,"value":3133},"    allowRetry",{"type":42,"tag":219,"props":3135,"children":3136},{"style":237},[3137],{"type":51,"value":705},{"type":42,"tag":219,"props":3139,"children":3140},{"style":1875},[3141],{"type":51,"value":3142}," true\n",{"type":42,"tag":219,"props":3144,"children":3146},{"class":221,"line":3145},97,[3147,3152,3157,3161,3166,3170],{"type":42,"tag":219,"props":3148,"children":3149},{"style":237},[3150],{"type":51,"value":3151},"  ):",{"type":42,"tag":219,"props":3153,"children":3154},{"style":377},[3155],{"type":51,"value":3156}," Promise",{"type":42,"tag":219,"props":3158,"children":3159},{"style":237},[3160],{"type":51,"value":471},{"type":42,"tag":219,"props":3162,"children":3163},{"style":377},[3164],{"type":51,"value":3165},"JsonRpcResponse",{"type":42,"tag":219,"props":3167,"children":3168},{"style":237},[3169],{"type":51,"value":2123},{"type":42,"tag":219,"props":3171,"children":3172},{"style":237},[3173],{"type":51,"value":385},{"type":42,"tag":219,"props":3175,"children":3177},{"class":221,"line":3176},98,[3178,3182,3187,3191,3195,3199,3203,3208,3212,3216,3220,3224,3228,3233,3237,3242,3246,3251,3256,3261,3265,3269,3274,3278,3283],{"type":42,"tag":219,"props":3179,"children":3180},{"style":371},[3181],{"type":51,"value":1268},{"type":42,"tag":219,"props":3183,"children":3184},{"style":243},[3185],{"type":51,"value":3186}," req",{"type":42,"tag":219,"props":3188,"children":3189},{"style":237},[3190],{"type":51,"value":206},{"type":42,"tag":219,"props":3192,"children":3193},{"style":377},[3194],{"type":51,"value":380},{"type":42,"tag":219,"props":3196,"children":3197},{"style":237},[3198],{"type":51,"value":705},{"type":42,"tag":219,"props":3200,"children":3201},{"style":237},[3202],{"type":51,"value":240},{"type":42,"tag":219,"props":3204,"children":3205},{"style":392},[3206],{"type":51,"value":3207}," jsonrpc",{"type":42,"tag":219,"props":3209,"children":3210},{"style":237},[3211],{"type":51,"value":206},{"type":42,"tag":219,"props":3213,"children":3214},{"style":237},[3215],{"type":51,"value":261},{"type":42,"tag":219,"props":3217,"children":3218},{"style":264},[3219],{"type":51,"value":408},{"type":42,"tag":219,"props":3221,"children":3222},{"style":237},[3223],{"type":51,"value":1193},{"type":42,"tag":219,"props":3225,"children":3226},{"style":237},[3227],{"type":51,"value":481},{"type":42,"tag":219,"props":3229,"children":3230},{"style":392},[3231],{"type":51,"value":3232}," id",{"type":42,"tag":219,"props":3234,"children":3235},{"style":237},[3236],{"type":51,"value":206},{"type":42,"tag":219,"props":3238,"children":3239},{"style":888},[3240],{"type":51,"value":3241}," String",{"type":42,"tag":219,"props":3243,"children":3244},{"style":392},[3245],{"type":51,"value":896},{"type":42,"tag":219,"props":3247,"children":3248},{"style":237},[3249],{"type":51,"value":3250},"this.",{"type":42,"tag":219,"props":3252,"children":3253},{"style":243},[3254],{"type":51,"value":3255},"nextId",{"type":42,"tag":219,"props":3257,"children":3258},{"style":237},[3259],{"type":51,"value":3260},"++",{"type":42,"tag":219,"props":3262,"children":3263},{"style":392},[3264],{"type":51,"value":1359},{"type":42,"tag":219,"props":3266,"children":3267},{"style":237},[3268],{"type":51,"value":481},{"type":42,"tag":219,"props":3270,"children":3271},{"style":243},[3272],{"type":51,"value":3273}," method",{"type":42,"tag":219,"props":3275,"children":3276},{"style":237},[3277],{"type":51,"value":481},{"type":42,"tag":219,"props":3279,"children":3280},{"style":243},[3281],{"type":51,"value":3282}," params",{"type":42,"tag":219,"props":3284,"children":3285},{"style":237},[3286],{"type":51,"value":670},{"type":42,"tag":219,"props":3288,"children":3290},{"class":221,"line":3289},99,[3291,3295,3299,3303,3307,3312,3316,3320,3325],{"type":42,"tag":219,"props":3292,"children":3293},{"style":371},[3294],{"type":51,"value":1268},{"type":42,"tag":219,"props":3296,"children":3297},{"style":243},[3298],{"type":51,"value":1648},{"type":42,"tag":219,"props":3300,"children":3301},{"style":237},[3302],{"type":51,"value":705},{"type":42,"tag":219,"props":3304,"children":3305},{"style":392},[3306],{"type":51,"value":946},{"type":42,"tag":219,"props":3308,"children":3309},{"style":226},[3310],{"type":51,"value":3311},"await",{"type":42,"tag":219,"props":3313,"children":3314},{"style":243},[3315],{"type":51,"value":288},{"type":42,"tag":219,"props":3317,"children":3318},{"style":237},[3319],{"type":51,"value":960},{"type":42,"tag":219,"props":3321,"children":3322},{"style":888},[3323],{"type":51,"value":3324},"mcp_m365copilot",{"type":42,"tag":219,"props":3326,"children":3327},{"style":392},[3328],{"type":51,"value":3065},{"type":42,"tag":219,"props":3330,"children":3332},{"class":221,"line":3331},100,[3333,3338,3342],{"type":42,"tag":219,"props":3334,"children":3335},{"style":237},[3336],{"type":51,"value":3337},"      this.",{"type":42,"tag":219,"props":3339,"children":3340},{"style":243},[3341],{"type":51,"value":2405},{"type":42,"tag":219,"props":3343,"children":3344},{"style":237},[3345],{"type":51,"value":2367},{"type":42,"tag":219,"props":3347,"children":3349},{"class":221,"line":3348},101,[3350,3355,3359],{"type":42,"tag":219,"props":3351,"children":3352},{"style":243},[3353],{"type":51,"value":3354},"      req",{"type":42,"tag":219,"props":3356,"children":3357},{"style":226},[3358],{"type":51,"value":1210},{"type":42,"tag":219,"props":3360,"children":3361},{"style":377},[3362],{"type":51,"value":3363}," QueryRequest\n",{"type":42,"tag":219,"props":3365,"children":3367},{"class":221,"line":3366},102,[3368,3373,3377,3381,3385,3389,3393,3397],{"type":42,"tag":219,"props":3369,"children":3370},{"style":392},[3371],{"type":51,"value":3372},"    )) ",{"type":42,"tag":219,"props":3374,"children":3375},{"style":226},[3376],{"type":51,"value":1597},{"type":42,"tag":219,"props":3378,"children":3379},{"style":377},[3380],{"type":51,"value":486},{"type":42,"tag":219,"props":3382,"children":3383},{"style":226},[3384],{"type":51,"value":1210},{"type":42,"tag":219,"props":3386,"children":3387},{"style":377},[3388],{"type":51,"value":246},{"type":42,"tag":219,"props":3390,"children":3391},{"style":237},[3392],{"type":51,"value":471},{"type":42,"tag":219,"props":3394,"children":3395},{"style":377},[3396],{"type":51,"value":919},{"type":42,"tag":219,"props":3398,"children":3399},{"style":237},[3400],{"type":51,"value":491},{"type":42,"tag":219,"props":3402,"children":3404},{"class":221,"line":3403},103,[3405],{"type":42,"tag":219,"props":3406,"children":3407},{"emptyLinePlaceholder":35},[3408],{"type":51,"value":359},{"type":42,"tag":219,"props":3410,"children":3412},{"class":221,"line":3411},104,[3413,3417,3422,3426,3431,3436,3440,3444],{"type":42,"tag":219,"props":3414,"children":3415},{"style":371},[3416],{"type":51,"value":1268},{"type":42,"tag":219,"props":3418,"children":3419},{"style":243},[3420],{"type":51,"value":3421}," negotiatedSessionId",{"type":42,"tag":219,"props":3423,"children":3424},{"style":237},[3425],{"type":51,"value":705},{"type":42,"tag":219,"props":3427,"children":3428},{"style":237},[3429],{"type":51,"value":3430}," this.",{"type":42,"tag":219,"props":3432,"children":3433},{"style":888},[3434],{"type":51,"value":3435},"extractSessionId",{"type":42,"tag":219,"props":3437,"children":3438},{"style":392},[3439],{"type":51,"value":896},{"type":42,"tag":219,"props":3441,"children":3442},{"style":243},[3443],{"type":51,"value":1908},{"type":42,"tag":219,"props":3445,"children":3446},{"style":392},[3447],{"type":51,"value":1329},{"type":42,"tag":219,"props":3449,"children":3451},{"class":221,"line":3450},105,[3452,3457,3461,3466,3470],{"type":42,"tag":219,"props":3453,"children":3454},{"style":226},[3455],{"type":51,"value":3456},"    if",{"type":42,"tag":219,"props":3458,"children":3459},{"style":392},[3460],{"type":51,"value":946},{"type":42,"tag":219,"props":3462,"children":3463},{"style":243},[3464],{"type":51,"value":3465},"negotiatedSessionId",{"type":42,"tag":219,"props":3467,"children":3468},{"style":392},[3469],{"type":51,"value":989},{"type":42,"tag":219,"props":3471,"children":3472},{"style":237},[3473],{"type":51,"value":994},{"type":42,"tag":219,"props":3475,"children":3477},{"class":221,"line":3476},106,[3478,3482,3486,3490],{"type":42,"tag":219,"props":3479,"children":3480},{"style":237},[3481],{"type":51,"value":3337},{"type":42,"tag":219,"props":3483,"children":3484},{"style":243},[3485],{"type":51,"value":2405},{"type":42,"tag":219,"props":3487,"children":3488},{"style":237},[3489],{"type":51,"value":705},{"type":42,"tag":219,"props":3491,"children":3492},{"style":243},[3493],{"type":51,"value":3494}," negotiatedSessionId\n",{"type":42,"tag":219,"props":3496,"children":3498},{"class":221,"line":3497},107,[3499],{"type":42,"tag":219,"props":3500,"children":3501},{"style":237},[3502],{"type":51,"value":1673},{"type":42,"tag":219,"props":3504,"children":3506},{"class":221,"line":3505},108,[3507],{"type":42,"tag":219,"props":3508,"children":3509},{"emptyLinePlaceholder":35},[3510],{"type":51,"value":359},{"type":42,"tag":219,"props":3512,"children":3514},{"class":221,"line":3513},109,[3515,3519,3524,3528,3532,3536,3540],{"type":42,"tag":219,"props":3516,"children":3517},{"style":371},[3518],{"type":51,"value":1268},{"type":42,"tag":219,"props":3520,"children":3521},{"style":243},[3522],{"type":51,"value":3523}," parsed",{"type":42,"tag":219,"props":3525,"children":3526},{"style":237},[3527],{"type":51,"value":705},{"type":42,"tag":219,"props":3529,"children":3530},{"style":888},[3531],{"type":51,"value":891},{"type":42,"tag":219,"props":3533,"children":3534},{"style":392},[3535],{"type":51,"value":896},{"type":42,"tag":219,"props":3537,"children":3538},{"style":243},[3539],{"type":51,"value":1908},{"type":42,"tag":219,"props":3541,"children":3542},{"style":392},[3543],{"type":51,"value":1329},{"type":42,"tag":219,"props":3545,"children":3547},{"class":221,"line":3546},110,[3548],{"type":42,"tag":219,"props":3549,"children":3550},{"emptyLinePlaceholder":35},[3551],{"type":51,"value":359},{"type":42,"tag":219,"props":3553,"children":3555},{"class":221,"line":3554},111,[3556,3560,3564,3569,3573,3577,3582,3586,3591,3595,3599,3603,3608,3612,3617,3622],{"type":42,"tag":219,"props":3557,"children":3558},{"style":226},[3559],{"type":51,"value":3456},{"type":42,"tag":219,"props":3561,"children":3562},{"style":392},[3563],{"type":51,"value":946},{"type":42,"tag":219,"props":3565,"children":3566},{"style":243},[3567],{"type":51,"value":3568},"allowRetry",{"type":42,"tag":219,"props":3570,"children":3571},{"style":237},[3572],{"type":51,"value":970},{"type":42,"tag":219,"props":3574,"children":3575},{"style":243},[3576],{"type":51,"value":3273},{"type":42,"tag":219,"props":3578,"children":3579},{"style":237},[3580],{"type":51,"value":3581}," !==",{"type":42,"tag":219,"props":3583,"children":3584},{"style":237},[3585],{"type":51,"value":261},{"type":42,"tag":219,"props":3587,"children":3588},{"style":264},[3589],{"type":51,"value":3590},"initialize",{"type":42,"tag":219,"props":3592,"children":3593},{"style":237},[3594],{"type":51,"value":1193},{"type":42,"tag":219,"props":3596,"children":3597},{"style":237},[3598],{"type":51,"value":970},{"type":42,"tag":219,"props":3600,"children":3601},{"style":237},[3602],{"type":51,"value":3430},{"type":42,"tag":219,"props":3604,"children":3605},{"style":888},[3606],{"type":51,"value":3607},"isSessionNotFound",{"type":42,"tag":219,"props":3609,"children":3610},{"style":392},[3611],{"type":51,"value":896},{"type":42,"tag":219,"props":3613,"children":3614},{"style":243},[3615],{"type":51,"value":3616},"parsed",{"type":42,"tag":219,"props":3618,"children":3619},{"style":392},[3620],{"type":51,"value":3621},")) ",{"type":42,"tag":219,"props":3623,"children":3624},{"style":237},[3625],{"type":51,"value":994},{"type":42,"tag":219,"props":3627,"children":3629},{"class":221,"line":3628},112,[3630,3634,3639],{"type":42,"tag":219,"props":3631,"children":3632},{"style":237},[3633],{"type":51,"value":3337},{"type":42,"tag":219,"props":3635,"children":3636},{"style":888},[3637],{"type":51,"value":3638},"resetSession",{"type":42,"tag":219,"props":3640,"children":3641},{"style":392},[3642],{"type":51,"value":2859},{"type":42,"tag":219,"props":3644,"children":3646},{"class":221,"line":3645},113,[3647,3652,3656,3660],{"type":42,"tag":219,"props":3648,"children":3649},{"style":226},[3650],{"type":51,"value":3651},"      await",{"type":42,"tag":219,"props":3653,"children":3654},{"style":237},[3655],{"type":51,"value":3430},{"type":42,"tag":219,"props":3657,"children":3658},{"style":888},[3659],{"type":51,"value":3590},{"type":42,"tag":219,"props":3661,"children":3662},{"style":392},[3663],{"type":51,"value":2859},{"type":42,"tag":219,"props":3665,"children":3667},{"class":221,"line":3666},114,[3668,3672,3676,3681,3685,3690,3694,3698,3702,3707],{"type":42,"tag":219,"props":3669,"children":3670},{"style":226},[3671],{"type":51,"value":1565},{"type":42,"tag":219,"props":3673,"children":3674},{"style":237},[3675],{"type":51,"value":3430},{"type":42,"tag":219,"props":3677,"children":3678},{"style":888},[3679],{"type":51,"value":3680},"send",{"type":42,"tag":219,"props":3682,"children":3683},{"style":392},[3684],{"type":51,"value":896},{"type":42,"tag":219,"props":3686,"children":3687},{"style":243},[3688],{"type":51,"value":3689},"method",{"type":42,"tag":219,"props":3691,"children":3692},{"style":237},[3693],{"type":51,"value":481},{"type":42,"tag":219,"props":3695,"children":3696},{"style":243},[3697],{"type":51,"value":3282},{"type":42,"tag":219,"props":3699,"children":3700},{"style":237},[3701],{"type":51,"value":481},{"type":42,"tag":219,"props":3703,"children":3704},{"style":1875},[3705],{"type":51,"value":3706}," false",{"type":42,"tag":219,"props":3708,"children":3709},{"style":392},[3710],{"type":51,"value":1329},{"type":42,"tag":219,"props":3712,"children":3714},{"class":221,"line":3713},115,[3715],{"type":42,"tag":219,"props":3716,"children":3717},{"style":237},[3718],{"type":51,"value":1673},{"type":42,"tag":219,"props":3720,"children":3722},{"class":221,"line":3721},116,[3723],{"type":42,"tag":219,"props":3724,"children":3725},{"emptyLinePlaceholder":35},[3726],{"type":51,"value":359},{"type":42,"tag":219,"props":3728,"children":3730},{"class":221,"line":3729},117,[3731,3735],{"type":42,"tag":219,"props":3732,"children":3733},{"style":226},[3734],{"type":51,"value":1003},{"type":42,"tag":219,"props":3736,"children":3737},{"style":243},[3738],{"type":51,"value":3739}," parsed\n",{"type":42,"tag":219,"props":3741,"children":3743},{"class":221,"line":3742},118,[3744],{"type":42,"tag":219,"props":3745,"children":3746},{"style":237},[3747],{"type":51,"value":1066},{"type":42,"tag":219,"props":3749,"children":3751},{"class":221,"line":3750},119,[3752],{"type":42,"tag":219,"props":3753,"children":3754},{"emptyLinePlaceholder":35},[3755],{"type":51,"value":359},{"type":42,"tag":219,"props":3757,"children":3759},{"class":221,"line":3758},120,[3760,3765,3770,3774,3778,3782,3786,3790],{"type":42,"tag":219,"props":3761,"children":3762},{"style":371},[3763],{"type":51,"value":3764},"  async",{"type":42,"tag":219,"props":3766,"children":3767},{"style":392},[3768],{"type":51,"value":3769}," initialize",{"type":42,"tag":219,"props":3771,"children":3772},{"style":237},[3773],{"type":51,"value":2975},{"type":42,"tag":219,"props":3775,"children":3776},{"style":377},[3777],{"type":51,"value":3156},{"type":42,"tag":219,"props":3779,"children":3780},{"style":237},[3781],{"type":51,"value":471},{"type":42,"tag":219,"props":3783,"children":3784},{"style":377},[3785],{"type":51,"value":3165},{"type":42,"tag":219,"props":3787,"children":3788},{"style":237},[3789],{"type":51,"value":2123},{"type":42,"tag":219,"props":3791,"children":3792},{"style":237},[3793],{"type":51,"value":385},{"type":42,"tag":219,"props":3795,"children":3797},{"class":221,"line":3796},121,[3798,3802,3806,3810,3815,3819,3823,3827,3831,3835,3839,3843],{"type":42,"tag":219,"props":3799,"children":3800},{"style":371},[3801],{"type":51,"value":1268},{"type":42,"tag":219,"props":3803,"children":3804},{"style":243},[3805],{"type":51,"value":2911},{"type":42,"tag":219,"props":3807,"children":3808},{"style":237},[3809],{"type":51,"value":705},{"type":42,"tag":219,"props":3811,"children":3812},{"style":226},[3813],{"type":51,"value":3814}," await",{"type":42,"tag":219,"props":3816,"children":3817},{"style":237},[3818],{"type":51,"value":3430},{"type":42,"tag":219,"props":3820,"children":3821},{"style":888},[3822],{"type":51,"value":3680},{"type":42,"tag":219,"props":3824,"children":3825},{"style":392},[3826],{"type":51,"value":896},{"type":42,"tag":219,"props":3828,"children":3829},{"style":237},[3830],{"type":51,"value":1193},{"type":42,"tag":219,"props":3832,"children":3833},{"style":264},[3834],{"type":51,"value":3590},{"type":42,"tag":219,"props":3836,"children":3837},{"style":237},[3838],{"type":51,"value":1193},{"type":42,"tag":219,"props":3840,"children":3841},{"style":237},[3842],{"type":51,"value":481},{"type":42,"tag":219,"props":3844,"children":3845},{"style":237},[3846],{"type":51,"value":385},{"type":42,"tag":219,"props":3848,"children":3850},{"class":221,"line":3849},122,[3851,3856,3860,3864,3869,3873],{"type":42,"tag":219,"props":3852,"children":3853},{"style":392},[3854],{"type":51,"value":3855},"      protocolVersion",{"type":42,"tag":219,"props":3857,"children":3858},{"style":237},[3859],{"type":51,"value":206},{"type":42,"tag":219,"props":3861,"children":3862},{"style":237},[3863],{"type":51,"value":261},{"type":42,"tag":219,"props":3865,"children":3866},{"style":264},[3867],{"type":51,"value":3868},"2025-06-18",{"type":42,"tag":219,"props":3870,"children":3871},{"style":237},[3872],{"type":51,"value":1193},{"type":42,"tag":219,"props":3874,"children":3875},{"style":237},[3876],{"type":51,"value":2367},{"type":42,"tag":219,"props":3878,"children":3880},{"class":221,"line":3879},123,[3881,3886,3890],{"type":42,"tag":219,"props":3882,"children":3883},{"style":392},[3884],{"type":51,"value":3885},"      capabilities",{"type":42,"tag":219,"props":3887,"children":3888},{"style":237},[3889],{"type":51,"value":206},{"type":42,"tag":219,"props":3891,"children":3892},{"style":237},[3893],{"type":51,"value":3894}," {},\n",{"type":42,"tag":219,"props":3896,"children":3898},{"class":221,"line":3897},124,[3899,3904,3908,3912,3917,3921,3925,3930,3934,3938,3943,3947,3951,3956,3960],{"type":42,"tag":219,"props":3900,"children":3901},{"style":392},[3902],{"type":51,"value":3903},"      clientInfo",{"type":42,"tag":219,"props":3905,"children":3906},{"style":237},[3907],{"type":51,"value":206},{"type":42,"tag":219,"props":3909,"children":3910},{"style":237},[3911],{"type":51,"value":240},{"type":42,"tag":219,"props":3913,"children":3914},{"style":392},[3915],{"type":51,"value":3916}," name",{"type":42,"tag":219,"props":3918,"children":3919},{"style":237},[3920],{"type":51,"value":206},{"type":42,"tag":219,"props":3922,"children":3923},{"style":237},[3924],{"type":51,"value":261},{"type":42,"tag":219,"props":3926,"children":3927},{"style":264},[3928],{"type":51,"value":3929},"Custom App",{"type":42,"tag":219,"props":3931,"children":3932},{"style":237},[3933],{"type":51,"value":1193},{"type":42,"tag":219,"props":3935,"children":3936},{"style":237},[3937],{"type":51,"value":481},{"type":42,"tag":219,"props":3939,"children":3940},{"style":392},[3941],{"type":51,"value":3942}," version",{"type":42,"tag":219,"props":3944,"children":3945},{"style":237},[3946],{"type":51,"value":206},{"type":42,"tag":219,"props":3948,"children":3949},{"style":237},[3950],{"type":51,"value":261},{"type":42,"tag":219,"props":3952,"children":3953},{"style":264},[3954],{"type":51,"value":3955},"1.0.0",{"type":42,"tag":219,"props":3957,"children":3958},{"style":237},[3959],{"type":51,"value":1193},{"type":42,"tag":219,"props":3961,"children":3962},{"style":237},[3963],{"type":51,"value":3964}," },\n",{"type":42,"tag":219,"props":3966,"children":3968},{"class":221,"line":3967},125,[3969,3973],{"type":42,"tag":219,"props":3970,"children":3971},{"style":237},[3972],{"type":51,"value":1610},{"type":42,"tag":219,"props":3974,"children":3975},{"style":392},[3976],{"type":51,"value":1329},{"type":42,"tag":219,"props":3978,"children":3980},{"class":221,"line":3979},126,[3981,3985,3989,3993,3998,4002,4006],{"type":42,"tag":219,"props":3982,"children":3983},{"style":237},[3984],{"type":51,"value":2993},{"type":42,"tag":219,"props":3986,"children":3987},{"style":243},[3988],{"type":51,"value":3018},{"type":42,"tag":219,"props":3990,"children":3991},{"style":237},[3992],{"type":51,"value":705},{"type":42,"tag":219,"props":3994,"children":3995},{"style":237},[3996],{"type":51,"value":3997}," !",{"type":42,"tag":219,"props":3999,"children":4000},{"style":243},[4001],{"type":51,"value":2769},{"type":42,"tag":219,"props":4003,"children":4004},{"style":237},[4005],{"type":51,"value":960},{"type":42,"tag":219,"props":4007,"children":4008},{"style":243},[4009],{"type":51,"value":4010},"error\n",{"type":42,"tag":219,"props":4012,"children":4014},{"class":221,"line":4013},127,[4015,4019],{"type":42,"tag":219,"props":4016,"children":4017},{"style":226},[4018],{"type":51,"value":1003},{"type":42,"tag":219,"props":4020,"children":4021},{"style":243},[4022],{"type":51,"value":4023}," res\n",{"type":42,"tag":219,"props":4025,"children":4027},{"class":221,"line":4026},128,[4028],{"type":42,"tag":219,"props":4029,"children":4030},{"style":237},[4031],{"type":51,"value":1066},{"type":42,"tag":219,"props":4033,"children":4035},{"class":221,"line":4034},129,[4036],{"type":42,"tag":219,"props":4037,"children":4038},{"emptyLinePlaceholder":35},[4039],{"type":51,"value":359},{"type":42,"tag":219,"props":4041,"children":4043},{"class":221,"line":4042},130,[4044,4048,4053,4057,4061,4065,4069,4073,4077,4081,4086,4090,4094,4098,4102,4106,4110,4115],{"type":42,"tag":219,"props":4045,"children":4046},{"style":371},[4047],{"type":51,"value":3764},{"type":42,"tag":219,"props":4049,"children":4050},{"style":392},[4051],{"type":51,"value":4052}," callCopilotChat",{"type":42,"tag":219,"props":4054,"children":4055},{"style":237},[4056],{"type":51,"value":896},{"type":42,"tag":219,"props":4058,"children":4059},{"style":899},[4060],{"type":51,"value":1049},{"type":42,"tag":219,"props":4062,"children":4063},{"style":237},[4064],{"type":51,"value":206},{"type":42,"tag":219,"props":4066,"children":4067},{"style":377},[4068],{"type":51,"value":648},{"type":42,"tag":219,"props":4070,"children":4071},{"style":237},[4072],{"type":51,"value":2782},{"type":42,"tag":219,"props":4074,"children":4075},{"style":377},[4076],{"type":51,"value":3156},{"type":42,"tag":219,"props":4078,"children":4079},{"style":237},[4080],{"type":51,"value":749},{"type":42,"tag":219,"props":4082,"children":4083},{"style":392},[4084],{"type":51,"value":4085}," text",{"type":42,"tag":219,"props":4087,"children":4088},{"style":237},[4089],{"type":51,"value":206},{"type":42,"tag":219,"props":4091,"children":4092},{"style":377},[4093],{"type":51,"value":648},{"type":42,"tag":219,"props":4095,"children":4096},{"style":237},[4097],{"type":51,"value":634},{"type":42,"tag":219,"props":4099,"children":4100},{"style":392},[4101],{"type":51,"value":1839},{"type":42,"tag":219,"props":4103,"children":4104},{"style":237},[4105],{"type":51,"value":426},{"type":42,"tag":219,"props":4107,"children":4108},{"style":377},[4109],{"type":51,"value":648},{"type":42,"tag":219,"props":4111,"children":4112},{"style":237},[4113],{"type":51,"value":4114}," }>",{"type":42,"tag":219,"props":4116,"children":4117},{"style":237},[4118],{"type":51,"value":385},{"type":42,"tag":219,"props":4120,"children":4122},{"class":221,"line":4121},131,[4123,4127,4131,4136,4140,4144,4148,4152,4156],{"type":42,"tag":219,"props":4124,"children":4125},{"style":226},[4126],{"type":51,"value":3456},{"type":42,"tag":219,"props":4128,"children":4129},{"style":392},[4130],{"type":51,"value":946},{"type":42,"tag":219,"props":4132,"children":4133},{"style":237},[4134],{"type":51,"value":4135},"!this.",{"type":42,"tag":219,"props":4137,"children":4138},{"style":243},[4139],{"type":51,"value":3018},{"type":42,"tag":219,"props":4141,"children":4142},{"style":392},[4143],{"type":51,"value":989},{"type":42,"tag":219,"props":4145,"children":4146},{"style":226},[4147],{"type":51,"value":3311},{"type":42,"tag":219,"props":4149,"children":4150},{"style":237},[4151],{"type":51,"value":3430},{"type":42,"tag":219,"props":4153,"children":4154},{"style":888},[4155],{"type":51,"value":3590},{"type":42,"tag":219,"props":4157,"children":4158},{"style":392},[4159],{"type":51,"value":2859},{"type":42,"tag":219,"props":4161,"children":4163},{"class":221,"line":4162},132,[4164,4168,4172,4176,4180,4184,4188,4192,4196,4201,4205,4209],{"type":42,"tag":219,"props":4165,"children":4166},{"style":371},[4167],{"type":51,"value":1268},{"type":42,"tag":219,"props":4169,"children":4170},{"style":243},[4171],{"type":51,"value":1648},{"type":42,"tag":219,"props":4173,"children":4174},{"style":237},[4175],{"type":51,"value":705},{"type":42,"tag":219,"props":4177,"children":4178},{"style":226},[4179],{"type":51,"value":3814},{"type":42,"tag":219,"props":4181,"children":4182},{"style":237},[4183],{"type":51,"value":3430},{"type":42,"tag":219,"props":4185,"children":4186},{"style":888},[4187],{"type":51,"value":3680},{"type":42,"tag":219,"props":4189,"children":4190},{"style":392},[4191],{"type":51,"value":896},{"type":42,"tag":219,"props":4193,"children":4194},{"style":237},[4195],{"type":51,"value":1193},{"type":42,"tag":219,"props":4197,"children":4198},{"style":264},[4199],{"type":51,"value":4200},"tools\u002Fcall",{"type":42,"tag":219,"props":4202,"children":4203},{"style":237},[4204],{"type":51,"value":1193},{"type":42,"tag":219,"props":4206,"children":4207},{"style":237},[4208],{"type":51,"value":481},{"type":42,"tag":219,"props":4210,"children":4211},{"style":237},[4212],{"type":51,"value":385},{"type":42,"tag":219,"props":4214,"children":4216},{"class":221,"line":4215},133,[4217,4222,4226,4230,4235,4239],{"type":42,"tag":219,"props":4218,"children":4219},{"style":392},[4220],{"type":51,"value":4221},"      name",{"type":42,"tag":219,"props":4223,"children":4224},{"style":237},[4225],{"type":51,"value":206},{"type":42,"tag":219,"props":4227,"children":4228},{"style":237},[4229],{"type":51,"value":261},{"type":42,"tag":219,"props":4231,"children":4232},{"style":264},[4233],{"type":51,"value":4234},"CopilotChat",{"type":42,"tag":219,"props":4236,"children":4237},{"style":237},[4238],{"type":51,"value":1193},{"type":42,"tag":219,"props":4240,"children":4241},{"style":237},[4242],{"type":51,"value":2367},{"type":42,"tag":219,"props":4244,"children":4246},{"class":221,"line":4245},134,[4247,4252,4256],{"type":42,"tag":219,"props":4248,"children":4249},{"style":392},[4250],{"type":51,"value":4251},"      arguments",{"type":42,"tag":219,"props":4253,"children":4254},{"style":237},[4255],{"type":51,"value":206},{"type":42,"tag":219,"props":4257,"children":4258},{"style":237},[4259],{"type":51,"value":385},{"type":42,"tag":219,"props":4261,"children":4263},{"class":221,"line":4262},135,[4264,4269],{"type":42,"tag":219,"props":4265,"children":4266},{"style":243},[4267],{"type":51,"value":4268},"        message",{"type":42,"tag":219,"props":4270,"children":4271},{"style":237},[4272],{"type":51,"value":2367},{"type":42,"tag":219,"props":4274,"children":4276},{"class":221,"line":4275},136,[4277,4282,4286,4290,4295,4299,4303,4307,4311,4315,4319,4323,4327,4332,4336],{"type":42,"tag":219,"props":4278,"children":4279},{"style":237},[4280],{"type":51,"value":4281},"        ...",{"type":42,"tag":219,"props":4283,"children":4284},{"style":392},[4285],{"type":51,"value":896},{"type":42,"tag":219,"props":4287,"children":4288},{"style":237},[4289],{"type":51,"value":3250},{"type":42,"tag":219,"props":4291,"children":4292},{"style":243},[4293],{"type":51,"value":4294},"conversationId",{"type":42,"tag":219,"props":4296,"children":4297},{"style":237},[4298],{"type":51,"value":1509},{"type":42,"tag":219,"props":4300,"children":4301},{"style":237},[4302],{"type":51,"value":240},{"type":42,"tag":219,"props":4304,"children":4305},{"style":392},[4306],{"type":51,"value":1839},{"type":42,"tag":219,"props":4308,"children":4309},{"style":237},[4310],{"type":51,"value":206},{"type":42,"tag":219,"props":4312,"children":4313},{"style":237},[4314],{"type":51,"value":3430},{"type":42,"tag":219,"props":4316,"children":4317},{"style":243},[4318],{"type":51,"value":4294},{"type":42,"tag":219,"props":4320,"children":4321},{"style":237},[4322],{"type":51,"value":251},{"type":42,"tag":219,"props":4324,"children":4325},{"style":237},[4326],{"type":51,"value":2727},{"type":42,"tag":219,"props":4328,"children":4329},{"style":237},[4330],{"type":51,"value":4331}," {}",{"type":42,"tag":219,"props":4333,"children":4334},{"style":392},[4335],{"type":51,"value":1359},{"type":42,"tag":219,"props":4337,"children":4338},{"style":237},[4339],{"type":51,"value":2367},{"type":42,"tag":219,"props":4341,"children":4343},{"class":221,"line":4342},137,[4344],{"type":42,"tag":219,"props":4345,"children":4346},{"style":237},[4347],{"type":51,"value":4348},"      },\n",{"type":42,"tag":219,"props":4350,"children":4352},{"class":221,"line":4351},138,[4353,4357],{"type":42,"tag":219,"props":4354,"children":4355},{"style":237},[4356],{"type":51,"value":1610},{"type":42,"tag":219,"props":4358,"children":4359},{"style":392},[4360],{"type":51,"value":1329},{"type":42,"tag":219,"props":4362,"children":4364},{"class":221,"line":4363},139,[4365],{"type":42,"tag":219,"props":4366,"children":4367},{"emptyLinePlaceholder":35},[4368],{"type":51,"value":359},{"type":42,"tag":219,"props":4370,"children":4372},{"class":221,"line":4371},140,[4373,4377,4381,4385,4390,4394,4398],{"type":42,"tag":219,"props":4374,"children":4375},{"style":371},[4376],{"type":51,"value":1268},{"type":42,"tag":219,"props":4378,"children":4379},{"style":243},[4380],{"type":51,"value":3523},{"type":42,"tag":219,"props":4382,"children":4383},{"style":237},[4384],{"type":51,"value":705},{"type":42,"tag":219,"props":4386,"children":4387},{"style":888},[4388],{"type":51,"value":4389}," extractCopilotText",{"type":42,"tag":219,"props":4391,"children":4392},{"style":392},[4393],{"type":51,"value":896},{"type":42,"tag":219,"props":4395,"children":4396},{"style":243},[4397],{"type":51,"value":1908},{"type":42,"tag":219,"props":4399,"children":4400},{"style":392},[4401],{"type":51,"value":1329},{"type":42,"tag":219,"props":4403,"children":4405},{"class":221,"line":4404},141,[4406,4410,4414,4418,4422,4426,4430],{"type":42,"tag":219,"props":4407,"children":4408},{"style":226},[4409],{"type":51,"value":3456},{"type":42,"tag":219,"props":4411,"children":4412},{"style":392},[4413],{"type":51,"value":946},{"type":42,"tag":219,"props":4415,"children":4416},{"style":243},[4417],{"type":51,"value":3616},{"type":42,"tag":219,"props":4419,"children":4420},{"style":237},[4421],{"type":51,"value":960},{"type":42,"tag":219,"props":4423,"children":4424},{"style":243},[4425],{"type":51,"value":4294},{"type":42,"tag":219,"props":4427,"children":4428},{"style":392},[4429],{"type":51,"value":989},{"type":42,"tag":219,"props":4431,"children":4432},{"style":237},[4433],{"type":51,"value":994},{"type":42,"tag":219,"props":4435,"children":4437},{"class":221,"line":4436},142,[4438,4442,4446,4450,4454,4458],{"type":42,"tag":219,"props":4439,"children":4440},{"style":237},[4441],{"type":51,"value":3337},{"type":42,"tag":219,"props":4443,"children":4444},{"style":243},[4445],{"type":51,"value":4294},{"type":42,"tag":219,"props":4447,"children":4448},{"style":237},[4449],{"type":51,"value":705},{"type":42,"tag":219,"props":4451,"children":4452},{"style":243},[4453],{"type":51,"value":3523},{"type":42,"tag":219,"props":4455,"children":4456},{"style":237},[4457],{"type":51,"value":960},{"type":42,"tag":219,"props":4459,"children":4460},{"style":243},[4461],{"type":51,"value":4462},"conversationId\n",{"type":42,"tag":219,"props":4464,"children":4466},{"class":221,"line":4465},143,[4467],{"type":42,"tag":219,"props":4468,"children":4469},{"style":237},[4470],{"type":51,"value":1673},{"type":42,"tag":219,"props":4472,"children":4474},{"class":221,"line":4473},144,[4475],{"type":42,"tag":219,"props":4476,"children":4477},{"emptyLinePlaceholder":35},[4478],{"type":51,"value":359},{"type":42,"tag":219,"props":4480,"children":4482},{"class":221,"line":4481},145,[4483,4487,4491,4495,4499,4503,4507,4511,4515,4519,4523,4527,4531,4535],{"type":42,"tag":219,"props":4484,"children":4485},{"style":226},[4486],{"type":51,"value":1003},{"type":42,"tag":219,"props":4488,"children":4489},{"style":237},[4490],{"type":51,"value":240},{"type":42,"tag":219,"props":4492,"children":4493},{"style":392},[4494],{"type":51,"value":4085},{"type":42,"tag":219,"props":4496,"children":4497},{"style":237},[4498],{"type":51,"value":206},{"type":42,"tag":219,"props":4500,"children":4501},{"style":243},[4502],{"type":51,"value":3523},{"type":42,"tag":219,"props":4504,"children":4505},{"style":237},[4506],{"type":51,"value":960},{"type":42,"tag":219,"props":4508,"children":4509},{"style":243},[4510],{"type":51,"value":51},{"type":42,"tag":219,"props":4512,"children":4513},{"style":237},[4514],{"type":51,"value":481},{"type":42,"tag":219,"props":4516,"children":4517},{"style":392},[4518],{"type":51,"value":1839},{"type":42,"tag":219,"props":4520,"children":4521},{"style":237},[4522],{"type":51,"value":206},{"type":42,"tag":219,"props":4524,"children":4525},{"style":243},[4526],{"type":51,"value":3523},{"type":42,"tag":219,"props":4528,"children":4529},{"style":237},[4530],{"type":51,"value":960},{"type":42,"tag":219,"props":4532,"children":4533},{"style":243},[4534],{"type":51,"value":4294},{"type":42,"tag":219,"props":4536,"children":4537},{"style":237},[4538],{"type":51,"value":670},{"type":42,"tag":219,"props":4540,"children":4542},{"class":221,"line":4541},146,[4543],{"type":42,"tag":219,"props":4544,"children":4545},{"style":237},[4546],{"type":51,"value":1066},{"type":42,"tag":219,"props":4548,"children":4550},{"class":221,"line":4549},147,[4551],{"type":42,"tag":219,"props":4552,"children":4553},{"style":237},[4554],{"type":51,"value":500},{"type":42,"tag":219,"props":4556,"children":4558},{"class":221,"line":4557},148,[4559],{"type":42,"tag":219,"props":4560,"children":4561},{"emptyLinePlaceholder":35},[4562],{"type":51,"value":359},{"type":42,"tag":219,"props":4564,"children":4566},{"class":221,"line":4565},149,[4567,4571,4576,4580,4584,4588,4592,4596,4600,4604,4608],{"type":42,"tag":219,"props":4568,"children":4569},{"style":371},[4570],{"type":51,"value":885},{"type":42,"tag":219,"props":4572,"children":4573},{"style":888},[4574],{"type":51,"value":4575}," extractContentText",{"type":42,"tag":219,"props":4577,"children":4578},{"style":237},[4579],{"type":51,"value":896},{"type":42,"tag":219,"props":4581,"children":4582},{"style":899},[4583],{"type":51,"value":2769},{"type":42,"tag":219,"props":4585,"children":4586},{"style":237},[4587],{"type":51,"value":206},{"type":42,"tag":219,"props":4589,"children":4590},{"style":377},[4591],{"type":51,"value":525},{"type":42,"tag":219,"props":4593,"children":4594},{"style":237},[4595],{"type":51,"value":2782},{"type":42,"tag":219,"props":4597,"children":4598},{"style":377},[4599],{"type":51,"value":648},{"type":42,"tag":219,"props":4601,"children":4602},{"style":237},[4603],{"type":51,"value":1821},{"type":42,"tag":219,"props":4605,"children":4606},{"style":377},[4607],{"type":51,"value":1941},{"type":42,"tag":219,"props":4609,"children":4610},{"style":237},[4611],{"type":51,"value":385},{"type":42,"tag":219,"props":4613,"children":4615},{"class":221,"line":4614},150,[4616,4620,4625,4629,4633,4637,4641,4645,4650,4654,4658,4662,4666,4670,4674,4678,4682,4686,4690,4694,4698],{"type":42,"tag":219,"props":4617,"children":4618},{"style":371},[4619],{"type":51,"value":1083},{"type":42,"tag":219,"props":4621,"children":4622},{"style":243},[4623],{"type":51,"value":4624}," content",{"type":42,"tag":219,"props":4626,"children":4627},{"style":237},[4628],{"type":51,"value":705},{"type":42,"tag":219,"props":4630,"children":4631},{"style":243},[4632],{"type":51,"value":2911},{"type":42,"tag":219,"props":4634,"children":4635},{"style":237},[4636],{"type":51,"value":960},{"type":42,"tag":219,"props":4638,"children":4639},{"style":243},[4640],{"type":51,"value":902},{"type":42,"tag":219,"props":4642,"children":4643},{"style":237},[4644],{"type":51,"value":2166},{"type":42,"tag":219,"props":4646,"children":4647},{"style":243},[4648],{"type":51,"value":4649},"content",{"type":42,"tag":219,"props":4651,"children":4652},{"style":226},[4653],{"type":51,"value":1210},{"type":42,"tag":219,"props":4655,"children":4656},{"style":377},[4657],{"type":51,"value":744},{"type":42,"tag":219,"props":4659,"children":4660},{"style":237},[4661],{"type":51,"value":749},{"type":42,"tag":219,"props":4663,"children":4664},{"style":392},[4665],{"type":51,"value":234},{"type":42,"tag":219,"props":4667,"children":4668},{"style":237},[4669],{"type":51,"value":426},{"type":42,"tag":219,"props":4671,"children":4672},{"style":377},[4673],{"type":51,"value":648},{"type":42,"tag":219,"props":4675,"children":4676},{"style":237},[4677],{"type":51,"value":634},{"type":42,"tag":219,"props":4679,"children":4680},{"style":392},[4681],{"type":51,"value":4085},{"type":42,"tag":219,"props":4683,"children":4684},{"style":237},[4685],{"type":51,"value":426},{"type":42,"tag":219,"props":4687,"children":4688},{"style":377},[4689],{"type":51,"value":648},{"type":42,"tag":219,"props":4691,"children":4692},{"style":237},[4693],{"type":51,"value":4114},{"type":42,"tag":219,"props":4695,"children":4696},{"style":237},[4697],{"type":51,"value":1821},{"type":42,"tag":219,"props":4699,"children":4700},{"style":377},[4701],{"type":51,"value":1826},{"type":42,"tag":219,"props":4703,"children":4705},{"class":221,"line":4704},151,[4706,4710,4714,4718,4723,4727,4732,4736,4740,4744],{"type":42,"tag":219,"props":4707,"children":4708},{"style":226},[4709],{"type":51,"value":941},{"type":42,"tag":219,"props":4711,"children":4712},{"style":392},[4713],{"type":51,"value":946},{"type":42,"tag":219,"props":4715,"children":4716},{"style":237},[4717],{"type":51,"value":951},{"type":42,"tag":219,"props":4719,"children":4720},{"style":243},[4721],{"type":51,"value":4722},"Array",{"type":42,"tag":219,"props":4724,"children":4725},{"style":237},[4726],{"type":51,"value":960},{"type":42,"tag":219,"props":4728,"children":4729},{"style":888},[4730],{"type":51,"value":4731},"isArray",{"type":42,"tag":219,"props":4733,"children":4734},{"style":392},[4735],{"type":51,"value":896},{"type":42,"tag":219,"props":4737,"children":4738},{"style":243},[4739],{"type":51,"value":4649},{"type":42,"tag":219,"props":4741,"children":4742},{"style":392},[4743],{"type":51,"value":3621},{"type":42,"tag":219,"props":4745,"children":4746},{"style":237},[4747],{"type":51,"value":994},{"type":42,"tag":219,"props":4749,"children":4751},{"class":221,"line":4750},152,[4752,4756],{"type":42,"tag":219,"props":4753,"children":4754},{"style":226},[4755],{"type":51,"value":1003},{"type":42,"tag":219,"props":4757,"children":4758},{"style":237},[4759],{"type":51,"value":1826},{"type":42,"tag":219,"props":4761,"children":4763},{"class":221,"line":4762},153,[4764],{"type":42,"tag":219,"props":4765,"children":4766},{"style":237},[4767],{"type":51,"value":1066},{"type":42,"tag":219,"props":4769,"children":4771},{"class":221,"line":4770},154,[4772],{"type":42,"tag":219,"props":4773,"children":4774},{"emptyLinePlaceholder":35},[4775],{"type":51,"value":359},{"type":42,"tag":219,"props":4777,"children":4779},{"class":221,"line":4778},155,[4780,4784,4789,4793],{"type":42,"tag":219,"props":4781,"children":4782},{"style":371},[4783],{"type":51,"value":1083},{"type":42,"tag":219,"props":4785,"children":4786},{"style":243},[4787],{"type":51,"value":4788}," textBlocks",{"type":42,"tag":219,"props":4790,"children":4791},{"style":237},[4792],{"type":51,"value":705},{"type":42,"tag":219,"props":4794,"children":4795},{"style":243},[4796],{"type":51,"value":4797}," content\n",{"type":42,"tag":219,"props":4799,"children":4801},{"class":221,"line":4800},156,[4802,4807,4811,4815,4819,4824,4828,4832,4837,4841,4845,4849,4853,4857,4861,4865,4869,4873,4877,4881,4885,4889,4893,4897],{"type":42,"tag":219,"props":4803,"children":4804},{"style":237},[4805],{"type":51,"value":4806},"    .",{"type":42,"tag":219,"props":4808,"children":4809},{"style":888},[4810],{"type":51,"value":1342},{"type":42,"tag":219,"props":4812,"children":4813},{"style":392},[4814],{"type":51,"value":896},{"type":42,"tag":219,"props":4816,"children":4817},{"style":237},[4818],{"type":51,"value":896},{"type":42,"tag":219,"props":4820,"children":4821},{"style":899},[4822],{"type":51,"value":4823},"c",{"type":42,"tag":219,"props":4825,"children":4826},{"style":237},[4827],{"type":51,"value":1359},{"type":42,"tag":219,"props":4829,"children":4830},{"style":371},[4831],{"type":51,"value":1364},{"type":42,"tag":219,"props":4833,"children":4834},{"style":243},[4835],{"type":51,"value":4836}," c",{"type":42,"tag":219,"props":4838,"children":4839},{"style":237},[4840],{"type":51,"value":960},{"type":42,"tag":219,"props":4842,"children":4843},{"style":243},[4844],{"type":51,"value":695},{"type":42,"tag":219,"props":4846,"children":4847},{"style":237},[4848],{"type":51,"value":1179},{"type":42,"tag":219,"props":4850,"children":4851},{"style":237},[4852],{"type":51,"value":261},{"type":42,"tag":219,"props":4854,"children":4855},{"style":264},[4856],{"type":51,"value":51},{"type":42,"tag":219,"props":4858,"children":4859},{"style":237},[4860],{"type":51,"value":1193},{"type":42,"tag":219,"props":4862,"children":4863},{"style":237},[4864],{"type":51,"value":970},{"type":42,"tag":219,"props":4866,"children":4867},{"style":237},[4868],{"type":51,"value":2046},{"type":42,"tag":219,"props":4870,"children":4871},{"style":243},[4872],{"type":51,"value":4836},{"type":42,"tag":219,"props":4874,"children":4875},{"style":237},[4876],{"type":51,"value":960},{"type":42,"tag":219,"props":4878,"children":4879},{"style":243},[4880],{"type":51,"value":51},{"type":42,"tag":219,"props":4882,"children":4883},{"style":237},[4884],{"type":51,"value":1179},{"type":42,"tag":219,"props":4886,"children":4887},{"style":237},[4888],{"type":51,"value":261},{"type":42,"tag":219,"props":4890,"children":4891},{"style":264},[4892],{"type":51,"value":476},{"type":42,"tag":219,"props":4894,"children":4895},{"style":237},[4896],{"type":51,"value":1193},{"type":42,"tag":219,"props":4898,"children":4899},{"style":392},[4900],{"type":51,"value":1329},{"type":42,"tag":219,"props":4902,"children":4904},{"class":221,"line":4903},157,[4905,4909,4913,4917,4921,4925,4929,4933,4937,4941,4945,4950,4954],{"type":42,"tag":219,"props":4906,"children":4907},{"style":237},[4908],{"type":51,"value":4806},{"type":42,"tag":219,"props":4910,"children":4911},{"style":888},[4912],{"type":51,"value":1413},{"type":42,"tag":219,"props":4914,"children":4915},{"style":392},[4916],{"type":51,"value":896},{"type":42,"tag":219,"props":4918,"children":4919},{"style":237},[4920],{"type":51,"value":896},{"type":42,"tag":219,"props":4922,"children":4923},{"style":899},[4924],{"type":51,"value":4823},{"type":42,"tag":219,"props":4926,"children":4927},{"style":237},[4928],{"type":51,"value":1359},{"type":42,"tag":219,"props":4930,"children":4931},{"style":371},[4932],{"type":51,"value":1364},{"type":42,"tag":219,"props":4934,"children":4935},{"style":243},[4936],{"type":51,"value":4836},{"type":42,"tag":219,"props":4938,"children":4939},{"style":237},[4940],{"type":51,"value":960},{"type":42,"tag":219,"props":4942,"children":4943},{"style":243},[4944],{"type":51,"value":51},{"type":42,"tag":219,"props":4946,"children":4947},{"style":237},[4948],{"type":51,"value":4949},"!.",{"type":42,"tag":219,"props":4951,"children":4952},{"style":888},[4953],{"type":51,"value":1469},{"type":42,"tag":219,"props":4955,"children":4956},{"style":392},[4957],{"type":51,"value":1474},{"type":42,"tag":219,"props":4959,"children":4961},{"class":221,"line":4960},158,[4962,4966,4970,4974,4978,4982,4986,4990,4994,4998,5002,5006,5010],{"type":42,"tag":219,"props":4963,"children":4964},{"style":237},[4965],{"type":51,"value":4806},{"type":42,"tag":219,"props":4967,"children":4968},{"style":888},[4969],{"type":51,"value":1342},{"type":42,"tag":219,"props":4971,"children":4972},{"style":392},[4973],{"type":51,"value":896},{"type":42,"tag":219,"props":4975,"children":4976},{"style":237},[4977],{"type":51,"value":896},{"type":42,"tag":219,"props":4979,"children":4980},{"style":899},[4981],{"type":51,"value":2619},{"type":42,"tag":219,"props":4983,"children":4984},{"style":237},[4985],{"type":51,"value":1359},{"type":42,"tag":219,"props":4987,"children":4988},{"style":371},[4989],{"type":51,"value":1364},{"type":42,"tag":219,"props":4991,"children":4992},{"style":243},[4993],{"type":51,"value":2636},{"type":42,"tag":219,"props":4995,"children":4996},{"style":237},[4997],{"type":51,"value":960},{"type":42,"tag":219,"props":4999,"children":5000},{"style":243},[5001],{"type":51,"value":1504},{"type":42,"tag":219,"props":5003,"children":5004},{"style":237},[5005],{"type":51,"value":2673},{"type":42,"tag":219,"props":5007,"children":5008},{"style":1453},[5009],{"type":51,"value":2678},{"type":42,"tag":219,"props":5011,"children":5012},{"style":392},[5013],{"type":51,"value":1329},{"type":42,"tag":219,"props":5015,"children":5017},{"class":221,"line":5016},159,[5018],{"type":42,"tag":219,"props":5019,"children":5020},{"emptyLinePlaceholder":35},[5021],{"type":51,"value":359},{"type":42,"tag":219,"props":5023,"children":5025},{"class":221,"line":5024},160,[5026,5030,5034,5039,5043,5047,5051,5055,5059],{"type":42,"tag":219,"props":5027,"children":5028},{"style":226},[5029],{"type":51,"value":941},{"type":42,"tag":219,"props":5031,"children":5032},{"style":392},[5033],{"type":51,"value":946},{"type":42,"tag":219,"props":5035,"children":5036},{"style":243},[5037],{"type":51,"value":5038},"textBlocks",{"type":42,"tag":219,"props":5040,"children":5041},{"style":237},[5042],{"type":51,"value":960},{"type":42,"tag":219,"props":5044,"children":5045},{"style":243},[5046],{"type":51,"value":1504},{"type":42,"tag":219,"props":5048,"children":5049},{"style":237},[5050],{"type":51,"value":1179},{"type":42,"tag":219,"props":5052,"children":5053},{"style":1453},[5054],{"type":51,"value":2678},{"type":42,"tag":219,"props":5056,"children":5057},{"style":392},[5058],{"type":51,"value":989},{"type":42,"tag":219,"props":5060,"children":5061},{"style":237},[5062],{"type":51,"value":994},{"type":42,"tag":219,"props":5064,"children":5066},{"class":221,"line":5065},161,[5067,5071],{"type":42,"tag":219,"props":5068,"children":5069},{"style":226},[5070],{"type":51,"value":1003},{"type":42,"tag":219,"props":5072,"children":5073},{"style":237},[5074],{"type":51,"value":1826},{"type":42,"tag":219,"props":5076,"children":5078},{"class":221,"line":5077},162,[5079],{"type":42,"tag":219,"props":5080,"children":5081},{"style":237},[5082],{"type":51,"value":1066},{"type":42,"tag":219,"props":5084,"children":5086},{"class":221,"line":5085},163,[5087],{"type":42,"tag":219,"props":5088,"children":5089},{"emptyLinePlaceholder":35},[5090],{"type":51,"value":359},{"type":42,"tag":219,"props":5092,"children":5094},{"class":221,"line":5093},164,[5095],{"type":42,"tag":219,"props":5096,"children":5098},{"style":5097},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[5099],{"type":51,"value":5100},"  \u002F\u002F Prefer the JSON payload block. Some responses append metadata text blocks\n",{"type":42,"tag":219,"props":5102,"children":5104},{"class":221,"line":5103},165,[5105],{"type":42,"tag":219,"props":5106,"children":5107},{"style":5097},[5108],{"type":51,"value":5109},"  \u002F\u002F such as \"CorrelationId: ...\" that should not be concatenated.\n",{"type":42,"tag":219,"props":5111,"children":5113},{"class":221,"line":5112},166,[5114,5118,5123,5127,5131,5135,5139],{"type":42,"tag":219,"props":5115,"children":5116},{"style":371},[5117],{"type":51,"value":1083},{"type":42,"tag":219,"props":5119,"children":5120},{"style":243},[5121],{"type":51,"value":5122}," jsonBlock",{"type":42,"tag":219,"props":5124,"children":5125},{"style":237},[5126],{"type":51,"value":705},{"type":42,"tag":219,"props":5128,"children":5129},{"style":243},[5130],{"type":51,"value":4788},{"type":42,"tag":219,"props":5132,"children":5133},{"style":237},[5134],{"type":51,"value":960},{"type":42,"tag":219,"props":5136,"children":5137},{"style":888},[5138],{"type":51,"value":2606},{"type":42,"tag":219,"props":5140,"children":5141},{"style":392},[5142],{"type":51,"value":3065},{"type":42,"tag":219,"props":5144,"children":5146},{"class":221,"line":5145},167,[5147,5152,5157,5161,5165,5170,5174,5178,5182,5186,5191,5195,5199,5204,5209,5214,5219,5224,5228,5233,5237,5241,5246,5250,5254],{"type":42,"tag":219,"props":5148,"children":5149},{"style":237},[5150],{"type":51,"value":5151},"    (",{"type":42,"tag":219,"props":5153,"children":5154},{"style":899},[5155],{"type":51,"value":5156},"block",{"type":42,"tag":219,"props":5158,"children":5159},{"style":237},[5160],{"type":51,"value":1359},{"type":42,"tag":219,"props":5162,"children":5163},{"style":371},[5164],{"type":51,"value":1364},{"type":42,"tag":219,"props":5166,"children":5167},{"style":243},[5168],{"type":51,"value":5169}," block",{"type":42,"tag":219,"props":5171,"children":5172},{"style":237},[5173],{"type":51,"value":960},{"type":42,"tag":219,"props":5175,"children":5176},{"style":888},[5177],{"type":51,"value":1378},{"type":42,"tag":219,"props":5179,"children":5180},{"style":392},[5181],{"type":51,"value":896},{"type":42,"tag":219,"props":5183,"children":5184},{"style":237},[5185],{"type":51,"value":1193},{"type":42,"tag":219,"props":5187,"children":5188},{"style":264},[5189],{"type":51,"value":5190},"{",{"type":42,"tag":219,"props":5192,"children":5193},{"style":237},[5194],{"type":51,"value":1193},{"type":42,"tag":219,"props":5196,"children":5197},{"style":392},[5198],{"type":51,"value":989},{"type":42,"tag":219,"props":5200,"children":5201},{"style":237},[5202],{"type":51,"value":5203},"&&",{"type":42,"tag":219,"props":5205,"children":5206},{"style":237},[5207],{"type":51,"value":5208}," \u002F",{"type":42,"tag":219,"props":5210,"children":5211},{"style":264},[5212],{"type":51,"value":5213},"\"conversationId\"",{"type":42,"tag":219,"props":5215,"children":5216},{"style":237},[5217],{"type":51,"value":5218},"|",{"type":42,"tag":219,"props":5220,"children":5221},{"style":264},[5222],{"type":51,"value":5223},"\"rawResponse\"",{"type":42,"tag":219,"props":5225,"children":5226},{"style":237},[5227],{"type":51,"value":5218},{"type":42,"tag":219,"props":5229,"children":5230},{"style":264},[5231],{"type":51,"value":5232},"\"reply\"",{"type":42,"tag":219,"props":5234,"children":5235},{"style":237},[5236],{"type":51,"value":1305},{"type":42,"tag":219,"props":5238,"children":5239},{"style":237},[5240],{"type":51,"value":960},{"type":42,"tag":219,"props":5242,"children":5243},{"style":888},[5244],{"type":51,"value":5245},"test",{"type":42,"tag":219,"props":5247,"children":5248},{"style":392},[5249],{"type":51,"value":896},{"type":42,"tag":219,"props":5251,"children":5252},{"style":243},[5253],{"type":51,"value":5156},{"type":42,"tag":219,"props":5255,"children":5256},{"style":392},[5257],{"type":51,"value":1329},{"type":42,"tag":219,"props":5259,"children":5261},{"class":221,"line":5260},168,[5262],{"type":42,"tag":219,"props":5263,"children":5264},{"style":392},[5265],{"type":51,"value":5266},"  )\n",{"type":42,"tag":219,"props":5268,"children":5270},{"class":221,"line":5269},169,[5271,5275,5279,5284,5288],{"type":42,"tag":219,"props":5272,"children":5273},{"style":226},[5274],{"type":51,"value":941},{"type":42,"tag":219,"props":5276,"children":5277},{"style":392},[5278],{"type":51,"value":946},{"type":42,"tag":219,"props":5280,"children":5281},{"style":243},[5282],{"type":51,"value":5283},"jsonBlock",{"type":42,"tag":219,"props":5285,"children":5286},{"style":392},[5287],{"type":51,"value":989},{"type":42,"tag":219,"props":5289,"children":5290},{"style":237},[5291],{"type":51,"value":994},{"type":42,"tag":219,"props":5293,"children":5295},{"class":221,"line":5294},170,[5296,5300],{"type":42,"tag":219,"props":5297,"children":5298},{"style":226},[5299],{"type":51,"value":1003},{"type":42,"tag":219,"props":5301,"children":5302},{"style":243},[5303],{"type":51,"value":5304}," jsonBlock\n",{"type":42,"tag":219,"props":5306,"children":5308},{"class":221,"line":5307},171,[5309],{"type":42,"tag":219,"props":5310,"children":5311},{"style":237},[5312],{"type":51,"value":1066},{"type":42,"tag":219,"props":5314,"children":5316},{"class":221,"line":5315},172,[5317],{"type":42,"tag":219,"props":5318,"children":5319},{"emptyLinePlaceholder":35},[5320],{"type":51,"value":359},{"type":42,"tag":219,"props":5322,"children":5324},{"class":221,"line":5323},173,[5325,5329,5334,5338,5342,5346,5350,5354,5358,5362,5366,5370,5374,5378,5383,5388,5393,5397,5401,5406,5410,5414,5418,5422],{"type":42,"tag":219,"props":5326,"children":5327},{"style":371},[5328],{"type":51,"value":1083},{"type":42,"tag":219,"props":5330,"children":5331},{"style":243},[5332],{"type":51,"value":5333}," nonMetadata",{"type":42,"tag":219,"props":5335,"children":5336},{"style":237},[5337],{"type":51,"value":705},{"type":42,"tag":219,"props":5339,"children":5340},{"style":243},[5341],{"type":51,"value":4788},{"type":42,"tag":219,"props":5343,"children":5344},{"style":237},[5345],{"type":51,"value":960},{"type":42,"tag":219,"props":5347,"children":5348},{"style":888},[5349],{"type":51,"value":2606},{"type":42,"tag":219,"props":5351,"children":5352},{"style":392},[5353],{"type":51,"value":896},{"type":42,"tag":219,"props":5355,"children":5356},{"style":237},[5357],{"type":51,"value":896},{"type":42,"tag":219,"props":5359,"children":5360},{"style":899},[5361],{"type":51,"value":5156},{"type":42,"tag":219,"props":5363,"children":5364},{"style":237},[5365],{"type":51,"value":1359},{"type":42,"tag":219,"props":5367,"children":5368},{"style":371},[5369],{"type":51,"value":1364},{"type":42,"tag":219,"props":5371,"children":5372},{"style":237},[5373],{"type":51,"value":3997},{"type":42,"tag":219,"props":5375,"children":5376},{"style":237},[5377],{"type":51,"value":1305},{"type":42,"tag":219,"props":5379,"children":5380},{"style":226},[5381],{"type":51,"value":5382},"^",{"type":42,"tag":219,"props":5384,"children":5385},{"style":264},[5386],{"type":51,"value":5387},"CorrelationId\\s",{"type":42,"tag":219,"props":5389,"children":5390},{"style":237},[5391],{"type":51,"value":5392},"*",{"type":42,"tag":219,"props":5394,"children":5395},{"style":264},[5396],{"type":51,"value":206},{"type":42,"tag":219,"props":5398,"children":5399},{"style":237},[5400],{"type":51,"value":1305},{"type":42,"tag":219,"props":5402,"children":5403},{"style":1453},[5404],{"type":51,"value":5405},"i",{"type":42,"tag":219,"props":5407,"children":5408},{"style":237},[5409],{"type":51,"value":960},{"type":42,"tag":219,"props":5411,"children":5412},{"style":888},[5413],{"type":51,"value":5245},{"type":42,"tag":219,"props":5415,"children":5416},{"style":392},[5417],{"type":51,"value":896},{"type":42,"tag":219,"props":5419,"children":5420},{"style":243},[5421],{"type":51,"value":5156},{"type":42,"tag":219,"props":5423,"children":5424},{"style":392},[5425],{"type":51,"value":1400},{"type":42,"tag":219,"props":5427,"children":5429},{"class":221,"line":5428},174,[5430,5434,5438,5442,5446,5450,5455],{"type":42,"tag":219,"props":5431,"children":5432},{"style":226},[5433],{"type":51,"value":1698},{"type":42,"tag":219,"props":5435,"children":5436},{"style":243},[5437],{"type":51,"value":5333},{"type":42,"tag":219,"props":5439,"children":5440},{"style":237},[5441],{"type":51,"value":2836},{"type":42,"tag":219,"props":5443,"children":5444},{"style":243},[5445],{"type":51,"value":4788},{"type":42,"tag":219,"props":5447,"children":5448},{"style":392},[5449],{"type":51,"value":2344},{"type":42,"tag":219,"props":5451,"children":5452},{"style":1453},[5453],{"type":51,"value":5454},"0",{"type":42,"tag":219,"props":5456,"children":5457},{"style":392},[5458],{"type":51,"value":5459},"]\n",{"type":42,"tag":219,"props":5461,"children":5463},{"class":221,"line":5462},175,[5464],{"type":42,"tag":219,"props":5465,"children":5466},{"style":237},[5467],{"type":51,"value":500},{"type":42,"tag":219,"props":5469,"children":5471},{"class":221,"line":5470},176,[5472],{"type":42,"tag":219,"props":5473,"children":5474},{"emptyLinePlaceholder":35},[5475],{"type":51,"value":359},{"type":42,"tag":219,"props":5477,"children":5479},{"class":221,"line":5478},177,[5480,5484,5489,5493,5497,5501,5505,5509,5513,5517,5521,5525,5529,5533,5537,5541,5545,5549],{"type":42,"tag":219,"props":5481,"children":5482},{"style":226},[5483],{"type":51,"value":368},{"type":42,"tag":219,"props":5485,"children":5486},{"style":371},[5487],{"type":51,"value":5488}," function",{"type":42,"tag":219,"props":5490,"children":5491},{"style":888},[5492],{"type":51,"value":4389},{"type":42,"tag":219,"props":5494,"children":5495},{"style":237},[5496],{"type":51,"value":896},{"type":42,"tag":219,"props":5498,"children":5499},{"style":899},[5500],{"type":51,"value":2769},{"type":42,"tag":219,"props":5502,"children":5503},{"style":237},[5504],{"type":51,"value":206},{"type":42,"tag":219,"props":5506,"children":5507},{"style":377},[5508],{"type":51,"value":525},{"type":42,"tag":219,"props":5510,"children":5511},{"style":237},[5512],{"type":51,"value":2782},{"type":42,"tag":219,"props":5514,"children":5515},{"style":237},[5516],{"type":51,"value":240},{"type":42,"tag":219,"props":5518,"children":5519},{"style":392},[5520],{"type":51,"value":4085},{"type":42,"tag":219,"props":5522,"children":5523},{"style":237},[5524],{"type":51,"value":206},{"type":42,"tag":219,"props":5526,"children":5527},{"style":377},[5528],{"type":51,"value":648},{"type":42,"tag":219,"props":5530,"children":5531},{"style":237},[5532],{"type":51,"value":634},{"type":42,"tag":219,"props":5534,"children":5535},{"style":392},[5536],{"type":51,"value":1839},{"type":42,"tag":219,"props":5538,"children":5539},{"style":237},[5540],{"type":51,"value":426},{"type":42,"tag":219,"props":5542,"children":5543},{"style":377},[5544],{"type":51,"value":648},{"type":42,"tag":219,"props":5546,"children":5547},{"style":237},[5548],{"type":51,"value":251},{"type":42,"tag":219,"props":5550,"children":5551},{"style":237},[5552],{"type":51,"value":385},{"type":42,"tag":219,"props":5554,"children":5556},{"class":221,"line":5555},178,[5557,5561,5565,5569,5573,5577,5581],{"type":42,"tag":219,"props":5558,"children":5559},{"style":226},[5560],{"type":51,"value":941},{"type":42,"tag":219,"props":5562,"children":5563},{"style":392},[5564],{"type":51,"value":946},{"type":42,"tag":219,"props":5566,"children":5567},{"style":243},[5568],{"type":51,"value":2769},{"type":42,"tag":219,"props":5570,"children":5571},{"style":237},[5572],{"type":51,"value":960},{"type":42,"tag":219,"props":5574,"children":5575},{"style":243},[5576],{"type":51,"value":984},{"type":42,"tag":219,"props":5578,"children":5579},{"style":392},[5580],{"type":51,"value":989},{"type":42,"tag":219,"props":5582,"children":5583},{"style":237},[5584],{"type":51,"value":994},{"type":42,"tag":219,"props":5586,"children":5588},{"class":221,"line":5587},179,[5589,5593,5597,5601,5605,5610,5615,5620,5624,5628,5632,5636,5641,5646,5650,5654,5659,5664,5668,5673,5678],{"type":42,"tag":219,"props":5590,"children":5591},{"style":226},[5592],{"type":51,"value":1003},{"type":42,"tag":219,"props":5594,"children":5595},{"style":237},[5596],{"type":51,"value":240},{"type":42,"tag":219,"props":5598,"children":5599},{"style":392},[5600],{"type":51,"value":4085},{"type":42,"tag":219,"props":5602,"children":5603},{"style":237},[5604],{"type":51,"value":206},{"type":42,"tag":219,"props":5606,"children":5607},{"style":237},[5608],{"type":51,"value":5609}," `",{"type":42,"tag":219,"props":5611,"children":5612},{"style":264},[5613],{"type":51,"value":5614},"Error: ",{"type":42,"tag":219,"props":5616,"children":5617},{"style":237},[5618],{"type":51,"value":5619},"${",{"type":42,"tag":219,"props":5621,"children":5622},{"style":243},[5623],{"type":51,"value":2769},{"type":42,"tag":219,"props":5625,"children":5626},{"style":237},[5627],{"type":51,"value":960},{"type":42,"tag":219,"props":5629,"children":5630},{"style":243},[5631],{"type":51,"value":984},{"type":42,"tag":219,"props":5633,"children":5634},{"style":237},[5635],{"type":51,"value":960},{"type":42,"tag":219,"props":5637,"children":5638},{"style":243},[5639],{"type":51,"value":5640},"message ",{"type":42,"tag":219,"props":5642,"children":5643},{"style":237},[5644],{"type":51,"value":5645},"??",{"type":42,"tag":219,"props":5647,"children":5648},{"style":243},[5649],{"type":51,"value":1570},{"type":42,"tag":219,"props":5651,"children":5652},{"style":237},[5653],{"type":51,"value":960},{"type":42,"tag":219,"props":5655,"children":5656},{"style":888},[5657],{"type":51,"value":5658},"stringify",{"type":42,"tag":219,"props":5660,"children":5661},{"style":243},[5662],{"type":51,"value":5663},"(res",{"type":42,"tag":219,"props":5665,"children":5666},{"style":237},[5667],{"type":51,"value":960},{"type":42,"tag":219,"props":5669,"children":5670},{"style":243},[5671],{"type":51,"value":5672},"error)",{"type":42,"tag":219,"props":5674,"children":5675},{"style":237},[5676],{"type":51,"value":5677},"}`",{"type":42,"tag":219,"props":5679,"children":5680},{"style":237},[5681],{"type":51,"value":670},{"type":42,"tag":219,"props":5683,"children":5685},{"class":221,"line":5684},180,[5686],{"type":42,"tag":219,"props":5687,"children":5688},{"style":237},[5689],{"type":51,"value":1066},{"type":42,"tag":219,"props":5691,"children":5693},{"class":221,"line":5692},181,[5694],{"type":42,"tag":219,"props":5695,"children":5696},{"emptyLinePlaceholder":35},[5697],{"type":51,"value":359},{"type":42,"tag":219,"props":5699,"children":5701},{"class":221,"line":5700},182,[5702,5706,5711,5715,5719,5723,5727],{"type":42,"tag":219,"props":5703,"children":5704},{"style":371},[5705],{"type":51,"value":1083},{"type":42,"tag":219,"props":5707,"children":5708},{"style":243},[5709],{"type":51,"value":5710}," rawText",{"type":42,"tag":219,"props":5712,"children":5713},{"style":237},[5714],{"type":51,"value":705},{"type":42,"tag":219,"props":5716,"children":5717},{"style":888},[5718],{"type":51,"value":4575},{"type":42,"tag":219,"props":5720,"children":5721},{"style":392},[5722],{"type":51,"value":896},{"type":42,"tag":219,"props":5724,"children":5725},{"style":243},[5726],{"type":51,"value":2769},{"type":42,"tag":219,"props":5728,"children":5729},{"style":392},[5730],{"type":51,"value":1329},{"type":42,"tag":219,"props":5732,"children":5734},{"class":221,"line":5733},183,[5735,5739,5743,5747,5752,5756],{"type":42,"tag":219,"props":5736,"children":5737},{"style":226},[5738],{"type":51,"value":941},{"type":42,"tag":219,"props":5740,"children":5741},{"style":392},[5742],{"type":51,"value":946},{"type":42,"tag":219,"props":5744,"children":5745},{"style":237},[5746],{"type":51,"value":951},{"type":42,"tag":219,"props":5748,"children":5749},{"style":243},[5750],{"type":51,"value":5751},"rawText",{"type":42,"tag":219,"props":5753,"children":5754},{"style":392},[5755],{"type":51,"value":989},{"type":42,"tag":219,"props":5757,"children":5758},{"style":237},[5759],{"type":51,"value":994},{"type":42,"tag":219,"props":5761,"children":5763},{"class":221,"line":5762},184,[5764,5768,5772,5776,5780,5784,5788,5792,5796,5800,5804,5808,5812,5816,5820,5824,5828,5833,5838,5842,5846,5850,5855,5859],{"type":42,"tag":219,"props":5765,"children":5766},{"style":226},[5767],{"type":51,"value":1003},{"type":42,"tag":219,"props":5769,"children":5770},{"style":237},[5771],{"type":51,"value":240},{"type":42,"tag":219,"props":5773,"children":5774},{"style":392},[5775],{"type":51,"value":4085},{"type":42,"tag":219,"props":5777,"children":5778},{"style":237},[5779],{"type":51,"value":206},{"type":42,"tag":219,"props":5781,"children":5782},{"style":243},[5783],{"type":51,"value":2911},{"type":42,"tag":219,"props":5785,"children":5786},{"style":237},[5787],{"type":51,"value":960},{"type":42,"tag":219,"props":5789,"children":5790},{"style":243},[5791],{"type":51,"value":902},{"type":42,"tag":219,"props":5793,"children":5794},{"style":237},[5795],{"type":51,"value":1509},{"type":42,"tag":219,"props":5797,"children":5798},{"style":243},[5799],{"type":51,"value":1570},{"type":42,"tag":219,"props":5801,"children":5802},{"style":237},[5803],{"type":51,"value":960},{"type":42,"tag":219,"props":5805,"children":5806},{"style":888},[5807],{"type":51,"value":5658},{"type":42,"tag":219,"props":5809,"children":5810},{"style":392},[5811],{"type":51,"value":896},{"type":42,"tag":219,"props":5813,"children":5814},{"style":243},[5815],{"type":51,"value":2769},{"type":42,"tag":219,"props":5817,"children":5818},{"style":237},[5819],{"type":51,"value":960},{"type":42,"tag":219,"props":5821,"children":5822},{"style":243},[5823],{"type":51,"value":902},{"type":42,"tag":219,"props":5825,"children":5826},{"style":237},[5827],{"type":51,"value":481},{"type":42,"tag":219,"props":5829,"children":5830},{"style":237},[5831],{"type":51,"value":5832}," null,",{"type":42,"tag":219,"props":5834,"children":5835},{"style":1453},[5836],{"type":51,"value":5837}," 2",{"type":42,"tag":219,"props":5839,"children":5840},{"style":392},[5841],{"type":51,"value":989},{"type":42,"tag":219,"props":5843,"children":5844},{"style":237},[5845],{"type":51,"value":206},{"type":42,"tag":219,"props":5847,"children":5848},{"style":237},[5849],{"type":51,"value":261},{"type":42,"tag":219,"props":5851,"children":5852},{"style":264},[5853],{"type":51,"value":5854},"(no content returned)",{"type":42,"tag":219,"props":5856,"children":5857},{"style":237},[5858],{"type":51,"value":1193},{"type":42,"tag":219,"props":5860,"children":5861},{"style":237},[5862],{"type":51,"value":670},{"type":42,"tag":219,"props":5864,"children":5866},{"class":221,"line":5865},185,[5867],{"type":42,"tag":219,"props":5868,"children":5869},{"style":237},[5870],{"type":51,"value":1066},{"type":42,"tag":219,"props":5872,"children":5874},{"class":221,"line":5873},186,[5875],{"type":42,"tag":219,"props":5876,"children":5877},{"emptyLinePlaceholder":35},[5878],{"type":51,"value":359},{"type":42,"tag":219,"props":5880,"children":5882},{"class":221,"line":5881},187,[5883,5888],{"type":42,"tag":219,"props":5884,"children":5885},{"style":226},[5886],{"type":51,"value":5887},"  try",{"type":42,"tag":219,"props":5889,"children":5890},{"style":237},[5891],{"type":51,"value":385},{"type":42,"tag":219,"props":5893,"children":5895},{"class":221,"line":5894},188,[5896,5900,5905,5909,5913,5917,5921,5925,5929,5933,5937],{"type":42,"tag":219,"props":5897,"children":5898},{"style":371},[5899],{"type":51,"value":1268},{"type":42,"tag":219,"props":5901,"children":5902},{"style":243},[5903],{"type":51,"value":5904}," inner",{"type":42,"tag":219,"props":5906,"children":5907},{"style":237},[5908],{"type":51,"value":705},{"type":42,"tag":219,"props":5910,"children":5911},{"style":243},[5912],{"type":51,"value":1570},{"type":42,"tag":219,"props":5914,"children":5915},{"style":237},[5916],{"type":51,"value":960},{"type":42,"tag":219,"props":5918,"children":5919},{"style":888},[5920],{"type":51,"value":1579},{"type":42,"tag":219,"props":5922,"children":5923},{"style":392},[5924],{"type":51,"value":896},{"type":42,"tag":219,"props":5926,"children":5927},{"style":243},[5928],{"type":51,"value":5751},{"type":42,"tag":219,"props":5930,"children":5931},{"style":392},[5932],{"type":51,"value":989},{"type":42,"tag":219,"props":5934,"children":5935},{"style":226},[5936],{"type":51,"value":1597},{"type":42,"tag":219,"props":5938,"children":5939},{"style":237},[5940],{"type":51,"value":385},{"type":42,"tag":219,"props":5942,"children":5944},{"class":221,"line":5943},189,[5945,5950,5954],{"type":42,"tag":219,"props":5946,"children":5947},{"style":392},[5948],{"type":51,"value":5949},"      conversationId",{"type":42,"tag":219,"props":5951,"children":5952},{"style":237},[5953],{"type":51,"value":426},{"type":42,"tag":219,"props":5955,"children":5956},{"style":377},[5957],{"type":51,"value":431},{"type":42,"tag":219,"props":5959,"children":5961},{"class":221,"line":5960},190,[5962,5967,5971],{"type":42,"tag":219,"props":5963,"children":5964},{"style":392},[5965],{"type":51,"value":5966},"      reply",{"type":42,"tag":219,"props":5968,"children":5969},{"style":237},[5970],{"type":51,"value":426},{"type":42,"tag":219,"props":5972,"children":5973},{"style":377},[5974],{"type":51,"value":431},{"type":42,"tag":219,"props":5976,"children":5978},{"class":221,"line":5977},191,[5979,5984,5988],{"type":42,"tag":219,"props":5980,"children":5981},{"style":392},[5982],{"type":51,"value":5983},"      message",{"type":42,"tag":219,"props":5985,"children":5986},{"style":237},[5987],{"type":51,"value":426},{"type":42,"tag":219,"props":5989,"children":5990},{"style":377},[5991],{"type":51,"value":431},{"type":42,"tag":219,"props":5993,"children":5995},{"class":221,"line":5994},192,[5996,6001,6005],{"type":42,"tag":219,"props":5997,"children":5998},{"style":392},[5999],{"type":51,"value":6000},"      rawResponse",{"type":42,"tag":219,"props":6002,"children":6003},{"style":237},[6004],{"type":51,"value":426},{"type":42,"tag":219,"props":6006,"children":6007},{"style":377},[6008],{"type":51,"value":431},{"type":42,"tag":219,"props":6010,"children":6012},{"class":221,"line":6011},193,[6013],{"type":42,"tag":219,"props":6014,"children":6015},{"style":237},[6016],{"type":51,"value":1673},{"type":42,"tag":219,"props":6018,"children":6020},{"class":221,"line":6019},194,[6021],{"type":42,"tag":219,"props":6022,"children":6023},{"emptyLinePlaceholder":35},[6024],{"type":51,"value":359},{"type":42,"tag":219,"props":6026,"children":6028},{"class":221,"line":6027},195,[6029,6033,6037,6041,6045,6049,6054,6058,6062,6066,6070,6074],{"type":42,"tag":219,"props":6030,"children":6031},{"style":226},[6032],{"type":51,"value":3456},{"type":42,"tag":219,"props":6034,"children":6035},{"style":392},[6036],{"type":51,"value":946},{"type":42,"tag":219,"props":6038,"children":6039},{"style":237},[6040],{"type":51,"value":1170},{"type":42,"tag":219,"props":6042,"children":6043},{"style":243},[6044],{"type":51,"value":5904},{"type":42,"tag":219,"props":6046,"children":6047},{"style":237},[6048],{"type":51,"value":960},{"type":42,"tag":219,"props":6050,"children":6051},{"style":243},[6052],{"type":51,"value":6053},"rawResponse",{"type":42,"tag":219,"props":6055,"children":6056},{"style":237},[6057],{"type":51,"value":1179},{"type":42,"tag":219,"props":6059,"children":6060},{"style":237},[6061],{"type":51,"value":261},{"type":42,"tag":219,"props":6063,"children":6064},{"style":264},[6065],{"type":51,"value":476},{"type":42,"tag":219,"props":6067,"children":6068},{"style":237},[6069],{"type":51,"value":1193},{"type":42,"tag":219,"props":6071,"children":6072},{"style":392},[6073],{"type":51,"value":989},{"type":42,"tag":219,"props":6075,"children":6076},{"style":237},[6077],{"type":51,"value":994},{"type":42,"tag":219,"props":6079,"children":6081},{"class":221,"line":6080},196,[6082,6087],{"type":42,"tag":219,"props":6083,"children":6084},{"style":226},[6085],{"type":51,"value":6086},"      try",{"type":42,"tag":219,"props":6088,"children":6089},{"style":237},[6090],{"type":51,"value":385},{"type":42,"tag":219,"props":6092,"children":6094},{"class":221,"line":6093},197,[6095,6100,6105,6109,6113,6117,6121,6125,6130,6134,6138,6142,6146],{"type":42,"tag":219,"props":6096,"children":6097},{"style":371},[6098],{"type":51,"value":6099},"        const",{"type":42,"tag":219,"props":6101,"children":6102},{"style":243},[6103],{"type":51,"value":6104}," convo",{"type":42,"tag":219,"props":6106,"children":6107},{"style":237},[6108],{"type":51,"value":705},{"type":42,"tag":219,"props":6110,"children":6111},{"style":243},[6112],{"type":51,"value":1570},{"type":42,"tag":219,"props":6114,"children":6115},{"style":237},[6116],{"type":51,"value":960},{"type":42,"tag":219,"props":6118,"children":6119},{"style":888},[6120],{"type":51,"value":1579},{"type":42,"tag":219,"props":6122,"children":6123},{"style":392},[6124],{"type":51,"value":896},{"type":42,"tag":219,"props":6126,"children":6127},{"style":243},[6128],{"type":51,"value":6129},"inner",{"type":42,"tag":219,"props":6131,"children":6132},{"style":237},[6133],{"type":51,"value":960},{"type":42,"tag":219,"props":6135,"children":6136},{"style":243},[6137],{"type":51,"value":6053},{"type":42,"tag":219,"props":6139,"children":6140},{"style":392},[6141],{"type":51,"value":989},{"type":42,"tag":219,"props":6143,"children":6144},{"style":226},[6145],{"type":51,"value":1597},{"type":42,"tag":219,"props":6147,"children":6148},{"style":377},[6149],{"type":51,"value":6150}," CopilotConversation\n",{"type":42,"tag":219,"props":6152,"children":6154},{"class":221,"line":6153},198,[6155,6159,6164,6168,6172,6176,6180,6184,6189,6193,6198,6202,6206,6210,6214,6218,6222],{"type":42,"tag":219,"props":6156,"children":6157},{"style":371},[6158],{"type":51,"value":6099},{"type":42,"tag":219,"props":6160,"children":6161},{"style":243},[6162],{"type":51,"value":6163}," messages",{"type":42,"tag":219,"props":6165,"children":6166},{"style":237},[6167],{"type":51,"value":705},{"type":42,"tag":219,"props":6169,"children":6170},{"style":243},[6171],{"type":51,"value":744},{"type":42,"tag":219,"props":6173,"children":6174},{"style":237},[6175],{"type":51,"value":960},{"type":42,"tag":219,"props":6177,"children":6178},{"style":888},[6179],{"type":51,"value":4731},{"type":42,"tag":219,"props":6181,"children":6182},{"style":392},[6183],{"type":51,"value":896},{"type":42,"tag":219,"props":6185,"children":6186},{"style":243},[6187],{"type":51,"value":6188},"convo",{"type":42,"tag":219,"props":6190,"children":6191},{"style":237},[6192],{"type":51,"value":960},{"type":42,"tag":219,"props":6194,"children":6195},{"style":243},[6196],{"type":51,"value":6197},"messages",{"type":42,"tag":219,"props":6199,"children":6200},{"style":392},[6201],{"type":51,"value":989},{"type":42,"tag":219,"props":6203,"children":6204},{"style":237},[6205],{"type":51,"value":1315},{"type":42,"tag":219,"props":6207,"children":6208},{"style":243},[6209],{"type":51,"value":6104},{"type":42,"tag":219,"props":6211,"children":6212},{"style":237},[6213],{"type":51,"value":960},{"type":42,"tag":219,"props":6215,"children":6216},{"style":243},[6217],{"type":51,"value":6197},{"type":42,"tag":219,"props":6219,"children":6220},{"style":237},[6221],{"type":51,"value":2727},{"type":42,"tag":219,"props":6223,"children":6224},{"style":392},[6225],{"type":51,"value":6226}," []\n",{"type":42,"tag":219,"props":6228,"children":6230},{"class":221,"line":6229},199,[6231,6235,6240,6244,6248,6252,6256],{"type":42,"tag":219,"props":6232,"children":6233},{"style":371},[6234],{"type":51,"value":6099},{"type":42,"tag":219,"props":6236,"children":6237},{"style":243},[6238],{"type":51,"value":6239}," attributed",{"type":42,"tag":219,"props":6241,"children":6242},{"style":237},[6243],{"type":51,"value":705},{"type":42,"tag":219,"props":6245,"children":6246},{"style":243},[6247],{"type":51,"value":6163},{"type":42,"tag":219,"props":6249,"children":6250},{"style":237},[6251],{"type":51,"value":960},{"type":42,"tag":219,"props":6253,"children":6254},{"style":888},[6255],{"type":51,"value":2606},{"type":42,"tag":219,"props":6257,"children":6258},{"style":392},[6259],{"type":51,"value":3065},{"type":42,"tag":219,"props":6261,"children":6263},{"class":221,"line":6262},200,[6264,6269,6274,6278,6282,6286,6290,6294,6298,6302,6306,6311,6315,6319,6324,6328,6332,6336,6340,6344],{"type":42,"tag":219,"props":6265,"children":6266},{"style":237},[6267],{"type":51,"value":6268},"          (",{"type":42,"tag":219,"props":6270,"children":6271},{"style":899},[6272],{"type":51,"value":6273},"m",{"type":42,"tag":219,"props":6275,"children":6276},{"style":237},[6277],{"type":51,"value":1359},{"type":42,"tag":219,"props":6279,"children":6280},{"style":371},[6281],{"type":51,"value":1364},{"type":42,"tag":219,"props":6283,"children":6284},{"style":243},[6285],{"type":51,"value":744},{"type":42,"tag":219,"props":6287,"children":6288},{"style":237},[6289],{"type":51,"value":960},{"type":42,"tag":219,"props":6291,"children":6292},{"style":888},[6293],{"type":51,"value":4731},{"type":42,"tag":219,"props":6295,"children":6296},{"style":392},[6297],{"type":51,"value":896},{"type":42,"tag":219,"props":6299,"children":6300},{"style":243},[6301],{"type":51,"value":6273},{"type":42,"tag":219,"props":6303,"children":6304},{"style":237},[6305],{"type":51,"value":960},{"type":42,"tag":219,"props":6307,"children":6308},{"style":243},[6309],{"type":51,"value":6310},"attributions",{"type":42,"tag":219,"props":6312,"children":6313},{"style":392},[6314],{"type":51,"value":989},{"type":42,"tag":219,"props":6316,"children":6317},{"style":237},[6318],{"type":51,"value":5203},{"type":42,"tag":219,"props":6320,"children":6321},{"style":243},[6322],{"type":51,"value":6323}," m",{"type":42,"tag":219,"props":6325,"children":6326},{"style":237},[6327],{"type":51,"value":960},{"type":42,"tag":219,"props":6329,"children":6330},{"style":243},[6331],{"type":51,"value":6310},{"type":42,"tag":219,"props":6333,"children":6334},{"style":237},[6335],{"type":51,"value":960},{"type":42,"tag":219,"props":6337,"children":6338},{"style":243},[6339],{"type":51,"value":1504},{"type":42,"tag":219,"props":6341,"children":6342},{"style":237},[6343],{"type":51,"value":2673},{"type":42,"tag":219,"props":6345,"children":6346},{"style":1453},[6347],{"type":51,"value":6348}," 0\n",{"type":42,"tag":219,"props":6350,"children":6352},{"class":221,"line":6351},201,[6353],{"type":42,"tag":219,"props":6354,"children":6355},{"style":392},[6356],{"type":51,"value":6357},"        )\n",{"type":42,"tag":219,"props":6359,"children":6361},{"class":221,"line":6360},202,[6362,6366,6371,6375,6379,6383,6387,6391,6396,6401,6405,6409,6413,6417,6421,6425,6429,6434],{"type":42,"tag":219,"props":6363,"children":6364},{"style":371},[6365],{"type":51,"value":6099},{"type":42,"tag":219,"props":6367,"children":6368},{"style":243},[6369],{"type":51,"value":6370}," selected",{"type":42,"tag":219,"props":6372,"children":6373},{"style":237},[6374],{"type":51,"value":705},{"type":42,"tag":219,"props":6376,"children":6377},{"style":243},[6378],{"type":51,"value":6239},{"type":42,"tag":219,"props":6380,"children":6381},{"style":237},[6382],{"type":51,"value":2836},{"type":42,"tag":219,"props":6384,"children":6385},{"style":243},[6386],{"type":51,"value":6163},{"type":42,"tag":219,"props":6388,"children":6389},{"style":392},[6390],{"type":51,"value":2344},{"type":42,"tag":219,"props":6392,"children":6393},{"style":1453},[6394],{"type":51,"value":6395},"1",{"type":42,"tag":219,"props":6397,"children":6398},{"style":392},[6399],{"type":51,"value":6400},"] ",{"type":42,"tag":219,"props":6402,"children":6403},{"style":237},[6404],{"type":51,"value":5645},{"type":42,"tag":219,"props":6406,"children":6407},{"style":243},[6408],{"type":51,"value":6163},{"type":42,"tag":219,"props":6410,"children":6411},{"style":392},[6412],{"type":51,"value":2344},{"type":42,"tag":219,"props":6414,"children":6415},{"style":243},[6416],{"type":51,"value":6197},{"type":42,"tag":219,"props":6418,"children":6419},{"style":237},[6420],{"type":51,"value":960},{"type":42,"tag":219,"props":6422,"children":6423},{"style":243},[6424],{"type":51,"value":1504},{"type":42,"tag":219,"props":6426,"children":6427},{"style":237},[6428],{"type":51,"value":2936},{"type":42,"tag":219,"props":6430,"children":6431},{"style":1453},[6432],{"type":51,"value":6433}," 1",{"type":42,"tag":219,"props":6435,"children":6436},{"style":392},[6437],{"type":51,"value":5459},{"type":42,"tag":219,"props":6439,"children":6441},{"class":221,"line":6440},203,[6442,6446,6451,6455,6459,6463,6467,6471,6475],{"type":42,"tag":219,"props":6443,"children":6444},{"style":371},[6445],{"type":51,"value":6099},{"type":42,"tag":219,"props":6447,"children":6448},{"style":243},[6449],{"type":51,"value":6450}," replyText",{"type":42,"tag":219,"props":6452,"children":6453},{"style":237},[6454],{"type":51,"value":705},{"type":42,"tag":219,"props":6456,"children":6457},{"style":243},[6458],{"type":51,"value":6370},{"type":42,"tag":219,"props":6460,"children":6461},{"style":237},[6462],{"type":51,"value":2166},{"type":42,"tag":219,"props":6464,"children":6465},{"style":243},[6466],{"type":51,"value":51},{"type":42,"tag":219,"props":6468,"children":6469},{"style":237},[6470],{"type":51,"value":2166},{"type":42,"tag":219,"props":6472,"children":6473},{"style":888},[6474],{"type":51,"value":1469},{"type":42,"tag":219,"props":6476,"children":6477},{"style":392},[6478],{"type":51,"value":2859},{"type":42,"tag":219,"props":6480,"children":6482},{"class":221,"line":6481},204,[6483,6488,6492,6497,6501],{"type":42,"tag":219,"props":6484,"children":6485},{"style":226},[6486],{"type":51,"value":6487},"        if",{"type":42,"tag":219,"props":6489,"children":6490},{"style":392},[6491],{"type":51,"value":946},{"type":42,"tag":219,"props":6493,"children":6494},{"style":243},[6495],{"type":51,"value":6496},"replyText",{"type":42,"tag":219,"props":6498,"children":6499},{"style":392},[6500],{"type":51,"value":989},{"type":42,"tag":219,"props":6502,"children":6503},{"style":237},[6504],{"type":51,"value":994},{"type":42,"tag":219,"props":6506,"children":6508},{"class":221,"line":6507},205,[6509,6514,6518,6522,6526,6530,6534,6538,6542,6546,6550,6554],{"type":42,"tag":219,"props":6510,"children":6511},{"style":226},[6512],{"type":51,"value":6513},"          return",{"type":42,"tag":219,"props":6515,"children":6516},{"style":237},[6517],{"type":51,"value":240},{"type":42,"tag":219,"props":6519,"children":6520},{"style":392},[6521],{"type":51,"value":4085},{"type":42,"tag":219,"props":6523,"children":6524},{"style":237},[6525],{"type":51,"value":206},{"type":42,"tag":219,"props":6527,"children":6528},{"style":243},[6529],{"type":51,"value":6450},{"type":42,"tag":219,"props":6531,"children":6532},{"style":237},[6533],{"type":51,"value":481},{"type":42,"tag":219,"props":6535,"children":6536},{"style":392},[6537],{"type":51,"value":1839},{"type":42,"tag":219,"props":6539,"children":6540},{"style":237},[6541],{"type":51,"value":206},{"type":42,"tag":219,"props":6543,"children":6544},{"style":243},[6545],{"type":51,"value":5904},{"type":42,"tag":219,"props":6547,"children":6548},{"style":237},[6549],{"type":51,"value":960},{"type":42,"tag":219,"props":6551,"children":6552},{"style":243},[6553],{"type":51,"value":4294},{"type":42,"tag":219,"props":6555,"children":6556},{"style":237},[6557],{"type":51,"value":670},{"type":42,"tag":219,"props":6559,"children":6561},{"class":221,"line":6560},206,[6562],{"type":42,"tag":219,"props":6563,"children":6564},{"style":237},[6565],{"type":51,"value":6566},"        }\n",{"type":42,"tag":219,"props":6568,"children":6570},{"class":221,"line":6569},207,[6571,6576,6580],{"type":42,"tag":219,"props":6572,"children":6573},{"style":237},[6574],{"type":51,"value":6575},"      }",{"type":42,"tag":219,"props":6577,"children":6578},{"style":226},[6579],{"type":51,"value":1615},{"type":42,"tag":219,"props":6581,"children":6582},{"style":237},[6583],{"type":51,"value":385},{"type":42,"tag":219,"props":6585,"children":6587},{"class":221,"line":6586},208,[6588],{"type":42,"tag":219,"props":6589,"children":6590},{"style":5097},[6591],{"type":51,"value":6592},"        \u002F\u002F Fall through to simple reply extraction.\n",{"type":42,"tag":219,"props":6594,"children":6596},{"class":221,"line":6595},209,[6597],{"type":42,"tag":219,"props":6598,"children":6599},{"style":237},[6600],{"type":51,"value":6601},"      }\n",{"type":42,"tag":219,"props":6603,"children":6605},{"class":221,"line":6604},210,[6606],{"type":42,"tag":219,"props":6607,"children":6608},{"style":237},[6609],{"type":51,"value":1673},{"type":42,"tag":219,"props":6611,"children":6613},{"class":221,"line":6612},211,[6614],{"type":42,"tag":219,"props":6615,"children":6616},{"emptyLinePlaceholder":35},[6617],{"type":51,"value":359},{"type":42,"tag":219,"props":6619,"children":6621},{"class":221,"line":6620},212,[6622,6626,6631,6635,6639,6643,6648,6652,6656,6661,6665,6669,6673,6677,6681,6685,6689,6693],{"type":42,"tag":219,"props":6623,"children":6624},{"style":371},[6625],{"type":51,"value":1268},{"type":42,"tag":219,"props":6627,"children":6628},{"style":243},[6629],{"type":51,"value":6630}," fallbackText",{"type":42,"tag":219,"props":6632,"children":6633},{"style":237},[6634],{"type":51,"value":705},{"type":42,"tag":219,"props":6636,"children":6637},{"style":243},[6638],{"type":51,"value":5904},{"type":42,"tag":219,"props":6640,"children":6641},{"style":237},[6642],{"type":51,"value":960},{"type":42,"tag":219,"props":6644,"children":6645},{"style":243},[6646],{"type":51,"value":6647},"reply",{"type":42,"tag":219,"props":6649,"children":6650},{"style":237},[6651],{"type":51,"value":2166},{"type":42,"tag":219,"props":6653,"children":6654},{"style":888},[6655],{"type":51,"value":1469},{"type":42,"tag":219,"props":6657,"children":6658},{"style":392},[6659],{"type":51,"value":6660},"() ",{"type":42,"tag":219,"props":6662,"children":6663},{"style":237},[6664],{"type":51,"value":2906},{"type":42,"tag":219,"props":6666,"children":6667},{"style":243},[6668],{"type":51,"value":5904},{"type":42,"tag":219,"props":6670,"children":6671},{"style":237},[6672],{"type":51,"value":960},{"type":42,"tag":219,"props":6674,"children":6675},{"style":243},[6676],{"type":51,"value":1049},{"type":42,"tag":219,"props":6678,"children":6679},{"style":237},[6680],{"type":51,"value":2166},{"type":42,"tag":219,"props":6682,"children":6683},{"style":888},[6684],{"type":51,"value":1469},{"type":42,"tag":219,"props":6686,"children":6687},{"style":392},[6688],{"type":51,"value":6660},{"type":42,"tag":219,"props":6690,"children":6691},{"style":237},[6692],{"type":51,"value":2906},{"type":42,"tag":219,"props":6694,"children":6695},{"style":243},[6696],{"type":51,"value":6697}," rawText\n",{"type":42,"tag":219,"props":6699,"children":6701},{"class":221,"line":6700},213,[6702,6706,6710,6714,6718,6722,6726,6730,6734,6738,6742,6746],{"type":42,"tag":219,"props":6703,"children":6704},{"style":226},[6705],{"type":51,"value":1003},{"type":42,"tag":219,"props":6707,"children":6708},{"style":237},[6709],{"type":51,"value":240},{"type":42,"tag":219,"props":6711,"children":6712},{"style":392},[6713],{"type":51,"value":4085},{"type":42,"tag":219,"props":6715,"children":6716},{"style":237},[6717],{"type":51,"value":206},{"type":42,"tag":219,"props":6719,"children":6720},{"style":243},[6721],{"type":51,"value":6630},{"type":42,"tag":219,"props":6723,"children":6724},{"style":237},[6725],{"type":51,"value":481},{"type":42,"tag":219,"props":6727,"children":6728},{"style":392},[6729],{"type":51,"value":1839},{"type":42,"tag":219,"props":6731,"children":6732},{"style":237},[6733],{"type":51,"value":206},{"type":42,"tag":219,"props":6735,"children":6736},{"style":243},[6737],{"type":51,"value":5904},{"type":42,"tag":219,"props":6739,"children":6740},{"style":237},[6741],{"type":51,"value":960},{"type":42,"tag":219,"props":6743,"children":6744},{"style":243},[6745],{"type":51,"value":4294},{"type":42,"tag":219,"props":6747,"children":6748},{"style":237},[6749],{"type":51,"value":670},{"type":42,"tag":219,"props":6751,"children":6753},{"class":221,"line":6752},214,[6754,6759,6763],{"type":42,"tag":219,"props":6755,"children":6756},{"style":237},[6757],{"type":51,"value":6758},"  }",{"type":42,"tag":219,"props":6760,"children":6761},{"style":226},[6762],{"type":51,"value":1615},{"type":42,"tag":219,"props":6764,"children":6765},{"style":237},[6766],{"type":51,"value":385},{"type":42,"tag":219,"props":6768,"children":6770},{"class":221,"line":6769},215,[6771,6775,6779,6783,6787,6791],{"type":42,"tag":219,"props":6772,"children":6773},{"style":226},[6774],{"type":51,"value":1003},{"type":42,"tag":219,"props":6776,"children":6777},{"style":237},[6778],{"type":51,"value":240},{"type":42,"tag":219,"props":6780,"children":6781},{"style":392},[6782],{"type":51,"value":4085},{"type":42,"tag":219,"props":6784,"children":6785},{"style":237},[6786],{"type":51,"value":206},{"type":42,"tag":219,"props":6788,"children":6789},{"style":243},[6790],{"type":51,"value":5710},{"type":42,"tag":219,"props":6792,"children":6793},{"style":237},[6794],{"type":51,"value":670},{"type":42,"tag":219,"props":6796,"children":6798},{"class":221,"line":6797},216,[6799],{"type":42,"tag":219,"props":6800,"children":6801},{"style":237},[6802],{"type":51,"value":1066},{"type":42,"tag":219,"props":6804,"children":6806},{"class":221,"line":6805},217,[6807],{"type":42,"tag":219,"props":6808,"children":6809},{"style":237},[6810],{"type":51,"value":500},{"type":42,"tag":84,"props":6812,"children":6814},{"id":6813},"usage-generic-work-iq-integration-pattern",[6815],{"type":51,"value":6816},"Usage: Generic Work IQ Integration Pattern",{"type":42,"tag":43,"props":6818,"children":6819},{},[6820,6822,6827],{"type":51,"value":6821},"Initialize ",{"type":42,"tag":47,"props":6823,"children":6824},{},[6825],{"type":51,"value":6826},"once per app",{"type":51,"value":6828}," (typically on component mount or app boot) and reuse for all Work IQ calls:",{"type":42,"tag":208,"props":6830,"children":6832},{"className":210,"code":6831,"language":212,"meta":213,"style":213},"import { McpSession } from '.\u002Fconnectors\u002FmcpClient'\n\n\u002F\u002F Initialize once per app session (e.g., in React useEffect on app boot)\nconst workIqSession = new McpSession()\n\n\u002F\u002F Call with any knowledge-grounded prompt\nexport async function queryWorkIQ(userPrompt: string): Promise\u003Cstring> {\n  try {\n    const { text } = await workIqSession.callCopilotChat(userPrompt)\n    return text\n  } catch (error) {\n    const msg = error instanceof Error ? error.message : 'Work IQ query failed'\n    console.error('Work IQ Error:', msg)\n    throw error\n  }\n}\n",[6833],{"type":42,"tag":75,"props":6834,"children":6835},{"__ignoreMap":213},[6836,6872,6879,6887,6918,6925,6933,6994,7005,7058,7070,7097,7160,7205,7218,7225],{"type":42,"tag":219,"props":6837,"children":6838},{"class":221,"line":222},[6839,6843,6847,6851,6855,6859,6863,6868],{"type":42,"tag":219,"props":6840,"children":6841},{"style":226},[6842],{"type":51,"value":229},{"type":42,"tag":219,"props":6844,"children":6845},{"style":237},[6846],{"type":51,"value":240},{"type":42,"tag":219,"props":6848,"children":6849},{"style":243},[6850],{"type":51,"value":1768},{"type":42,"tag":219,"props":6852,"children":6853},{"style":237},[6854],{"type":51,"value":251},{"type":42,"tag":219,"props":6856,"children":6857},{"style":226},[6858],{"type":51,"value":256},{"type":42,"tag":219,"props":6860,"children":6861},{"style":237},[6862],{"type":51,"value":261},{"type":42,"tag":219,"props":6864,"children":6865},{"style":264},[6866],{"type":51,"value":6867},".\u002Fconnectors\u002FmcpClient",{"type":42,"tag":219,"props":6869,"children":6870},{"style":237},[6871],{"type":51,"value":272},{"type":42,"tag":219,"props":6873,"children":6874},{"class":221,"line":23},[6875],{"type":42,"tag":219,"props":6876,"children":6877},{"emptyLinePlaceholder":35},[6878],{"type":51,"value":359},{"type":42,"tag":219,"props":6880,"children":6881},{"class":221,"line":27},[6882],{"type":42,"tag":219,"props":6883,"children":6884},{"style":5097},[6885],{"type":51,"value":6886},"\u002F\u002F Initialize once per app session (e.g., in React useEffect on app boot)\n",{"type":42,"tag":219,"props":6888,"children":6889},{"class":221,"line":353},[6890,6895,6900,6905,6910,6914],{"type":42,"tag":219,"props":6891,"children":6892},{"style":371},[6893],{"type":51,"value":6894},"const",{"type":42,"tag":219,"props":6896,"children":6897},{"style":243},[6898],{"type":51,"value":6899}," workIqSession ",{"type":42,"tag":219,"props":6901,"children":6902},{"style":237},[6903],{"type":51,"value":6904},"=",{"type":42,"tag":219,"props":6906,"children":6907},{"style":237},[6908],{"type":51,"value":6909}," new",{"type":42,"tag":219,"props":6911,"children":6912},{"style":888},[6913],{"type":51,"value":1768},{"type":42,"tag":219,"props":6915,"children":6916},{"style":243},[6917],{"type":51,"value":2859},{"type":42,"tag":219,"props":6919,"children":6920},{"class":221,"line":362},[6921],{"type":42,"tag":219,"props":6922,"children":6923},{"emptyLinePlaceholder":35},[6924],{"type":51,"value":359},{"type":42,"tag":219,"props":6926,"children":6927},{"class":221,"line":388},[6928],{"type":42,"tag":219,"props":6929,"children":6930},{"style":5097},[6931],{"type":51,"value":6932},"\u002F\u002F Call with any knowledge-grounded prompt\n",{"type":42,"tag":219,"props":6934,"children":6935},{"class":221,"line":415},[6936,6940,6944,6948,6953,6957,6962,6966,6970,6974,6978,6982,6986,6990],{"type":42,"tag":219,"props":6937,"children":6938},{"style":226},[6939],{"type":51,"value":368},{"type":42,"tag":219,"props":6941,"children":6942},{"style":371},[6943],{"type":51,"value":3055},{"type":42,"tag":219,"props":6945,"children":6946},{"style":371},[6947],{"type":51,"value":5488},{"type":42,"tag":219,"props":6949,"children":6950},{"style":888},[6951],{"type":51,"value":6952}," queryWorkIQ",{"type":42,"tag":219,"props":6954,"children":6955},{"style":237},[6956],{"type":51,"value":896},{"type":42,"tag":219,"props":6958,"children":6959},{"style":899},[6960],{"type":51,"value":6961},"userPrompt",{"type":42,"tag":219,"props":6963,"children":6964},{"style":237},[6965],{"type":51,"value":206},{"type":42,"tag":219,"props":6967,"children":6968},{"style":377},[6969],{"type":51,"value":648},{"type":42,"tag":219,"props":6971,"children":6972},{"style":237},[6973],{"type":51,"value":2782},{"type":42,"tag":219,"props":6975,"children":6976},{"style":377},[6977],{"type":51,"value":3156},{"type":42,"tag":219,"props":6979,"children":6980},{"style":237},[6981],{"type":51,"value":471},{"type":42,"tag":219,"props":6983,"children":6984},{"style":377},[6985],{"type":51,"value":476},{"type":42,"tag":219,"props":6987,"children":6988},{"style":237},[6989],{"type":51,"value":2123},{"type":42,"tag":219,"props":6991,"children":6992},{"style":237},[6993],{"type":51,"value":385},{"type":42,"tag":219,"props":6995,"children":6996},{"class":221,"line":434},[6997,7001],{"type":42,"tag":219,"props":6998,"children":6999},{"style":226},[7000],{"type":51,"value":5887},{"type":42,"tag":219,"props":7002,"children":7003},{"style":237},[7004],{"type":51,"value":385},{"type":42,"tag":219,"props":7006,"children":7007},{"class":221,"line":451},[7008,7012,7016,7020,7024,7028,7032,7037,7041,7046,7050,7054],{"type":42,"tag":219,"props":7009,"children":7010},{"style":371},[7011],{"type":51,"value":1268},{"type":42,"tag":219,"props":7013,"children":7014},{"style":237},[7015],{"type":51,"value":240},{"type":42,"tag":219,"props":7017,"children":7018},{"style":243},[7019],{"type":51,"value":4085},{"type":42,"tag":219,"props":7021,"children":7022},{"style":237},[7023],{"type":51,"value":251},{"type":42,"tag":219,"props":7025,"children":7026},{"style":237},[7027],{"type":51,"value":705},{"type":42,"tag":219,"props":7029,"children":7030},{"style":226},[7031],{"type":51,"value":3814},{"type":42,"tag":219,"props":7033,"children":7034},{"style":243},[7035],{"type":51,"value":7036}," workIqSession",{"type":42,"tag":219,"props":7038,"children":7039},{"style":237},[7040],{"type":51,"value":960},{"type":42,"tag":219,"props":7042,"children":7043},{"style":888},[7044],{"type":51,"value":7045},"callCopilotChat",{"type":42,"tag":219,"props":7047,"children":7048},{"style":392},[7049],{"type":51,"value":896},{"type":42,"tag":219,"props":7051,"children":7052},{"style":243},[7053],{"type":51,"value":6961},{"type":42,"tag":219,"props":7055,"children":7056},{"style":392},[7057],{"type":51,"value":1329},{"type":42,"tag":219,"props":7059,"children":7060},{"class":221,"line":494},[7061,7065],{"type":42,"tag":219,"props":7062,"children":7063},{"style":226},[7064],{"type":51,"value":1003},{"type":42,"tag":219,"props":7066,"children":7067},{"style":243},[7068],{"type":51,"value":7069}," text\n",{"type":42,"tag":219,"props":7071,"children":7072},{"class":221,"line":503},[7073,7077,7081,7085,7089,7093],{"type":42,"tag":219,"props":7074,"children":7075},{"style":237},[7076],{"type":51,"value":6758},{"type":42,"tag":219,"props":7078,"children":7079},{"style":226},[7080],{"type":51,"value":1615},{"type":42,"tag":219,"props":7082,"children":7083},{"style":392},[7084],{"type":51,"value":946},{"type":42,"tag":219,"props":7086,"children":7087},{"style":243},[7088],{"type":51,"value":984},{"type":42,"tag":219,"props":7090,"children":7091},{"style":392},[7092],{"type":51,"value":989},{"type":42,"tag":219,"props":7094,"children":7095},{"style":237},[7096],{"type":51,"value":994},{"type":42,"tag":219,"props":7098,"children":7099},{"class":221,"line":511},[7100,7104,7109,7113,7117,7122,7127,7131,7135,7139,7143,7147,7151,7156],{"type":42,"tag":219,"props":7101,"children":7102},{"style":371},[7103],{"type":51,"value":1268},{"type":42,"tag":219,"props":7105,"children":7106},{"style":243},[7107],{"type":51,"value":7108}," msg",{"type":42,"tag":219,"props":7110,"children":7111},{"style":237},[7112],{"type":51,"value":705},{"type":42,"tag":219,"props":7114,"children":7115},{"style":243},[7116],{"type":51,"value":1012},{"type":42,"tag":219,"props":7118,"children":7119},{"style":237},[7120],{"type":51,"value":7121}," instanceof",{"type":42,"tag":219,"props":7123,"children":7124},{"style":377},[7125],{"type":51,"value":7126}," Error",{"type":42,"tag":219,"props":7128,"children":7129},{"style":237},[7130],{"type":51,"value":1509},{"type":42,"tag":219,"props":7132,"children":7133},{"style":243},[7134],{"type":51,"value":1012},{"type":42,"tag":219,"props":7136,"children":7137},{"style":237},[7138],{"type":51,"value":960},{"type":42,"tag":219,"props":7140,"children":7141},{"style":243},[7142],{"type":51,"value":1049},{"type":42,"tag":219,"props":7144,"children":7145},{"style":237},[7146],{"type":51,"value":2727},{"type":42,"tag":219,"props":7148,"children":7149},{"style":237},[7150],{"type":51,"value":261},{"type":42,"tag":219,"props":7152,"children":7153},{"style":264},[7154],{"type":51,"value":7155},"Work IQ query failed",{"type":42,"tag":219,"props":7157,"children":7158},{"style":237},[7159],{"type":51,"value":272},{"type":42,"tag":219,"props":7161,"children":7162},{"class":221,"line":532},[7163,7168,7172,7176,7180,7184,7189,7193,7197,7201],{"type":42,"tag":219,"props":7164,"children":7165},{"style":243},[7166],{"type":51,"value":7167},"    console",{"type":42,"tag":219,"props":7169,"children":7170},{"style":237},[7171],{"type":51,"value":960},{"type":42,"tag":219,"props":7173,"children":7174},{"style":888},[7175],{"type":51,"value":984},{"type":42,"tag":219,"props":7177,"children":7178},{"style":392},[7179],{"type":51,"value":896},{"type":42,"tag":219,"props":7181,"children":7182},{"style":237},[7183],{"type":51,"value":1193},{"type":42,"tag":219,"props":7185,"children":7186},{"style":264},[7187],{"type":51,"value":7188},"Work IQ Error:",{"type":42,"tag":219,"props":7190,"children":7191},{"style":237},[7192],{"type":51,"value":1193},{"type":42,"tag":219,"props":7194,"children":7195},{"style":237},[7196],{"type":51,"value":481},{"type":42,"tag":219,"props":7198,"children":7199},{"style":243},[7200],{"type":51,"value":7108},{"type":42,"tag":219,"props":7202,"children":7203},{"style":392},[7204],{"type":51,"value":1329},{"type":42,"tag":219,"props":7206,"children":7207},{"class":221,"line":548},[7208,7213],{"type":42,"tag":219,"props":7209,"children":7210},{"style":226},[7211],{"type":51,"value":7212},"    throw",{"type":42,"tag":219,"props":7214,"children":7215},{"style":243},[7216],{"type":51,"value":7217}," error\n",{"type":42,"tag":219,"props":7219,"children":7220},{"class":221,"line":564},[7221],{"type":42,"tag":219,"props":7222,"children":7223},{"style":237},[7224],{"type":51,"value":1066},{"type":42,"tag":219,"props":7226,"children":7227},{"class":221,"line":601},[7228],{"type":42,"tag":219,"props":7229,"children":7230},{"style":237},[7231],{"type":51,"value":500},{"type":42,"tag":43,"props":7233,"children":7234},{},[7235],{"type":42,"tag":47,"props":7236,"children":7237},{},[7238],{"type":51,"value":7239},"Key Patterns:",{"type":42,"tag":103,"props":7241,"children":7242},{},[7243,7248,7259,7264,7269],{"type":42,"tag":107,"props":7244,"children":7245},{},[7246],{"type":51,"value":7247},"✅ Initialize once, reuse across multiple calls",{"type":42,"tag":107,"props":7249,"children":7250},{},[7251,7253],{"type":51,"value":7252},"✅ Pass context-specific prompts to ",{"type":42,"tag":75,"props":7254,"children":7256},{"className":7255},[],[7257],{"type":51,"value":7258},"callCopilotChat()",{"type":42,"tag":107,"props":7260,"children":7261},{},[7262],{"type":51,"value":7263},"✅ Adapt prompts for your specific scenario (meetings, priorities, analysis, etc.)",{"type":42,"tag":107,"props":7265,"children":7266},{},[7267],{"type":51,"value":7268},"✅ Session automatically reinitializes if \"Session not found\" error occurs",{"type":42,"tag":107,"props":7270,"children":7271},{},[7272],{"type":51,"value":7273},"✅ Conversation ID is automatically persisted across calls for multi-turn chats",{"type":42,"tag":84,"props":7275,"children":7277},{"id":7276},"prompt-structure",[7278],{"type":51,"value":7279},"Prompt Structure",{"type":42,"tag":43,"props":7281,"children":7282},{},[7283,7285,7290],{"type":51,"value":7284},"Work IQ responds well to ",{"type":42,"tag":47,"props":7286,"children":7287},{},[7288],{"type":51,"value":7289},"context-rich, structured prompts",{"type":51,"value":7291},". Use this pattern and adapt it for your specific scenario:",{"type":42,"tag":208,"props":7293,"children":7295},{"className":210,"code":7294,"language":212,"meta":213,"style":213},"\u002F\u002F Generic pattern to adapt for your use case:\nconst prompt = `\nYou are [role\u002Fexpert description].\n\n**Context:**\n- [Relevant data or background information]\n- [Additional context as needed]\n\n**Task:** [Clear, specific instruction]\n\n**Format:** [If you need structured output, specify the format]\n- Use markdown with clear section headings (## Section, ## Action Items, etc.)\n- Specify limits (word count, number of items, etc.)\n`.trim()\n\nconst { text } = await workIqSession.callCopilotChat(prompt)\n",[7296],{"type":42,"tag":75,"props":7297,"children":7298},{"__ignoreMap":213},[7299,7307,7328,7336,7343,7351,7359,7367,7374,7382,7389,7397,7405,7413,7433,7440],{"type":42,"tag":219,"props":7300,"children":7301},{"class":221,"line":222},[7302],{"type":42,"tag":219,"props":7303,"children":7304},{"style":5097},[7305],{"type":51,"value":7306},"\u002F\u002F Generic pattern to adapt for your use case:\n",{"type":42,"tag":219,"props":7308,"children":7309},{"class":221,"line":23},[7310,7314,7319,7323],{"type":42,"tag":219,"props":7311,"children":7312},{"style":371},[7313],{"type":51,"value":6894},{"type":42,"tag":219,"props":7315,"children":7316},{"style":243},[7317],{"type":51,"value":7318}," prompt ",{"type":42,"tag":219,"props":7320,"children":7321},{"style":237},[7322],{"type":51,"value":6904},{"type":42,"tag":219,"props":7324,"children":7325},{"style":237},[7326],{"type":51,"value":7327}," `\n",{"type":42,"tag":219,"props":7329,"children":7330},{"class":221,"line":27},[7331],{"type":42,"tag":219,"props":7332,"children":7333},{"style":264},[7334],{"type":51,"value":7335},"You are [role\u002Fexpert description].\n",{"type":42,"tag":219,"props":7337,"children":7338},{"class":221,"line":353},[7339],{"type":42,"tag":219,"props":7340,"children":7341},{"emptyLinePlaceholder":35},[7342],{"type":51,"value":359},{"type":42,"tag":219,"props":7344,"children":7345},{"class":221,"line":362},[7346],{"type":42,"tag":219,"props":7347,"children":7348},{"style":264},[7349],{"type":51,"value":7350},"**Context:**\n",{"type":42,"tag":219,"props":7352,"children":7353},{"class":221,"line":388},[7354],{"type":42,"tag":219,"props":7355,"children":7356},{"style":264},[7357],{"type":51,"value":7358},"- [Relevant data or background information]\n",{"type":42,"tag":219,"props":7360,"children":7361},{"class":221,"line":415},[7362],{"type":42,"tag":219,"props":7363,"children":7364},{"style":264},[7365],{"type":51,"value":7366},"- [Additional context as needed]\n",{"type":42,"tag":219,"props":7368,"children":7369},{"class":221,"line":434},[7370],{"type":42,"tag":219,"props":7371,"children":7372},{"emptyLinePlaceholder":35},[7373],{"type":51,"value":359},{"type":42,"tag":219,"props":7375,"children":7376},{"class":221,"line":451},[7377],{"type":42,"tag":219,"props":7378,"children":7379},{"style":264},[7380],{"type":51,"value":7381},"**Task:** [Clear, specific instruction]\n",{"type":42,"tag":219,"props":7383,"children":7384},{"class":221,"line":494},[7385],{"type":42,"tag":219,"props":7386,"children":7387},{"emptyLinePlaceholder":35},[7388],{"type":51,"value":359},{"type":42,"tag":219,"props":7390,"children":7391},{"class":221,"line":503},[7392],{"type":42,"tag":219,"props":7393,"children":7394},{"style":264},[7395],{"type":51,"value":7396},"**Format:** [If you need structured output, specify the format]\n",{"type":42,"tag":219,"props":7398,"children":7399},{"class":221,"line":511},[7400],{"type":42,"tag":219,"props":7401,"children":7402},{"style":264},[7403],{"type":51,"value":7404},"- Use markdown with clear section headings (## Section, ## Action Items, etc.)\n",{"type":42,"tag":219,"props":7406,"children":7407},{"class":221,"line":532},[7408],{"type":42,"tag":219,"props":7409,"children":7410},{"style":264},[7411],{"type":51,"value":7412},"- Specify limits (word count, number of items, etc.)\n",{"type":42,"tag":219,"props":7414,"children":7415},{"class":221,"line":548},[7416,7421,7425,7429],{"type":42,"tag":219,"props":7417,"children":7418},{"style":237},[7419],{"type":51,"value":7420},"`",{"type":42,"tag":219,"props":7422,"children":7423},{"style":237},[7424],{"type":51,"value":960},{"type":42,"tag":219,"props":7426,"children":7427},{"style":888},[7428],{"type":51,"value":1469},{"type":42,"tag":219,"props":7430,"children":7431},{"style":243},[7432],{"type":51,"value":2859},{"type":42,"tag":219,"props":7434,"children":7435},{"class":221,"line":564},[7436],{"type":42,"tag":219,"props":7437,"children":7438},{"emptyLinePlaceholder":35},[7439],{"type":51,"value":359},{"type":42,"tag":219,"props":7441,"children":7442},{"class":221,"line":601},[7443,7447,7451,7456,7461,7465,7469,7473,7477,7481],{"type":42,"tag":219,"props":7444,"children":7445},{"style":371},[7446],{"type":51,"value":6894},{"type":42,"tag":219,"props":7448,"children":7449},{"style":237},[7450],{"type":51,"value":240},{"type":42,"tag":219,"props":7452,"children":7453},{"style":243},[7454],{"type":51,"value":7455}," text ",{"type":42,"tag":219,"props":7457,"children":7458},{"style":237},[7459],{"type":51,"value":7460},"}",{"type":42,"tag":219,"props":7462,"children":7463},{"style":237},[7464],{"type":51,"value":705},{"type":42,"tag":219,"props":7466,"children":7467},{"style":226},[7468],{"type":51,"value":3814},{"type":42,"tag":219,"props":7470,"children":7471},{"style":243},[7472],{"type":51,"value":7036},{"type":42,"tag":219,"props":7474,"children":7475},{"style":237},[7476],{"type":51,"value":960},{"type":42,"tag":219,"props":7478,"children":7479},{"style":888},[7480],{"type":51,"value":7045},{"type":42,"tag":219,"props":7482,"children":7483},{"style":243},[7484],{"type":51,"value":7485},"(prompt)\n",{"type":42,"tag":43,"props":7487,"children":7488},{},[7489],{"type":42,"tag":47,"props":7490,"children":7491},{},[7492],{"type":51,"value":7493},"How to adapt this pattern:",{"type":42,"tag":103,"props":7495,"children":7496},{},[7497,7502,7507,7512],{"type":42,"tag":107,"props":7498,"children":7499},{},[7500],{"type":51,"value":7501},"✅ Customize the role and context for your scenario (e.g., \"meeting summarizer\", \"action item prioritizer\", \"project analyst\")",{"type":42,"tag":107,"props":7503,"children":7504},{},[7505],{"type":51,"value":7506},"✅ Add domain-specific information from your app",{"type":42,"tag":107,"props":7508,"children":7509},{},[7510],{"type":51,"value":7511},"✅ Define the exact format you need (structured markdown, JSON, bullets, etc.)",{"type":42,"tag":107,"props":7513,"children":7514},{},[7515],{"type":51,"value":7516},"✅ Adjust word limits and output expectations for your use case",{"type":42,"tag":43,"props":7518,"children":7519},{},[7520],{"type":42,"tag":47,"props":7521,"children":7522},{},[7523],{"type":51,"value":7524},"Examples of adaptable scenarios:",{"type":42,"tag":103,"props":7526,"children":7527},{},[7528,7533,7538,7543,7548],{"type":42,"tag":107,"props":7529,"children":7530},{},[7531],{"type":51,"value":7532},"Meeting summaries with action items",{"type":42,"tag":107,"props":7534,"children":7535},{},[7536],{"type":51,"value":7537},"Prioritized daily action items from emails",{"type":42,"tag":107,"props":7539,"children":7540},{},[7541],{"type":51,"value":7542},"Project risk analysis from documents",{"type":42,"tag":107,"props":7544,"children":7545},{},[7546],{"type":51,"value":7547},"Team performance insights from communications",{"type":42,"tag":107,"props":7549,"children":7550},{},[7551],{"type":51,"value":7552},"Or any other knowledge-grounded analysis task",{"type":42,"tag":84,"props":7554,"children":7556},{"id":7555},"response-parsing",[7557],{"type":51,"value":7558},"Response Parsing",{"type":42,"tag":43,"props":7560,"children":7561},{},[7562],{"type":51,"value":7563},"Work IQ returns text that you parse based on your use case.",{"type":42,"tag":43,"props":7565,"children":7566},{},[7567,7572],{"type":42,"tag":47,"props":7568,"children":7569},{},[7570],{"type":51,"value":7571},"For structured markdown output",{"type":51,"value":7573}," (when you asked for ## sections):",{"type":42,"tag":208,"props":7575,"children":7577},{"className":210,"code":7576,"language":212,"meta":213,"style":213},"const { text } = await workIqSession.callCopilotChat(prompt)\n\n\u002F\u002F Extract markdown sections\nfunction extractSection(text: string, sectionName: string): string[] {\n  const regex = new RegExp(`##\\\\s*${sectionName}\\\\s*([\\\\s\\\\S]*?)(?=##|$)`)\n  const match = text.match(regex)\n  if (!match) return []\n  \n  return match[1]\n    .split('\\n')\n    .filter(line => line.trim().startsWith('-'))\n    .map(line => line.replace(\u002F^-\\s*\u002F, '').trim())\n    .filter(Boolean)\n}\n\nconst summary = extractSection(text, 'Summary')\nconst actionItems = extractSection(text, 'Action Items')\n",[7578],{"type":42,"tag":75,"props":7579,"children":7580},{"__ignoreMap":213},[7581,7624,7631,7639,7701,7797,7839,7870,7878,7901,7932,8001,8083,8107,8114,8121,8167],{"type":42,"tag":219,"props":7582,"children":7583},{"class":221,"line":222},[7584,7588,7592,7596,7600,7604,7608,7612,7616,7620],{"type":42,"tag":219,"props":7585,"children":7586},{"style":371},[7587],{"type":51,"value":6894},{"type":42,"tag":219,"props":7589,"children":7590},{"style":237},[7591],{"type":51,"value":240},{"type":42,"tag":219,"props":7593,"children":7594},{"style":243},[7595],{"type":51,"value":7455},{"type":42,"tag":219,"props":7597,"children":7598},{"style":237},[7599],{"type":51,"value":7460},{"type":42,"tag":219,"props":7601,"children":7602},{"style":237},[7603],{"type":51,"value":705},{"type":42,"tag":219,"props":7605,"children":7606},{"style":226},[7607],{"type":51,"value":3814},{"type":42,"tag":219,"props":7609,"children":7610},{"style":243},[7611],{"type":51,"value":7036},{"type":42,"tag":219,"props":7613,"children":7614},{"style":237},[7615],{"type":51,"value":960},{"type":42,"tag":219,"props":7617,"children":7618},{"style":888},[7619],{"type":51,"value":7045},{"type":42,"tag":219,"props":7621,"children":7622},{"style":243},[7623],{"type":51,"value":7485},{"type":42,"tag":219,"props":7625,"children":7626},{"class":221,"line":23},[7627],{"type":42,"tag":219,"props":7628,"children":7629},{"emptyLinePlaceholder":35},[7630],{"type":51,"value":359},{"type":42,"tag":219,"props":7632,"children":7633},{"class":221,"line":27},[7634],{"type":42,"tag":219,"props":7635,"children":7636},{"style":5097},[7637],{"type":51,"value":7638},"\u002F\u002F Extract markdown sections\n",{"type":42,"tag":219,"props":7640,"children":7641},{"class":221,"line":353},[7642,7646,7651,7655,7659,7663,7667,7671,7676,7680,7684,7688,7692,7697],{"type":42,"tag":219,"props":7643,"children":7644},{"style":371},[7645],{"type":51,"value":885},{"type":42,"tag":219,"props":7647,"children":7648},{"style":888},[7649],{"type":51,"value":7650}," extractSection",{"type":42,"tag":219,"props":7652,"children":7653},{"style":237},[7654],{"type":51,"value":896},{"type":42,"tag":219,"props":7656,"children":7657},{"style":899},[7658],{"type":51,"value":51},{"type":42,"tag":219,"props":7660,"children":7661},{"style":237},[7662],{"type":51,"value":206},{"type":42,"tag":219,"props":7664,"children":7665},{"style":377},[7666],{"type":51,"value":648},{"type":42,"tag":219,"props":7668,"children":7669},{"style":237},[7670],{"type":51,"value":481},{"type":42,"tag":219,"props":7672,"children":7673},{"style":899},[7674],{"type":51,"value":7675}," sectionName",{"type":42,"tag":219,"props":7677,"children":7678},{"style":237},[7679],{"type":51,"value":206},{"type":42,"tag":219,"props":7681,"children":7682},{"style":377},[7683],{"type":51,"value":648},{"type":42,"tag":219,"props":7685,"children":7686},{"style":237},[7687],{"type":51,"value":2782},{"type":42,"tag":219,"props":7689,"children":7690},{"style":377},[7691],{"type":51,"value":648},{"type":42,"tag":219,"props":7693,"children":7694},{"style":243},[7695],{"type":51,"value":7696},"[] ",{"type":42,"tag":219,"props":7698,"children":7699},{"style":237},[7700],{"type":51,"value":994},{"type":42,"tag":219,"props":7702,"children":7703},{"class":221,"line":362},[7704,7708,7713,7717,7721,7726,7730,7734,7739,7744,7749,7753,7758,7762,7766,7771,7775,7780,7784,7789,7793],{"type":42,"tag":219,"props":7705,"children":7706},{"style":371},[7707],{"type":51,"value":1083},{"type":42,"tag":219,"props":7709,"children":7710},{"style":243},[7711],{"type":51,"value":7712}," regex",{"type":42,"tag":219,"props":7714,"children":7715},{"style":237},[7716],{"type":51,"value":705},{"type":42,"tag":219,"props":7718,"children":7719},{"style":237},[7720],{"type":51,"value":6909},{"type":42,"tag":219,"props":7722,"children":7723},{"style":888},[7724],{"type":51,"value":7725}," RegExp",{"type":42,"tag":219,"props":7727,"children":7728},{"style":392},[7729],{"type":51,"value":896},{"type":42,"tag":219,"props":7731,"children":7732},{"style":237},[7733],{"type":51,"value":7420},{"type":42,"tag":219,"props":7735,"children":7736},{"style":264},[7737],{"type":51,"value":7738},"##",{"type":42,"tag":219,"props":7740,"children":7741},{"style":243},[7742],{"type":51,"value":7743},"\\\\",{"type":42,"tag":219,"props":7745,"children":7746},{"style":264},[7747],{"type":51,"value":7748},"s*",{"type":42,"tag":219,"props":7750,"children":7751},{"style":237},[7752],{"type":51,"value":5619},{"type":42,"tag":219,"props":7754,"children":7755},{"style":243},[7756],{"type":51,"value":7757},"sectionName",{"type":42,"tag":219,"props":7759,"children":7760},{"style":237},[7761],{"type":51,"value":7460},{"type":42,"tag":219,"props":7763,"children":7764},{"style":243},[7765],{"type":51,"value":7743},{"type":42,"tag":219,"props":7767,"children":7768},{"style":264},[7769],{"type":51,"value":7770},"s*([",{"type":42,"tag":219,"props":7772,"children":7773},{"style":243},[7774],{"type":51,"value":7743},{"type":42,"tag":219,"props":7776,"children":7777},{"style":264},[7778],{"type":51,"value":7779},"s",{"type":42,"tag":219,"props":7781,"children":7782},{"style":243},[7783],{"type":51,"value":7743},{"type":42,"tag":219,"props":7785,"children":7786},{"style":264},[7787],{"type":51,"value":7788},"S]*?)(?=##|$)",{"type":42,"tag":219,"props":7790,"children":7791},{"style":237},[7792],{"type":51,"value":7420},{"type":42,"tag":219,"props":7794,"children":7795},{"style":392},[7796],{"type":51,"value":1329},{"type":42,"tag":219,"props":7798,"children":7799},{"class":221,"line":388},[7800,7804,7809,7813,7817,7821,7826,7830,7835],{"type":42,"tag":219,"props":7801,"children":7802},{"style":371},[7803],{"type":51,"value":1083},{"type":42,"tag":219,"props":7805,"children":7806},{"style":243},[7807],{"type":51,"value":7808}," match",{"type":42,"tag":219,"props":7810,"children":7811},{"style":237},[7812],{"type":51,"value":705},{"type":42,"tag":219,"props":7814,"children":7815},{"style":243},[7816],{"type":51,"value":4085},{"type":42,"tag":219,"props":7818,"children":7819},{"style":237},[7820],{"type":51,"value":960},{"type":42,"tag":219,"props":7822,"children":7823},{"style":888},[7824],{"type":51,"value":7825},"match",{"type":42,"tag":219,"props":7827,"children":7828},{"style":392},[7829],{"type":51,"value":896},{"type":42,"tag":219,"props":7831,"children":7832},{"style":243},[7833],{"type":51,"value":7834},"regex",{"type":42,"tag":219,"props":7836,"children":7837},{"style":392},[7838],{"type":51,"value":1329},{"type":42,"tag":219,"props":7840,"children":7841},{"class":221,"line":415},[7842,7846,7850,7854,7858,7862,7866],{"type":42,"tag":219,"props":7843,"children":7844},{"style":226},[7845],{"type":51,"value":941},{"type":42,"tag":219,"props":7847,"children":7848},{"style":392},[7849],{"type":51,"value":946},{"type":42,"tag":219,"props":7851,"children":7852},{"style":237},[7853],{"type":51,"value":951},{"type":42,"tag":219,"props":7855,"children":7856},{"style":243},[7857],{"type":51,"value":7825},{"type":42,"tag":219,"props":7859,"children":7860},{"style":392},[7861],{"type":51,"value":989},{"type":42,"tag":219,"props":7863,"children":7864},{"style":226},[7865],{"type":51,"value":1148},{"type":42,"tag":219,"props":7867,"children":7868},{"style":392},[7869],{"type":51,"value":6226},{"type":42,"tag":219,"props":7871,"children":7872},{"class":221,"line":434},[7873],{"type":42,"tag":219,"props":7874,"children":7875},{"style":392},[7876],{"type":51,"value":7877},"  \n",{"type":42,"tag":219,"props":7879,"children":7880},{"class":221,"line":451},[7881,7885,7889,7893,7897],{"type":42,"tag":219,"props":7882,"children":7883},{"style":226},[7884],{"type":51,"value":1698},{"type":42,"tag":219,"props":7886,"children":7887},{"style":243},[7888],{"type":51,"value":7808},{"type":42,"tag":219,"props":7890,"children":7891},{"style":392},[7892],{"type":51,"value":2344},{"type":42,"tag":219,"props":7894,"children":7895},{"style":1453},[7896],{"type":51,"value":6395},{"type":42,"tag":219,"props":7898,"children":7899},{"style":392},[7900],{"type":51,"value":5459},{"type":42,"tag":219,"props":7902,"children":7903},{"class":221,"line":494},[7904,7908,7912,7916,7920,7924,7928],{"type":42,"tag":219,"props":7905,"children":7906},{"style":237},[7907],{"type":51,"value":4806},{"type":42,"tag":219,"props":7909,"children":7910},{"style":888},[7911],{"type":51,"value":1296},{"type":42,"tag":219,"props":7913,"children":7914},{"style":392},[7915],{"type":51,"value":896},{"type":42,"tag":219,"props":7917,"children":7918},{"style":237},[7919],{"type":51,"value":1193},{"type":42,"tag":219,"props":7921,"children":7922},{"style":243},[7923],{"type":51,"value":1320},{"type":42,"tag":219,"props":7925,"children":7926},{"style":237},[7927],{"type":51,"value":1193},{"type":42,"tag":219,"props":7929,"children":7930},{"style":392},[7931],{"type":51,"value":1329},{"type":42,"tag":219,"props":7933,"children":7934},{"class":221,"line":503},[7935,7939,7943,7947,7951,7955,7959,7963,7967,7972,7976,7980,7984,7988,7993,7997],{"type":42,"tag":219,"props":7936,"children":7937},{"style":237},[7938],{"type":51,"value":4806},{"type":42,"tag":219,"props":7940,"children":7941},{"style":888},[7942],{"type":51,"value":1342},{"type":42,"tag":219,"props":7944,"children":7945},{"style":392},[7946],{"type":51,"value":896},{"type":42,"tag":219,"props":7948,"children":7949},{"style":899},[7950],{"type":51,"value":221},{"type":42,"tag":219,"props":7952,"children":7953},{"style":371},[7954],{"type":51,"value":1364},{"type":42,"tag":219,"props":7956,"children":7957},{"style":243},[7958],{"type":51,"value":1369},{"type":42,"tag":219,"props":7960,"children":7961},{"style":237},[7962],{"type":51,"value":960},{"type":42,"tag":219,"props":7964,"children":7965},{"style":888},[7966],{"type":51,"value":1469},{"type":42,"tag":219,"props":7968,"children":7969},{"style":392},[7970],{"type":51,"value":7971},"()",{"type":42,"tag":219,"props":7973,"children":7974},{"style":237},[7975],{"type":51,"value":960},{"type":42,"tag":219,"props":7977,"children":7978},{"style":888},[7979],{"type":51,"value":1378},{"type":42,"tag":219,"props":7981,"children":7982},{"style":392},[7983],{"type":51,"value":896},{"type":42,"tag":219,"props":7985,"children":7986},{"style":237},[7987],{"type":51,"value":1193},{"type":42,"tag":219,"props":7989,"children":7990},{"style":264},[7991],{"type":51,"value":7992},"-",{"type":42,"tag":219,"props":7994,"children":7995},{"style":237},[7996],{"type":51,"value":1193},{"type":42,"tag":219,"props":7998,"children":7999},{"style":392},[8000],{"type":51,"value":1400},{"type":42,"tag":219,"props":8002,"children":8003},{"class":221,"line":511},[8004,8008,8012,8016,8020,8024,8028,8032,8037,8041,8045,8049,8054,8059,8063,8067,8071,8075,8079],{"type":42,"tag":219,"props":8005,"children":8006},{"style":237},[8007],{"type":51,"value":4806},{"type":42,"tag":219,"props":8009,"children":8010},{"style":888},[8011],{"type":51,"value":1413},{"type":42,"tag":219,"props":8013,"children":8014},{"style":392},[8015],{"type":51,"value":896},{"type":42,"tag":219,"props":8017,"children":8018},{"style":899},[8019],{"type":51,"value":221},{"type":42,"tag":219,"props":8021,"children":8022},{"style":371},[8023],{"type":51,"value":1364},{"type":42,"tag":219,"props":8025,"children":8026},{"style":243},[8027],{"type":51,"value":1369},{"type":42,"tag":219,"props":8029,"children":8030},{"style":237},[8031],{"type":51,"value":960},{"type":42,"tag":219,"props":8033,"children":8034},{"style":888},[8035],{"type":51,"value":8036},"replace",{"type":42,"tag":219,"props":8038,"children":8039},{"style":392},[8040],{"type":51,"value":896},{"type":42,"tag":219,"props":8042,"children":8043},{"style":237},[8044],{"type":51,"value":1305},{"type":42,"tag":219,"props":8046,"children":8047},{"style":226},[8048],{"type":51,"value":5382},{"type":42,"tag":219,"props":8050,"children":8051},{"style":264},[8052],{"type":51,"value":8053},"-\\s",{"type":42,"tag":219,"props":8055,"children":8056},{"style":237},[8057],{"type":51,"value":8058},"*\u002F",{"type":42,"tag":219,"props":8060,"children":8061},{"style":237},[8062],{"type":51,"value":481},{"type":42,"tag":219,"props":8064,"children":8065},{"style":237},[8066],{"type":51,"value":2841},{"type":42,"tag":219,"props":8068,"children":8069},{"style":392},[8070],{"type":51,"value":1359},{"type":42,"tag":219,"props":8072,"children":8073},{"style":237},[8074],{"type":51,"value":960},{"type":42,"tag":219,"props":8076,"children":8077},{"style":888},[8078],{"type":51,"value":1469},{"type":42,"tag":219,"props":8080,"children":8081},{"style":392},[8082],{"type":51,"value":1474},{"type":42,"tag":219,"props":8084,"children":8085},{"class":221,"line":532},[8086,8090,8094,8098,8103],{"type":42,"tag":219,"props":8087,"children":8088},{"style":237},[8089],{"type":51,"value":4806},{"type":42,"tag":219,"props":8091,"children":8092},{"style":888},[8093],{"type":51,"value":1342},{"type":42,"tag":219,"props":8095,"children":8096},{"style":392},[8097],{"type":51,"value":896},{"type":42,"tag":219,"props":8099,"children":8100},{"style":243},[8101],{"type":51,"value":8102},"Boolean",{"type":42,"tag":219,"props":8104,"children":8105},{"style":392},[8106],{"type":51,"value":1329},{"type":42,"tag":219,"props":8108,"children":8109},{"class":221,"line":548},[8110],{"type":42,"tag":219,"props":8111,"children":8112},{"style":237},[8113],{"type":51,"value":500},{"type":42,"tag":219,"props":8115,"children":8116},{"class":221,"line":564},[8117],{"type":42,"tag":219,"props":8118,"children":8119},{"emptyLinePlaceholder":35},[8120],{"type":51,"value":359},{"type":42,"tag":219,"props":8122,"children":8123},{"class":221,"line":601},[8124,8128,8133,8137,8141,8146,8150,8154,8159,8163],{"type":42,"tag":219,"props":8125,"children":8126},{"style":371},[8127],{"type":51,"value":6894},{"type":42,"tag":219,"props":8129,"children":8130},{"style":243},[8131],{"type":51,"value":8132}," summary ",{"type":42,"tag":219,"props":8134,"children":8135},{"style":237},[8136],{"type":51,"value":6904},{"type":42,"tag":219,"props":8138,"children":8139},{"style":888},[8140],{"type":51,"value":7650},{"type":42,"tag":219,"props":8142,"children":8143},{"style":243},[8144],{"type":51,"value":8145},"(text",{"type":42,"tag":219,"props":8147,"children":8148},{"style":237},[8149],{"type":51,"value":481},{"type":42,"tag":219,"props":8151,"children":8152},{"style":237},[8153],{"type":51,"value":261},{"type":42,"tag":219,"props":8155,"children":8156},{"style":264},[8157],{"type":51,"value":8158},"Summary",{"type":42,"tag":219,"props":8160,"children":8161},{"style":237},[8162],{"type":51,"value":1193},{"type":42,"tag":219,"props":8164,"children":8165},{"style":243},[8166],{"type":51,"value":1329},{"type":42,"tag":219,"props":8168,"children":8169},{"class":221,"line":673},[8170,8174,8179,8183,8187,8191,8195,8199,8204,8208],{"type":42,"tag":219,"props":8171,"children":8172},{"style":371},[8173],{"type":51,"value":6894},{"type":42,"tag":219,"props":8175,"children":8176},{"style":243},[8177],{"type":51,"value":8178}," actionItems ",{"type":42,"tag":219,"props":8180,"children":8181},{"style":237},[8182],{"type":51,"value":6904},{"type":42,"tag":219,"props":8184,"children":8185},{"style":888},[8186],{"type":51,"value":7650},{"type":42,"tag":219,"props":8188,"children":8189},{"style":243},[8190],{"type":51,"value":8145},{"type":42,"tag":219,"props":8192,"children":8193},{"style":237},[8194],{"type":51,"value":481},{"type":42,"tag":219,"props":8196,"children":8197},{"style":237},[8198],{"type":51,"value":261},{"type":42,"tag":219,"props":8200,"children":8201},{"style":264},[8202],{"type":51,"value":8203},"Action Items",{"type":42,"tag":219,"props":8205,"children":8206},{"style":237},[8207],{"type":51,"value":1193},{"type":42,"tag":219,"props":8209,"children":8210},{"style":243},[8211],{"type":51,"value":1329},{"type":42,"tag":43,"props":8213,"children":8214},{},[8215,8220],{"type":42,"tag":47,"props":8216,"children":8217},{},[8218],{"type":51,"value":8219},"For unstructured output",{"type":51,"value":8221}," (when format is not critical):",{"type":42,"tag":208,"props":8223,"children":8225},{"className":210,"code":8224,"language":212,"meta":213,"style":213},"const { text } = await workIqSession.callCopilotChat(prompt)\n\u002F\u002F Use text directly - display as-is or format as needed for your UI\n",[8226],{"type":42,"tag":75,"props":8227,"children":8228},{"__ignoreMap":213},[8229,8272],{"type":42,"tag":219,"props":8230,"children":8231},{"class":221,"line":222},[8232,8236,8240,8244,8248,8252,8256,8260,8264,8268],{"type":42,"tag":219,"props":8233,"children":8234},{"style":371},[8235],{"type":51,"value":6894},{"type":42,"tag":219,"props":8237,"children":8238},{"style":237},[8239],{"type":51,"value":240},{"type":42,"tag":219,"props":8241,"children":8242},{"style":243},[8243],{"type":51,"value":7455},{"type":42,"tag":219,"props":8245,"children":8246},{"style":237},[8247],{"type":51,"value":7460},{"type":42,"tag":219,"props":8249,"children":8250},{"style":237},[8251],{"type":51,"value":705},{"type":42,"tag":219,"props":8253,"children":8254},{"style":226},[8255],{"type":51,"value":3814},{"type":42,"tag":219,"props":8257,"children":8258},{"style":243},[8259],{"type":51,"value":7036},{"type":42,"tag":219,"props":8261,"children":8262},{"style":237},[8263],{"type":51,"value":960},{"type":42,"tag":219,"props":8265,"children":8266},{"style":888},[8267],{"type":51,"value":7045},{"type":42,"tag":219,"props":8269,"children":8270},{"style":243},[8271],{"type":51,"value":7485},{"type":42,"tag":219,"props":8273,"children":8274},{"class":221,"line":23},[8275],{"type":42,"tag":219,"props":8276,"children":8277},{"style":5097},[8278],{"type":51,"value":8279},"\u002F\u002F Use text directly - display as-is or format as needed for your UI\n",{"type":42,"tag":43,"props":8281,"children":8282},{},[8283],{"type":42,"tag":47,"props":8284,"children":8285},{},[8286],{"type":51,"value":8287},"Adjust parsing based on:",{"type":42,"tag":103,"props":8289,"children":8290},{},[8291,8296,8301],{"type":42,"tag":107,"props":8292,"children":8293},{},[8294],{"type":51,"value":8295},"✅ The format you specified in the prompt",{"type":42,"tag":107,"props":8297,"children":8298},{},[8299],{"type":51,"value":8300},"✅ Your response structure (markdown sections, JSON, numbered lists, etc.)",{"type":42,"tag":107,"props":8302,"children":8303},{},[8304],{"type":51,"value":8305},"✅ Both structured (markdown, JSON) and unstructured (text) outputs",{"type":42,"tag":84,"props":8307,"children":8309},{"id":8308},"error-handling-auto-recovery",[8310],{"type":51,"value":8311},"Error Handling & Auto-Recovery",{"type":42,"tag":43,"props":8313,"children":8314},{},[8315],{"type":51,"value":8316},"McpSession automatically handles \"Session not found\" errors by reinitializing. Surface errors appropriately:",{"type":42,"tag":208,"props":8318,"children":8320},{"className":210,"code":8319,"language":212,"meta":213,"style":213},"try {\n  const { text } = await workIqSession.callCopilotChat(prompt)\n  \n  if (text.includes('Error:')) {\n    throw new Error(text)\n  }\n  \n  return text\n} catch (error) {\n  const errorMsg = error instanceof Error ? error.message : 'Query failed'\n  console.error('Work IQ Error:', errorMsg)\n  throw error\n}\n",[8321],{"type":42,"tag":75,"props":8322,"children":8323},{"__ignoreMap":213},[8324,8336,8388,8395,8443,8470,8477,8484,8495,8515,8576,8620,8632],{"type":42,"tag":219,"props":8325,"children":8326},{"class":221,"line":222},[8327,8332],{"type":42,"tag":219,"props":8328,"children":8329},{"style":226},[8330],{"type":51,"value":8331},"try",{"type":42,"tag":219,"props":8333,"children":8334},{"style":237},[8335],{"type":51,"value":385},{"type":42,"tag":219,"props":8337,"children":8338},{"class":221,"line":23},[8339,8343,8347,8351,8355,8359,8363,8367,8371,8375,8379,8384],{"type":42,"tag":219,"props":8340,"children":8341},{"style":371},[8342],{"type":51,"value":1083},{"type":42,"tag":219,"props":8344,"children":8345},{"style":237},[8346],{"type":51,"value":240},{"type":42,"tag":219,"props":8348,"children":8349},{"style":243},[8350],{"type":51,"value":4085},{"type":42,"tag":219,"props":8352,"children":8353},{"style":237},[8354],{"type":51,"value":251},{"type":42,"tag":219,"props":8356,"children":8357},{"style":237},[8358],{"type":51,"value":705},{"type":42,"tag":219,"props":8360,"children":8361},{"style":226},[8362],{"type":51,"value":3814},{"type":42,"tag":219,"props":8364,"children":8365},{"style":243},[8366],{"type":51,"value":7036},{"type":42,"tag":219,"props":8368,"children":8369},{"style":237},[8370],{"type":51,"value":960},{"type":42,"tag":219,"props":8372,"children":8373},{"style":888},[8374],{"type":51,"value":7045},{"type":42,"tag":219,"props":8376,"children":8377},{"style":392},[8378],{"type":51,"value":896},{"type":42,"tag":219,"props":8380,"children":8381},{"style":243},[8382],{"type":51,"value":8383},"prompt",{"type":42,"tag":219,"props":8385,"children":8386},{"style":392},[8387],{"type":51,"value":1329},{"type":42,"tag":219,"props":8389,"children":8390},{"class":221,"line":27},[8391],{"type":42,"tag":219,"props":8392,"children":8393},{"style":392},[8394],{"type":51,"value":7877},{"type":42,"tag":219,"props":8396,"children":8397},{"class":221,"line":353},[8398,8402,8406,8410,8414,8418,8422,8426,8431,8435,8439],{"type":42,"tag":219,"props":8399,"children":8400},{"style":226},[8401],{"type":51,"value":941},{"type":42,"tag":219,"props":8403,"children":8404},{"style":392},[8405],{"type":51,"value":946},{"type":42,"tag":219,"props":8407,"children":8408},{"style":243},[8409],{"type":51,"value":51},{"type":42,"tag":219,"props":8411,"children":8412},{"style":237},[8413],{"type":51,"value":960},{"type":42,"tag":219,"props":8415,"children":8416},{"style":888},[8417],{"type":51,"value":2880},{"type":42,"tag":219,"props":8419,"children":8420},{"style":392},[8421],{"type":51,"value":896},{"type":42,"tag":219,"props":8423,"children":8424},{"style":237},[8425],{"type":51,"value":1193},{"type":42,"tag":219,"props":8427,"children":8428},{"style":264},[8429],{"type":51,"value":8430},"Error:",{"type":42,"tag":219,"props":8432,"children":8433},{"style":237},[8434],{"type":51,"value":1193},{"type":42,"tag":219,"props":8436,"children":8437},{"style":392},[8438],{"type":51,"value":3621},{"type":42,"tag":219,"props":8440,"children":8441},{"style":237},[8442],{"type":51,"value":994},{"type":42,"tag":219,"props":8444,"children":8445},{"class":221,"line":362},[8446,8450,8454,8458,8462,8466],{"type":42,"tag":219,"props":8447,"children":8448},{"style":226},[8449],{"type":51,"value":7212},{"type":42,"tag":219,"props":8451,"children":8452},{"style":237},[8453],{"type":51,"value":6909},{"type":42,"tag":219,"props":8455,"children":8456},{"style":888},[8457],{"type":51,"value":7126},{"type":42,"tag":219,"props":8459,"children":8460},{"style":392},[8461],{"type":51,"value":896},{"type":42,"tag":219,"props":8463,"children":8464},{"style":243},[8465],{"type":51,"value":51},{"type":42,"tag":219,"props":8467,"children":8468},{"style":392},[8469],{"type":51,"value":1329},{"type":42,"tag":219,"props":8471,"children":8472},{"class":221,"line":388},[8473],{"type":42,"tag":219,"props":8474,"children":8475},{"style":237},[8476],{"type":51,"value":1066},{"type":42,"tag":219,"props":8478,"children":8479},{"class":221,"line":415},[8480],{"type":42,"tag":219,"props":8481,"children":8482},{"style":392},[8483],{"type":51,"value":7877},{"type":42,"tag":219,"props":8485,"children":8486},{"class":221,"line":434},[8487,8491],{"type":42,"tag":219,"props":8488,"children":8489},{"style":226},[8490],{"type":51,"value":1698},{"type":42,"tag":219,"props":8492,"children":8493},{"style":243},[8494],{"type":51,"value":7069},{"type":42,"tag":219,"props":8496,"children":8497},{"class":221,"line":451},[8498,8502,8506,8511],{"type":42,"tag":219,"props":8499,"children":8500},{"style":237},[8501],{"type":51,"value":7460},{"type":42,"tag":219,"props":8503,"children":8504},{"style":226},[8505],{"type":51,"value":1615},{"type":42,"tag":219,"props":8507,"children":8508},{"style":243},[8509],{"type":51,"value":8510}," (error) ",{"type":42,"tag":219,"props":8512,"children":8513},{"style":237},[8514],{"type":51,"value":994},{"type":42,"tag":219,"props":8516,"children":8517},{"class":221,"line":494},[8518,8522,8527,8531,8535,8539,8543,8547,8551,8555,8559,8563,8567,8572],{"type":42,"tag":219,"props":8519,"children":8520},{"style":371},[8521],{"type":51,"value":1083},{"type":42,"tag":219,"props":8523,"children":8524},{"style":243},[8525],{"type":51,"value":8526}," errorMsg",{"type":42,"tag":219,"props":8528,"children":8529},{"style":237},[8530],{"type":51,"value":705},{"type":42,"tag":219,"props":8532,"children":8533},{"style":243},[8534],{"type":51,"value":1012},{"type":42,"tag":219,"props":8536,"children":8537},{"style":237},[8538],{"type":51,"value":7121},{"type":42,"tag":219,"props":8540,"children":8541},{"style":377},[8542],{"type":51,"value":7126},{"type":42,"tag":219,"props":8544,"children":8545},{"style":237},[8546],{"type":51,"value":1509},{"type":42,"tag":219,"props":8548,"children":8549},{"style":243},[8550],{"type":51,"value":1012},{"type":42,"tag":219,"props":8552,"children":8553},{"style":237},[8554],{"type":51,"value":960},{"type":42,"tag":219,"props":8556,"children":8557},{"style":243},[8558],{"type":51,"value":1049},{"type":42,"tag":219,"props":8560,"children":8561},{"style":237},[8562],{"type":51,"value":2727},{"type":42,"tag":219,"props":8564,"children":8565},{"style":237},[8566],{"type":51,"value":261},{"type":42,"tag":219,"props":8568,"children":8569},{"style":264},[8570],{"type":51,"value":8571},"Query failed",{"type":42,"tag":219,"props":8573,"children":8574},{"style":237},[8575],{"type":51,"value":272},{"type":42,"tag":219,"props":8577,"children":8578},{"class":221,"line":503},[8579,8584,8588,8592,8596,8600,8604,8608,8612,8616],{"type":42,"tag":219,"props":8580,"children":8581},{"style":243},[8582],{"type":51,"value":8583},"  console",{"type":42,"tag":219,"props":8585,"children":8586},{"style":237},[8587],{"type":51,"value":960},{"type":42,"tag":219,"props":8589,"children":8590},{"style":888},[8591],{"type":51,"value":984},{"type":42,"tag":219,"props":8593,"children":8594},{"style":392},[8595],{"type":51,"value":896},{"type":42,"tag":219,"props":8597,"children":8598},{"style":237},[8599],{"type":51,"value":1193},{"type":42,"tag":219,"props":8601,"children":8602},{"style":264},[8603],{"type":51,"value":7188},{"type":42,"tag":219,"props":8605,"children":8606},{"style":237},[8607],{"type":51,"value":1193},{"type":42,"tag":219,"props":8609,"children":8610},{"style":237},[8611],{"type":51,"value":481},{"type":42,"tag":219,"props":8613,"children":8614},{"style":243},[8615],{"type":51,"value":8526},{"type":42,"tag":219,"props":8617,"children":8618},{"style":392},[8619],{"type":51,"value":1329},{"type":42,"tag":219,"props":8621,"children":8622},{"class":221,"line":511},[8623,8628],{"type":42,"tag":219,"props":8624,"children":8625},{"style":226},[8626],{"type":51,"value":8627},"  throw",{"type":42,"tag":219,"props":8629,"children":8630},{"style":243},[8631],{"type":51,"value":7217},{"type":42,"tag":219,"props":8633,"children":8634},{"class":221,"line":532},[8635],{"type":42,"tag":219,"props":8636,"children":8637},{"style":237},[8638],{"type":51,"value":500},{"type":42,"tag":43,"props":8640,"children":8641},{},[8642],{"type":42,"tag":47,"props":8643,"children":8644},{},[8645],{"type":51,"value":8646},"What McpSession handles automatically:",{"type":42,"tag":103,"props":8648,"children":8649},{},[8650,8655,8660,8665],{"type":42,"tag":107,"props":8651,"children":8652},{},[8653],{"type":51,"value":8654},"✅ Detects \"Session not found\" (-32001) errors",{"type":42,"tag":107,"props":8656,"children":8657},{},[8658],{"type":51,"value":8659},"✅ Closes the session and auto-reinitializes",{"type":42,"tag":107,"props":8661,"children":8662},{},[8663],{"type":51,"value":8664},"✅ Retries the failed request with the new session",{"type":42,"tag":107,"props":8666,"children":8667},{},[8668],{"type":51,"value":8669},"✅ No manual retry logic needed",{"type":42,"tag":43,"props":8671,"children":8672},{},[8673],{"type":42,"tag":47,"props":8674,"children":8675},{},[8676],{"type":51,"value":8677},"You only need to:",{"type":42,"tag":103,"props":8679,"children":8680},{},[8681,8686,8691],{"type":42,"tag":107,"props":8682,"children":8683},{},[8684],{"type":51,"value":8685},"✅ Wrap calls in try\u002Fcatch",{"type":42,"tag":107,"props":8687,"children":8688},{},[8689],{"type":51,"value":8690},"✅ Surface errors to users appropriately",{"type":42,"tag":107,"props":8692,"children":8693},{},[8694],{"type":51,"value":8695},"✅ Let exceptions propagate for app-level error handling",{"type":42,"tag":141,"props":8697,"children":8698},{},[],{"type":42,"tag":84,"props":8700,"children":8702},{"id":8701},"implementation-guidance",[8703],{"type":51,"value":8704},"Implementation Guidance",{"type":42,"tag":43,"props":8706,"children":8707},{},[8708,8713],{"type":42,"tag":47,"props":8709,"children":8710},{},[8711],{"type":51,"value":8712},"Step 1: Copy mcpClient.ts",{"type":51,"value":8714},"\nUse the provided McpSession implementation as-is. It handles all MCP protocol complexity.",{"type":42,"tag":43,"props":8716,"children":8717},{},[8718,8723],{"type":42,"tag":47,"props":8719,"children":8720},{},[8721],{"type":51,"value":8722},"Step 2: Initialize once",{"type":51,"value":8724},"\nCreate the McpSession instance once per app session (in useEffect or on boot).",{"type":42,"tag":43,"props":8726,"children":8727},{},[8728,8733],{"type":42,"tag":47,"props":8729,"children":8730},{},[8731],{"type":51,"value":8732},"Step 3: Craft your prompts",{"type":51,"value":8734},"\nFor your specific use case, provide context-rich prompts that include:",{"type":42,"tag":103,"props":8736,"children":8737},{},[8738,8743,8748],{"type":42,"tag":107,"props":8739,"children":8740},{},[8741],{"type":51,"value":8742},"Your domain context (meetings, priorities, risks, etc.)",{"type":42,"tag":107,"props":8744,"children":8745},{},[8746],{"type":51,"value":8747},"Specific data from your app",{"type":42,"tag":107,"props":8749,"children":8750},{},[8751],{"type":51,"value":8752},"Expected output format",{"type":42,"tag":43,"props":8754,"children":8755},{},[8756,8761],{"type":42,"tag":47,"props":8757,"children":8758},{},[8759],{"type":51,"value":8760},"Step 4: Parse and display",{"type":51,"value":8762},"\nExtract the relevant data from Work IQ's response based on the format you requested.",{"type":42,"tag":141,"props":8764,"children":8765},{},[],{"type":42,"tag":84,"props":8767,"children":8769},{"id":8768},"common-use-cases",[8770],{"type":51,"value":8771},"Common Use Cases",{"type":42,"tag":43,"props":8773,"children":8774},{},[8775],{"type":42,"tag":47,"props":8776,"children":8777},{},[8778],{"type":51,"value":8779},"Meeting Summaries:",{"type":42,"tag":103,"props":8781,"children":8782},{},[8783,8788,8793],{"type":42,"tag":107,"props":8784,"children":8785},{},[8786],{"type":51,"value":8787},"Prompt Work IQ with meeting context (date, organizer, attendees, description)",{"type":42,"tag":107,"props":8789,"children":8790},{},[8791],{"type":51,"value":8792},"Request ## Summary and ## Action Items sections",{"type":42,"tag":107,"props":8794,"children":8795},{},[8796],{"type":51,"value":8797},"Parse markdown sections and display in modal",{"type":42,"tag":43,"props":8799,"children":8800},{},[8801],{"type":42,"tag":47,"props":8802,"children":8803},{},[8804],{"type":51,"value":8805},"Prioritized Daily Action Items:",{"type":42,"tag":103,"props":8807,"children":8808},{},[8809,8814,8819],{"type":42,"tag":107,"props":8810,"children":8811},{},[8812],{"type":51,"value":8813},"Query Work IQ to extract high-priority tasks from emails\u002Fmessages",{"type":42,"tag":107,"props":8815,"children":8816},{},[8817],{"type":51,"value":8818},"Request ranked list format with due dates and owners",{"type":42,"tag":107,"props":8820,"children":8821},{},[8822],{"type":51,"value":8823},"Parse and display as prioritized task list",{"type":42,"tag":43,"props":8825,"children":8826},{},[8827],{"type":42,"tag":47,"props":8828,"children":8829},{},[8830],{"type":51,"value":8831},"Project Risk Analysis:",{"type":42,"tag":103,"props":8833,"children":8834},{},[8835,8840,8845],{"type":42,"tag":107,"props":8836,"children":8837},{},[8838],{"type":51,"value":8839},"Prompt Work IQ to analyze project communications",{"type":42,"tag":107,"props":8841,"children":8842},{},[8843],{"type":51,"value":8844},"Request structured risk assessment with mitigation recommendations",{"type":42,"tag":107,"props":8846,"children":8847},{},[8848],{"type":51,"value":8849},"Parse JSON and display risk dashboard",{"type":42,"tag":43,"props":8851,"children":8852},{},[8853],{"type":42,"tag":47,"props":8854,"children":8855},{},[8856],{"type":51,"value":8857},"Team Performance Insights:",{"type":42,"tag":103,"props":8859,"children":8860},{},[8861,8866,8871],{"type":42,"tag":107,"props":8862,"children":8863},{},[8864],{"type":51,"value":8865},"Query collaboration patterns from Teams\u002Femails",{"type":42,"tag":107,"props":8867,"children":8868},{},[8869],{"type":51,"value":8870},"Request insights on productivity and blockers",{"type":42,"tag":107,"props":8872,"children":8873},{},[8874],{"type":51,"value":8875},"Parse and display performance dashboard",{"type":42,"tag":43,"props":8877,"children":8878},{},[8879],{"type":42,"tag":47,"props":8880,"children":8881},{},[8882],{"type":51,"value":8883},"Any Knowledge-Grounded Analysis:",{"type":42,"tag":103,"props":8885,"children":8886},{},[8887,8892,8897],{"type":42,"tag":107,"props":8888,"children":8889},{},[8890],{"type":51,"value":8891},"Adapt the pattern for your domain",{"type":42,"tag":107,"props":8893,"children":8894},{},[8895],{"type":51,"value":8896},"Use Work IQ's access to M365 data (emails, Teams, calendar, documents)",{"type":42,"tag":107,"props":8898,"children":8899},{},[8900],{"type":51,"value":8901},"Return structured or unstructured output as needed",{"type":42,"tag":84,"props":8903,"children":8905},{"id":8904},"why-this-pattern-is-required",[8906],{"type":51,"value":8907},"Why This Pattern is Required",{"type":42,"tag":43,"props":8909,"children":8910},{},[8911,8916],{"type":42,"tag":47,"props":8912,"children":8913},{},[8914],{"type":51,"value":8915},"Work IQ uses MCP (Model Context Protocol)",{"type":51,"value":8917},", a stateful protocol that requires:",{"type":42,"tag":8919,"props":8920,"children":8921},"ol",{},[8922,8932,8942,8952,8962,8972],{"type":42,"tag":107,"props":8923,"children":8924},{},[8925,8930],{"type":42,"tag":47,"props":8926,"children":8927},{},[8928],{"type":51,"value":8929},"Session initialization",{"type":51,"value":8931}," before first call (handshake to exchange capabilities)",{"type":42,"tag":107,"props":8933,"children":8934},{},[8935,8940],{"type":42,"tag":47,"props":8936,"children":8937},{},[8938],{"type":51,"value":8939},"Session ID tracking",{"type":51,"value":8941}," across all requests",{"type":42,"tag":107,"props":8943,"children":8944},{},[8945,8950],{"type":42,"tag":47,"props":8946,"children":8947},{},[8948],{"type":51,"value":8949},"Proper JSON-RPC ID sequencing",{"type":51,"value":8951}," (each request must have a unique numeric ID)",{"type":42,"tag":107,"props":8953,"children":8954},{},[8955,8960],{"type":42,"tag":47,"props":8956,"children":8957},{},[8958],{"type":51,"value":8959},"Multi-turn conversation support",{"type":51,"value":8961}," with conversation ID persistence",{"type":42,"tag":107,"props":8963,"children":8964},{},[8965,8970],{"type":42,"tag":47,"props":8966,"children":8967},{},[8968],{"type":51,"value":8969},"Complex response parsing",{"type":51,"value":8971}," (nested JSON-RPC + optional streaming)",{"type":42,"tag":107,"props":8973,"children":8974},{},[8975,8980],{"type":42,"tag":47,"props":8976,"children":8977},{},[8978],{"type":51,"value":8979},"Automatic error recovery",{"type":51,"value":8981}," on session timeouts",{"type":42,"tag":43,"props":8983,"children":8984},{},[8985,8987,8992],{"type":51,"value":8986},"The ",{"type":42,"tag":75,"props":8988,"children":8990},{"className":8989},[],[8991],{"type":51,"value":173},{"type":51,"value":8993}," class handles all of this. Attempting to bypass it (using random session IDs, hardcoded IDs, or direct API calls) will result in \"Session not found\" errors and failed integrations.",{"type":42,"tag":8995,"props":8996,"children":8997},"style",{},[8998],{"type":51,"value":8999},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":9001,"total":388},[9002,9016,9031,9038,9049,9061],{"slug":9003,"name":9003,"fn":9004,"description":9005,"org":9006,"tags":9007,"stars":23,"repoUrl":24,"updatedAt":9015},"add-azuredevops","integrate Azure DevOps into Microsoft Apps","Adds Azure DevOps by delegating to `\u002Fadd-connector` with `api-id=shared_visualstudioteamservices` and action mode. Use when adding Azure DevOps integration.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9008,9011,9014],{"name":9009,"slug":9010,"type":15},"Azure DevOps","azure-devops",{"name":9012,"slug":9013,"type":15},"Integrations","integrations",{"name":9,"slug":8,"type":15},"2026-07-07T06:53:11.295258",{"slug":9017,"name":9017,"fn":9018,"description":9019,"org":9020,"tags":9021,"stars":23,"repoUrl":24,"updatedAt":9030},"add-office365","integrate Office 365 Outlook","Adds Office 365 Outlook by delegating to `\u002Fadd-connector` with `api-id=shared_office365` and action mode. Use when integrating Outlook mail\u002Fcalendar.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9022,9023,9024,9027],{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},{"name":9025,"slug":9026,"type":15},"Outlook Calendar","outlook-calendar",{"name":9028,"slug":9029,"type":15},"Outlook Email","outlook-email","2026-07-03T16:31:36.717786",{"slug":4,"name":4,"fn":5,"description":6,"org":9032,"tags":9033,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9034,9035,9036,9037],{"name":13,"slug":14,"type":15},{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},{"slug":9039,"name":9039,"fn":9040,"description":9041,"org":9042,"tags":9043,"stars":23,"repoUrl":24,"updatedAt":9048},"delete-app","delete Microsoft Apps","Deletes a Microsoft App via `ms app delete`. Use when the user asks to delete an app; always require explicit confirmation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9044,9045],{"name":9,"slug":8,"type":15},{"name":9046,"slug":9047,"type":15},"Operations","operations","2026-07-07T06:53:08.459223",{"slug":9050,"name":9050,"fn":9051,"description":9052,"org":9053,"tags":9054,"stars":23,"repoUrl":24,"updatedAt":9060},"list-apps","discover Microsoft Apps in the environment","Discovers Microsoft Apps in the active environment via `ms app list --json` and optional `ms app show --json`. Use when listing or locating apps.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9055,9058,9059],{"name":9056,"slug":9057,"type":15},"CLI","cli",{"name":9,"slug":8,"type":15},{"name":9046,"slug":9047,"type":15},"2026-07-03T16:31:37.983568",{"slug":9062,"name":9062,"fn":9063,"description":9064,"org":9065,"tags":9066,"stars":23,"repoUrl":24,"updatedAt":9072},"list-connectors","discover Microsoft App connectors and data sources","Lists connectors reachable in the active environment and the connection-bound data sources already wired into a Microsoft App. Use when discovering connectors and their operations before adding data sources.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9067,9070,9071],{"name":9068,"slug":9069,"type":15},"API Development","api-development",{"name":9012,"slug":9013,"type":15},{"name":9,"slug":8,"type":15},"2026-07-07T06:53:09.758008",{"items":9074,"total":9266},[9075,9097,9118,9139,9154,9171,9182,9193,9208,9223,9242,9254],{"slug":9076,"name":9076,"fn":9077,"description":9078,"org":9079,"tags":9080,"stars":9094,"repoUrl":9095,"updatedAt":9096},"rushstack-best-practices","manage Rush monorepos with best practices","Provides best practices and guidance for working with Rush monorepos. Use when the user is working in a Rush-based repository, asks about Rush commands (install, update, build, rebuild), needs help with project selection, dependency management, build caching, subspace configuration, or troubleshooting Rush-specific issues.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9081,9084,9087,9088,9091],{"name":9082,"slug":9083,"type":15},"Engineering","engineering",{"name":9085,"slug":9086,"type":15},"Local Development","local-development",{"name":9,"slug":8,"type":15},{"name":9089,"slug":9090,"type":15},"Project Management","project-management",{"name":9092,"slug":9093,"type":15},"Rush","rush",6484,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Frushstack","2026-04-06T18:34:44.965032",{"slug":9098,"name":9098,"fn":9099,"description":9100,"org":9101,"tags":9102,"stars":9115,"repoUrl":9116,"updatedAt":9117},"azure-ai-agents-persistent-dotnet","build AI agents with Azure .NET SDK","Azure AI Agents Persistent SDK for .NET. Low-level SDK for creating and managing AI agents with threads, messages, runs, and tools. Use for agent CRUD, conversation threads, streaming responses, function calling, file search, and code interpreter. Triggers: \"PersistentAgentsClient\", \"persistent agents\", \"agent threads\", \"agent runs\", \"streaming agents\", \"function calling agents .NET\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9103,9106,9109,9112],{"name":9104,"slug":9105,"type":15},".NET","net",{"name":9107,"slug":9108,"type":15},"Agents","agents",{"name":9110,"slug":9111,"type":15},"Azure","azure",{"name":9113,"slug":9114,"type":15},"LLM","llm",2804,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fskills","2026-07-03T16:32:10.297433",{"slug":9119,"name":9119,"fn":9120,"description":9121,"org":9122,"tags":9123,"stars":9115,"repoUrl":9116,"updatedAt":9138},"azure-ai-anomalydetector-java","build anomaly detection applications with Java","Build anomaly detection applications with Azure AI Anomaly Detector SDK for Java. Use when implementing univariate\u002Fmultivariate anomaly detection, time-series analysis, or AI-powered monitoring.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9124,9127,9128,9131,9134,9135],{"name":9125,"slug":9126,"type":15},"Analytics","analytics",{"name":9110,"slug":9111,"type":15},{"name":9129,"slug":9130,"type":15},"Data Analysis","data-analysis",{"name":9132,"slug":9133,"type":15},"Java","java",{"name":9,"slug":8,"type":15},{"name":9136,"slug":9137,"type":15},"Monitoring","monitoring","2026-05-13T06:14:16.261754",{"slug":9140,"name":9140,"fn":9141,"description":9142,"org":9143,"tags":9144,"stars":9115,"repoUrl":9116,"updatedAt":9153},"azure-ai-contentsafety-java","build content moderation applications with Azure AI","Build content moderation applications with Azure AI Content Safety SDK for Java. Use when implementing text\u002Fimage analysis, blocklist management, or harm detection for hate, violence, sexual content, and self-harm.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9145,9148,9149,9150],{"name":9146,"slug":9147,"type":15},"AI Infrastructure","ai-infrastructure",{"name":9110,"slug":9111,"type":15},{"name":9132,"slug":9133,"type":15},{"name":9151,"slug":9152,"type":15},"Security","security","2026-07-07T06:53:31.293235",{"slug":9155,"name":9155,"fn":9156,"description":9157,"org":9158,"tags":9159,"stars":9115,"repoUrl":9116,"updatedAt":9170},"azure-ai-contentsafety-py","detect harmful content with Azure AI Content Safety","Azure AI Content Safety SDK for Python. Use for detecting harmful content in text and images with multi-severity classification.\nTriggers: \"azure-ai-contentsafety\", \"ContentSafetyClient\", \"content moderation\", \"harmful content\", \"text analysis\", \"image analysis\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9160,9161,9164,9165,9166,9169],{"name":9110,"slug":9111,"type":15},{"name":9162,"slug":9163,"type":15},"Compliance","compliance",{"name":9113,"slug":9114,"type":15},{"name":9,"slug":8,"type":15},{"name":9167,"slug":9168,"type":15},"Python","python",{"name":9151,"slug":9152,"type":15},"2026-07-18T05:14:23.017504",{"slug":9172,"name":9172,"fn":9173,"description":9174,"org":9175,"tags":9176,"stars":9115,"repoUrl":9116,"updatedAt":9181},"azure-ai-language-conversations-py","implement conversational language understanding with Python","Implement Conversational Language Understanding (CLU) using the azure-ai-language-conversations Python SDK. Use when working with ConversationAnalysisClient to analyze conversation intent and entities, building NLP features, or integrating language understanding into applications.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9177,9178,9179,9180],{"name":9125,"slug":9126,"type":15},{"name":9110,"slug":9111,"type":15},{"name":9113,"slug":9114,"type":15},{"name":9167,"slug":9168,"type":15},"2026-07-31T05:54:29.068751",{"slug":9183,"name":9183,"fn":9184,"description":9185,"org":9186,"tags":9187,"stars":9115,"repoUrl":9116,"updatedAt":9192},"azure-ai-translation-text-py","translate text using Azure AI services","Azure AI Text Translation SDK for real-time text translation, transliteration, language detection, and dictionary lookup. Use for translating text content in applications.\nTriggers: \"text translation\", \"translator\", \"translate text\", \"transliterate\", \"TextTranslationClient\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9188,9189,9190,9191],{"name":9068,"slug":9069,"type":15},{"name":9110,"slug":9111,"type":15},{"name":9,"slug":8,"type":15},{"name":9167,"slug":9168,"type":15},"2026-07-18T05:14:16.988376",{"slug":9194,"name":9194,"fn":9195,"description":9196,"org":9197,"tags":9198,"stars":9115,"repoUrl":9116,"updatedAt":9207},"azure-ai-vision-imageanalysis-py","analyze images with Azure AI Vision","Azure AI Vision Image Analysis SDK for captions, tags, objects, OCR, people detection, and smart cropping. Use for computer vision and image understanding tasks.\nTriggers: \"image analysis\", \"computer vision\", \"OCR\", \"object detection\", \"ImageAnalysisClient\", \"image caption\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9199,9200,9203,9206],{"name":9110,"slug":9111,"type":15},{"name":9201,"slug":9202,"type":15},"Computer Vision","computer-vision",{"name":9204,"slug":9205,"type":15},"Images","images",{"name":9167,"slug":9168,"type":15},"2026-07-18T05:14:18.007737",{"slug":9209,"name":9209,"fn":9210,"description":9211,"org":9212,"tags":9213,"stars":9115,"repoUrl":9116,"updatedAt":9222},"azure-appconfiguration-java","manage configuration with Azure App Configuration","Azure App Configuration SDK for Java. Centralized application configuration management with key-value settings, feature flags, and snapshots.\nTriggers: \"ConfigurationClient java\", \"app configuration java\", \"feature flag java\", \"configuration setting java\", \"azure config java\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9214,9215,9218,9221],{"name":9110,"slug":9111,"type":15},{"name":9216,"slug":9217,"type":15},"Configuration","configuration",{"name":9219,"slug":9220,"type":15},"Feature Flags","feature-flags",{"name":9132,"slug":9133,"type":15},"2026-07-03T16:32:01.278468",{"slug":9224,"name":9224,"fn":9225,"description":9226,"org":9227,"tags":9228,"stars":9115,"repoUrl":9116,"updatedAt":9241},"azure-cosmos-rust","build applications with Azure Cosmos DB","Azure Cosmos DB library for Rust (NoSQL API). Document CRUD, containers, and globally distributed data.\nTriggers: \"cosmos db rust\", \"CosmosClient rust\", \"document crud rust\", \"NoSQL rust\", \"partition key rust\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9229,9232,9235,9238],{"name":9230,"slug":9231,"type":15},"Cosmos DB","cosmos-db",{"name":9233,"slug":9234,"type":15},"Database","database",{"name":9236,"slug":9237,"type":15},"NoSQL","nosql",{"name":9239,"slug":9240,"type":15},"Rust","rust","2026-07-31T05:54:27.021432",{"slug":9243,"name":9243,"fn":9225,"description":9244,"org":9245,"tags":9246,"stars":9115,"repoUrl":9116,"updatedAt":9253},"azure-cosmos-ts","Azure Cosmos DB JavaScript\u002FTypeScript SDK (@azure\u002Fcosmos) for data plane operations. Use for CRUD operations on documents, queries, bulk operations, and container management. Triggers: \"Cosmos DB\", \"@azure\u002Fcosmos\", \"CosmosClient\", \"document CRUD\", \"NoSQL queries\", \"bulk operations\", \"partition key\", \"container.items\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9247,9248,9249,9250,9251],{"name":9230,"slug":9231,"type":15},{"name":9233,"slug":9234,"type":15},{"name":9,"slug":8,"type":15},{"name":9236,"slug":9237,"type":15},{"name":9252,"slug":212,"type":15},"TypeScript","2026-07-03T16:31:19.368382",{"slug":9255,"name":9255,"fn":9256,"description":9257,"org":9258,"tags":9259,"stars":9115,"repoUrl":9116,"updatedAt":9265},"azure-data-tables-java","build table storage applications with Java","Build table storage applications with Azure Tables SDK for Java. Use when working with Azure Table Storage or Cosmos DB Table API for NoSQL key-value data, schemaless storage, or structured data at scale.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[9260,9261,9262,9263,9264],{"name":9110,"slug":9111,"type":15},{"name":9230,"slug":9231,"type":15},{"name":9233,"slug":9234,"type":15},{"name":9132,"slug":9133,"type":15},{"name":9236,"slug":9237,"type":15},"2026-05-13T06:14:17.582229",267]