@octavus/docs 0.0.7 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/content/01-getting-started/02-quickstart.md +4 -3
- package/content/02-server-sdk/01-overview.md +11 -5
- package/content/02-server-sdk/02-sessions.md +6 -3
- package/content/02-server-sdk/03-tools.md +4 -2
- package/content/02-server-sdk/04-streaming.md +12 -4
- package/content/03-client-sdk/01-overview.md +11 -5
- package/content/03-client-sdk/05-socket-transport.md +263 -153
- package/content/03-client-sdk/06-http-transport.md +280 -0
- package/content/04-protocol/01-overview.md +1 -0
- package/content/04-protocol/03-triggers.md +10 -2
- package/content/04-protocol/04-tools.md +12 -3
- package/content/04-protocol/06-agent-config.md +36 -3
- package/content/04-protocol/07-provider-options.md +275 -0
- package/content/05-api-reference/01-overview.md +3 -17
- package/content/06-examples/01-overview.md +27 -0
- package/content/06-examples/02-nextjs-chat.md +343 -0
- package/content/06-examples/03-socket-chat.md +392 -0
- package/content/06-examples/_meta.md +5 -0
- package/dist/chunk-5M7DS4DF.js +519 -0
- package/dist/chunk-5M7DS4DF.js.map +1 -0
- package/dist/chunk-7KXF63FV.js +537 -0
- package/dist/chunk-7KXF63FV.js.map +1 -0
- package/dist/chunk-H6JGSSAJ.js +519 -0
- package/dist/chunk-H6JGSSAJ.js.map +1 -0
- package/dist/chunk-JZRABTHU.js +519 -0
- package/dist/chunk-JZRABTHU.js.map +1 -0
- package/dist/chunk-OL5QDJ42.js +483 -0
- package/dist/chunk-OL5QDJ42.js.map +1 -0
- package/dist/chunk-PMOVVTHO.js +519 -0
- package/dist/chunk-PMOVVTHO.js.map +1 -0
- package/dist/chunk-R5MTVABN.js +439 -0
- package/dist/chunk-R5MTVABN.js.map +1 -0
- package/dist/chunk-RJ4H4YVA.js +519 -0
- package/dist/chunk-RJ4H4YVA.js.map +1 -0
- package/dist/chunk-S5U4IWCR.js +439 -0
- package/dist/chunk-S5U4IWCR.js.map +1 -0
- package/dist/chunk-TQJG6EBM.js +537 -0
- package/dist/chunk-TQJG6EBM.js.map +1 -0
- package/dist/chunk-UCJE36LL.js +519 -0
- package/dist/chunk-UCJE36LL.js.map +1 -0
- package/dist/chunk-WW7TRC7S.js +519 -0
- package/dist/chunk-WW7TRC7S.js.map +1 -0
- package/dist/content.js +1 -1
- package/dist/docs.json +60 -15
- package/dist/index.js +1 -1
- package/dist/search-index.json +1 -1
- package/dist/search.js +1 -1
- package/dist/search.js.map +1 -1
- package/dist/sections.json +68 -15
- package/package.json +1 -1
package/dist/search.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import MiniSearch from "minisearch";
|
|
3
3
|
|
|
4
4
|
// dist/search-index.json
|
|
5
|
-
var search_index_default = { documentCount: 20, nextId: 20, documentIds: { "0": 0, "1": 1, "2": 2, "3": 3, "4": 4, "5": 5, "6": 6, "7": 7, "8": 8, "9": 9, "10": 10, "11": 11, "12": 12, "13": 13, "14": 14, "15": 15, "16": 16, "17": 17, "18": 18, "19": 19 }, fieldIds: { title: 0, content: 1, section: 2 }, fieldLength: { "0": [1, 260, 2], "1": [2, 364, 2], "2": [1, 199, 2], "3": [1, 258, 2], "4": [1, 303, 2], "5": [1, 266, 2], "6": [1, 334, 2], "7": [1, 285, 2], "8": [1, 280, 2], "9": [1, 219, 2], "10": [2, 334, 2], "11": [1, 239, 1], "12": [2, 260, 1], "13": [1, 241, 1], "14": [1, 310, 1], "15": [1, 224, 1], "16": [2, 273, 1], "17": [1, 220, 2], "18": [1, 305, 2], "19": [1, 171, 2] }, averageFieldLength: [1.2, 267.25, 1.7], storedFields: { "0": { title: "Introduction", slug: "getting-started/introduction", section: "getting-started", excerpt: "Introduction to Octavus Octavus is an agent orchestration platform that lets developers define, manage, and deploy AI agents through a unified service. It handles the orchestration layer so teams can..." }, "1": { title: "Quick Start", slug: "getting-started/quickstart", section: "getting-started", excerpt: "Quick Start This guide will walk you through integrating Octavus into your application in under 10 minutes. Prerequisites - Node.js 18+ - An Octavus account with API key - A Next.js application (or..." }, "2": { title: "Overview", slug: "server-sdk/overview", section: "server-sdk", excerpt: "Server SDK Overview The package provides a Node.js SDK for integrating Octavus agents into your backend application. It handles session management, streaming, and the tool execution continuation..." }, "3": { title: "Sessions", slug: "server-sdk/sessions", section: "server-sdk", excerpt: "Sessions Sessions represent conversations with an agent. They store conversation history, track resources and variables, and enable stateful interactions. Creating Sessions Create a session by..." }, "4": { title: "Tools", slug: "server-sdk/tools", section: "server-sdk", excerpt: "Tools Tools extend what agents can do. In Octavus, tools execute on your server, giving you full control over data access and authentication. Why Tools Run on Your Server Unlike traditional AI..." }, "5": { title: "Streaming", slug: "server-sdk/streaming", section: "server-sdk", excerpt: "Streaming All Octavus responses stream in real-time using Server-Sent Events (SSE). This enables responsive UX with incremental updates. Stream Response When you trigger an action, you get a..." }, "6": { title: "Overview", slug: "client-sdk/overview", section: "client-sdk", excerpt: "Client SDK Overview Octavus provides two packages for frontend integration: | Package | Purpose | Use When | |---------|---------|----------| | | React hooks and bindings | Building React..." }, "7": { title: "Messages", slug: "client-sdk/messages", section: "client-sdk", excerpt: "Messages Messages represent the conversation history. The Client SDK tracks messages automatically and provides structured access to their content through typed parts. Message Structure Message..." }, "8": { title: "Streaming", slug: "client-sdk/streaming", section: "client-sdk", excerpt: "Streaming The Client SDK provides real-time access to streaming content through the message array. Each part has its own status, enabling responsive UIs that update as the agent generates responses...." }, "9": { title: "Operations", slug: "client-sdk/execution-blocks", section: "client-sdk", excerpt: "Operations Operations represent internal agent activities like setting resources or serializing threads. They appear as parts in messages and help users understand what the agent is doing. ..." }, "10": { title: "Socket Transport", slug: "client-sdk/socket-transport", section: "client-sdk", excerpt: "Socket Transport The socket transport enables real-time bidirectional communication using WebSocket or SockJS. Use this when you need persistent connections, custom server events, or when HTTP/SSE..." }, "11": { title: "Overview", slug: "protocol/overview", section: "protocol", excerpt: "Protocol Overview Agent protocols define how an AI agent behaves. They're written in YAML and specify inputs, triggers, tools, and execution handlers. Why Protocols? Protocols provide: - Declarative..." }, "12": { title: "Input & Resources", slug: "protocol/input-resources", section: "protocol", excerpt: "Input & Resources Inputs are provided when creating a session. Resources are persistent state the agent can read and write. Input Variables Define inputs that consumers must (or may) provide: Input..." }, "13": { title: "Triggers", slug: "protocol/triggers", section: "protocol", excerpt: "Triggers Triggers define how an agent can be invoked. Each trigger has a name, optional inputs, and a corresponding handler. Trigger Types User Message The most common trigger \u2014 when a user sends a..." }, "14": { title: "Tools", slug: "protocol/tools", section: "protocol", excerpt: "Tools Tools extend what agents can do. They're defined in the protocol and implemented in your backend. Tool Definition Tool Fields | Field | Required | Description |..." }, "15": { title: "Handlers", slug: "protocol/handlers", section: "protocol", excerpt: "Handlers Handlers define what happens when a trigger fires. They contain execution blocks that run in sequence. Handler Structure Each block has a human-readable name (shown in debug UI) and a type..." }, "16": { title: "Agent Config", slug: "protocol/agent-config", section: "protocol", excerpt: "Agent Config The section configures the LLM model, system prompt, tools, and behavior. Basic Configuration Configuration Options | Field | Required | Description |..." }, "17": { title: "Overview", slug: "api-reference/overview", section: "api-reference", excerpt: "API Reference The Octavus API is a RESTful API that enables programmatic access to agent management and session execution. Base URL Authentication All API requests require authentication using a..." }, "18": { title: "Sessions", slug: "api-reference/sessions", section: "api-reference", excerpt: "Sessions API Sessions represent conversations with agents. They store conversation history, resources, and variables. Create Session Create a new agent session. Request Body | Field | Type |..." }, "19": { title: "Agents", slug: "api-reference/agents", section: "api-reference", excerpt: "Agents API Manage agent definitions including protocols and prompts. List Agents Get all agents in the project. Response Example Get Agent Get a single agent by ID or slug. Response Example ..." } }, dirtCount: 0, index: [["95", { "1": { "17": 1 } }], ["xyz789a", { "1": { "18": 1 } }], ["x", { "1": { "17": 3, "18": 2, "19": 2 } }], ["xs", { "1": { "8": 1 } }], ["~20", { "1": { "16": 1 } }], ["~10", { "1": { "16": 1 } }], ["~5", { "1": { "16": 1 } }], ["know", { "1": { "14": 2 } }], ["keep", { "1": { "1": 1, "5": 1, "13": 1 } }], ["keys", { "1": { "17": 2 } }], ["key=your", { "1": { "1": 1 } }], ["key=", { "1": { "1": 2, "6": 2, "7": 2, "8": 3, "9": 2 } }], ["key", { "1": { "1": 3, "2": 3, "3": 1, "6": 1, "10": 3, "17": 3, "18": 3, "19": 5 } }], ["\u2514\u2500\u2500", { "1": { "11": 2 } }], ["\u251C\u2500\u2500", { "1": { "11": 4 } }], ["\u2192", { "1": { "10": 2, "17": 1 } }], ["+", { "1": { "10": 2 } }], ["\u23F3", { "1": { "9": 2 } }], ["\u25B6", { "1": { "8": 1 } }], ["\u25BC", { "1": { "8": 1 } }], ["\u{1F4AD}", { "1": { "8": 2 } }], ["\u{1F527}", { "1": { "7": 1 } }], ["\u2717", { "1": { "7": 1 } }], ["\u2713", { "1": { "7": 2, "9": 3 } }], ["questions", { "1": { "11": 1, "16": 1 } }], ["query", { "1": { "4": 5, "13": 1, "14": 2, "16": 1 } }], ["quickstart", { "1": { "0": 1 } }], ["quick", { "0": { "1": 1 }, "1": { "0": 1, "1": 1 } }], ["\u2705", { "1": { "4": 4 } }], ["05z", { "1": { "18": 1 } }], ["05", { "1": { "18": 1 } }], ["00z", { "1": { "18": 1, "19": 2 } }], ["00", { "1": { "18": 1, "19": 2 } }], ["000z", { "1": { "18": 2 } }], ["000", { "1": { "16": 3, "17": 1 } }], ["01", { "1": { "18": 4, "19": 2 } }], ["0", { "1": { "2": 1, "4": 1, "6": 2, "8": 1, "10": 2, "16": 5 } }], ["|", { "1": { "1": 1, "4": 2, "5": 37, "6": 34, "7": 12, "8": 3, "9": 13, "10": 22, "11": 24, "12": 93, "13": 6, "14": 58, "15": 27, "16": 62, "17": 74, "18": 126, "19": 40 } }], ["||", { "1": { "1": 1, "4": 1, "7": 1, "8": 1 } }], ["javascript", { "1": { "6": 1 } }], ["justify", { "1": { "1": 2 } }], ["json", { "1": { "1": 9, "4": 2, "6": 6, "7": 4, "8": 3, "10": 5, "11": 2, "12": 1, "13": 2, "14": 2, "15": 1, "17": 2, "18": 2, "19": 2 } }], ["js", { "1": { "1": 3, "2": 1, "6": 2, "10": 1, "17": 1 } }], ["$", { "1": { "1": 2, "4": 1, "7": 1, "10": 2 } }], ["<operationcard", { "1": { "9": 1 } }], ["<otherthreadpart", { "1": { "7": 1 } }], ["<toolcallcard", { "1": { "9": 1 } }], ["<textpart", { "1": { "7": 1, "9": 1 } }], ["<reasoningpart", { "1": { "9": 1 } }], ["<statusbadge", { "1": { "8": 1 } }], ["<summary>thinking", { "1": { "7": 1 } }], ["<span>", { "1": { "9": 3 } }], ["<span", { "1": { "1": 1, "7": 2, "8": 7, "9": 4 } }], ["<details", { "1": { "7": 1 } }], ["<div>agent", { "1": { "8": 1 } }], ["<div>", { "1": { "6": 2, "8": 3, "9": 1 } }], ["<div>loading", { "1": { "1": 1 } }], ["<div", { "1": { "1": 5, "7": 6, "8": 7, "9": 4 } }], ["<chat", { "1": { "1": 1 } }], ["<p>", { "1": { "7": 1 } }], ["<pre", { "1": { "7": 1, "8": 2 } }], ["<partrenderer", { "1": { "7": 1, "8": 2, "9": 1 } }], ["<p", { "1": { "1": 1, "6": 1, "8": 1 } }], ["<button", { "1": { "1": 1, "8": 3 } }], ["<input", { "1": { "1": 1 } }], ["<form", { "1": { "1": 1 } }], ["<", { "1": { "1": 9, "6": 3, "7": 11, "8": 16, "9": 9, "10": 1, "11": 1, "14": 1 } }], ["<messagebubble", { "1": { "1": 1, "6": 1, "7": 1, "8": 1 } }], [">something", { "1": { "8": 1 } }], [">stop<", { "1": { "8": 1 } }], [">\u2717<", { "1": { "8": 1 } }], [">\u2713<", { "1": { "8": 1, "9": 2 } }], [">\u25D0<", { "1": { "8": 1 } }], [">\u25CB<", { "1": { "8": 1 } }], [">\u{1F527}<", { "1": { "8": 1 } }], [">tools", { "1": { "4": 1 } }], [">", { "1": { "1": 12, "3": 7, "6": 2, "7": 14, "8": 18, "9": 11, "10": 1, "11": 1, "12": 1, "13": 1, "14": 3, "18": 1 } }], [">>sdk", { "1": { "4": 1 } }], [">>ui", { "1": { "4": 4 } }], [">>platform", { "1": { "4": 3 } }], [">>app", { "1": { "0": 3 } }], [">>api", { "1": { "0": 4 } }], [">>llm", { "1": { "0": 2, "4": 1 } }], ["`block", { "1": { "18": 2 } }], ["`boolean`", { "1": { "12": 3, "14": 1 } }], ["`error`", { "1": { "18": 1 } }], ["`args`", { "1": { "18": 1 } }], ["`agents", { "1": { "18": 1 } }], ["`agentsessions", { "1": { "7": 1 } }], ["`agentid`", { "1": { "18": 1 } }], ["`agentic`", { "1": { "16": 1 } }], ["`agent`", { "1": { "16": 1 } }], ["`agent", { "1": { "14": 1 } }], ["`>", { "1": { "16": 1 } }], ["`high`", { "1": { "16": 1 } }], ["`hidden`", { "1": { "5": 1, "14": 2, "15": 1 } }], ["`low`", { "1": { "16": 1 } }], ["`lowercase", { "1": { "11": 4 } }], ["`medium`", { "1": { "16": 1 } }], ["`messages`", { "1": { "3": 1 } }], ["`maxsteps`", { "1": { "16": 1 } }], ["`model`", { "1": { "16": 1 } }], ["`variables`", { "1": { "12": 1 } }], ["`result`", { "1": { "18": 1 } }], ["`resources`", { "1": { "12": 1 } }], ["`resource", { "1": { "12": 1, "18": 1 } }], ["`reasoning", { "1": { "18": 3 } }], ["`reasoning`", { "1": { "18": 1 } }], ["`readonly`", { "1": { "12": 1 } }], ["`reconnecting", { "1": { "10": 1 } }], ["`record<string", { "1": { "4": 1 } }], ["`number`", { "1": { "12": 3, "14": 1 } }], ["`name`", { "1": { "5": 1, "9": 1, "11": 1, "14": 2, "15": 1, "18": 1 } }], ["`generation`", { "1": { "11": 1, "19": 1 } }], ["`get", { "1": { "3": 1, "18": 1 } }], ["`getmessages", { "1": { "3": 2 } }], ["`triggername`", { "1": { "18": 1 } }], ["`thinking`", { "1": { "16": 1 } }], ["`thread`", { "1": { "7": 1, "8": 1, "9": 1 } }], ["`temperature`", { "1": { "16": 1 } }], ["`text`", { "1": { "18": 3 } }], ["`text", { "1": { "10": 1, "18": 4 } }], ["`ticket`", { "1": { "14": 1 } }], ["`type`", { "1": { "12": 3, "14": 1 } }], ["`toolresults`", { "1": { "18": 1 } }], ["`toolname`", { "1": { "18": 1 } }], ["`toolcallid`", { "1": { "18": 1 } }], ["`tools`", { "1": { "16": 1 } }], ["`tools", { "1": { "14": 1 } }], ["`tool", { "1": { "10": 1, "18": 9 } }], ["`data`", { "1": { "17": 1 } }], ["`default`", { "1": { "12": 3 } }], ["`description`", { "1": { "5": 1, "9": 1, "11": 1, "12": 3, "14": 4, "15": 1 } }], ["`displayname`", { "1": { "18": 1 } }], ["`display`", { "1": { "14": 1, "15": 1 } }], ["`display", { "1": { "9": 1 } }], ["`operationtype`", { "1": { "18": 1 } }], ["`operationid`", { "1": { "18": 1 } }], ["`operation`", { "1": { "9": 1, "18": 1 } }], ["`optional", { "1": { "14": 1 } }], ["`optional`", { "1": { "12": 1, "14": 1 } }], ["`onclose`", { "1": { "10": 1 } }], ["`onmessage`", { "1": { "10": 2 } }], ["`octavuschat`", { "1": { "6": 1 } }], ["`id`", { "1": { "18": 1 } }], ["`independent", { "1": { "15": 1 } }], ["`input`", { "1": { "12": 1, "16": 1, "18": 2 } }], ["`interactive`", { "1": { "11": 1, "19": 1 } }], ["`initialmessages`", { "1": { "3": 2, "18": 1 } }], ["`isotherthread`", { "1": { "7": 1 } }], ["`wss", { "1": { "6": 1, "10": 2 } }], ["`format`", { "1": { "11": 1 } }], ["`finish`", { "1": { "10": 1, "18": 1 } }], ["`fetch", { "1": { "6": 1 } }], ["`flex", { "1": { "1": 1 } }], ["`createsockettransport`", { "1": { "6": 1, "10": 1 } }], ["`createhttptransport`", { "1": { "6": 1, "10": 1 } }], ["`sync`", { "1": { "19": 1 } }], ["`system`", { "1": { "16": 1 } }], ["`slug`", { "1": { "11": 1, "18": 1 } }], ["`start`", { "1": { "18": 1 } }], ["`status`", { "1": { "8": 1, "18": 4 } }], ["`string`", { "1": { "12": 3, "14": 1 } }], ["`streamevent`", { "1": { "10": 1 } }], ["`stream`", { "1": { "5": 1, "9": 1, "14": 2, "15": 1 } }], ["`stop", { "1": { "8": 1 } }], ["`serialize", { "1": { "9": 1 } }], ["`settings", { "1": { "19": 4 } }], ["`set", { "1": { "9": 1, "12": 1 } }], ["`send`", { "1": { "6": 1, "7": 1 } }], ["`sessions", { "1": { "3": 1 } }], ["`upper", { "1": { "12": 1 } }], ["`uppercase", { "1": { "11": 1, "13": 1, "14": 1 } }], ["`unknown`", { "1": { "12": 3, "14": 1 } }], ["`usermessage`", { "1": { "7": 1 } }], ["`user", { "1": { "4": 1 } }], ["`useoctavuschat`", { "1": { "1": 1, "6": 1 } }], ["`uimessage`", { "1": { "3": 1, "18": 1 } }], ["`0", { "1": { "2": 1, "6": 2, "16": 3 } }], ["`protocol`", { "1": { "19": 1 } }], ["`prompts`", { "1": { "19": 1 } }], ["`prompts", { "1": { "16": 1 } }], ["`provider", { "1": { "16": 1 } }], ["`parameters`", { "1": { "14": 1 } }], ["`parts`", { "1": { "3": 1, "6": 1, "7": 1, "8": 1, "9": 1, "18": 1 } }], ["`p", { "1": { "1": 1 } }], ["`", { "1": { "1": 3, "2": 1, "3": 8, "4": 1, "6": 6, "7": 3, "8": 3, "10": 3, "11": 2, "12": 6, "14": 5, "17": 9, "18": 1 } }], ["```markdown", { "1": { "11": 1, "12": 1, "14": 1, "16": 1 } }], ["```mermaid", { "1": { "0": 1, "3": 1, "4": 1 } }], ["```json", { "1": { "11": 1, "17": 2, "18": 5, "19": 6 } }], ["```yaml", { "1": { "11": 1, "12": 5, "13": 9, "14": 8, "15": 12, "16": 8 } }], ["```tsx", { "1": { "1": 2, "6": 5, "7": 6, "8": 8, "9": 4, "13": 1 } }], ["```typescript", { "1": { "1": 3, "2": 7, "3": 8, "4": 10, "5": 9, "6": 5, "7": 3, "9": 1, "10": 9, "12": 2, "13": 1, "14": 1, "19": 1 } }], ["```bash", { "1": { "1": 2, "2": 1, "6": 2, "17": 2, "18": 3, "19": 4 } }], ["```", { "1": { "0": 1, "1": 7, "2": 8, "3": 9, "4": 11, "5": 9, "6": 12, "7": 9, "8": 8, "9": 5, "10": 9, "11": 5, "12": 8, "13": 11, "14": 12, "15": 12, "16": 9, "17": 10, "18": 16, "19": 19 } }], ["==", { "1": { "4": 1, "10": 2 } }], ["===", { "1": { "1": 4, "3": 1, "4": 1, "6": 1, "7": 6, "8": 7, "9": 4, "10": 4, "12": 1 } }], ["=>", { "1": { "1": 9, "2": 1, "4": 13, "6": 20, "7": 9, "8": 10, "9": 3, "10": 24, "12": 1, "13": 2, "14": 2 } }], ["=", { "1": { "1": 18, "2": 5, "3": 8, "4": 23, "5": 2, "6": 15, "7": 7, "8": 7, "9": 1, "10": 41, "12": 1, "13": 4, "14": 4, "15": 2, "16": 2, "19": 1 } }], ["gpt", { "1": { "16": 5 } }], ["go", { "1": { "15": 1 } }], ["good", { "1": { "13": 2, "14": 1, "16": 1 } }], ["git", { "1": { "11": 1 } }], ["gives", { "1": { "6": 1 } }], ["giving", { "1": { "0": 1, "4": 1 } }], ["great", { "1": { "13": 1 } }], ["green", { "1": { "8": 1, "9": 2 } }], ["gray", { "1": { "1": 2, "7": 4, "8": 5, "9": 1 } }], ["generating", { "1": { "8": 1, "15": 2 } }], ["generation", { "1": { "5": 2, "18": 2 } }], ["generate", { "1": { "12": 2, "15": 6 } }], ["generates", { "1": { "8": 1 } }], ["generated", { "1": { "5": 1, "12": 1 } }], ["gets", { "1": { "14": 1 } }], ["getsessionid", { "1": { "2": 1 } }], ["getestimatedtime", { "1": { "14": 1 } }], ["getestimatedresponse", { "1": { "4": 1 } }], ["getreader", { "1": { "10": 2 } }], ["getmessages", { "1": { "2": 2, "3": 4, "7": 2 } }], ["getbyslug", { "1": { "1": 1, "18": 1 } }], ["get", { "1": { "0": 1, "1": 3, "2": 6, "3": 2, "4": 6, "5": 3, "7": 1, "8": 1, "10": 2, "11": 2, "14": 9, "16": 4, "17": 5, "18": 6, "19": 6 } }], ["getting", { "1": { "0": 1, "3": 1 }, "2": { "0": 1, "1": 1 } }], ["g", { "1": { "4": 1, "6": 1, "7": 2, "8": 1, "9": 1 } }], ["gap", { "1": { "1": 1, "8": 1, "9": 3 } }], ["guidelines", { "1": { "16": 2 } }], ["guide", { "1": { "1": 1 } }], ["n", { "1": { "10": 2, "17": 1, "18": 1, "19": 11 } }], ["native", { "1": { "6": 1, "10": 1 } }], ["naming", { "1": { "5": 1, "11": 1, "13": 1 } }], ["name`", { "1": { "19": 1 } }], ["names", { "1": { "13": 1, "15": 1 } }], ["named", { "1": { "7": 5, "8": 4, "9": 3, "15": 2, "16": 1 } }], ["name", { "1": { "1": 3, "2": 2, "3": 2, "4": 2, "5": 3, "6": 1, "7": 6, "9": 5, "11": 6, "12": 9, "13": 3, "14": 5, "15": 11, "16": 8, "18": 8, "19": 16 } }], ["number", { "1": { "4": 1, "13": 3, "14": 1 } }], ["null>", { "1": { "1": 1 } }], ["null", { "1": { "1": 2, "4": 2, "6": 3, "7": 1, "8": 2, "9": 1, "10": 2 } }], ["nested", { "1": { "12": 1 } }], ["network", { "1": { "5": 2 } }], ["never", { "1": { "4": 1, "16": 1 } }], ["needs", { "1": { "10": 1 } }], ["needed", { "1": { "4": 2, "13": 2, "16": 1 } }], ["need", { "1": { "3": 1, "4": 1, "10": 3, "14": 1 } }], ["new", { "1": { "1": 3, "2": 4, "3": 3, "4": 4, "5": 1, "6": 4, "10": 15, "18": 1, "19": 2 } }], ["nextresponse", { "1": { "1": 3 } }], ["next", { "1": { "0": 1, "1": 3, "2": 1, "5": 1, "6": 2, "10": 1, "11": 2, "12": 1, "13": 1, "15": 8, "16": 1, "17": 1, "18": 1 } }], ["npm", { "1": { "1": 2, "2": 1, "6": 2 } }], ["none", { "1": { "12": 2 } }], ["normal", { "1": { "5": 1 } }], ["now", { "1": { "1": 1 } }], ["node", { "1": { "1": 2, "2": 1, "17": 1 } }], ["notation", { "1": { "12": 1, "14": 1 } }], ["notification", { "1": { "10": 1 } }], ["note", { "1": { "0": 2, "3": 1, "4": 2, "5": 1, "10": 1, "12": 1, "14": 1 } }], ["not", { "1": { "0": 1, "1": 1, "3": 2, "4": 1, "5": 2, "11": 2, "12": 5, "13": 1, "14": 2, "15": 2, "17": 4, "18": 1 } }], ["no", { "1": { "0": 1, "1": 1, "4": 2, "5": 1, "10": 1, "11": 1, "12": 9, "13": 3, "14": 4, "16": 6, "18": 3, "19": 1 } }], ["8", { "1": { "0": 1, "15": 1, "16": 1 } }], ["7`", { "1": { "2": 1, "6": 2, "16": 1 } }], ["7", { "1": { "0": 1, "4": 1, "15": 1, "16": 1 } }], ["600", { "1": { "7": 1, "8": 2 } }], ["6", { "1": { "0": 1, "4": 1, "10": 2, "15": 1 } }], ["50", { "1": { "1": 1, "7": 1, "8": 3 } }], ["500", { "1": { "1": 2, "7": 2, "8": 7, "9": 5, "17": 1 } }], ["5", { "1": { "0": 1, "3": 1, "4": 1, "10": 1, "11": 1, "13": 2, "14": 1, "15": 3, "16": 8, "19": 2 } }], ["4o", { "1": { "16": 5 } }], ["429", { "1": { "17": 1 } }], ["42", { "1": { "4": 1 } }], ["403", { "1": { "17": 1 } }], ["401", { "1": { "17": 1 } }], ["400", { "1": { "1": 1, "7": 1, "8": 2, "17": 1 } }], ["404", { "1": { "1": 1, "3": 1, "17": 1 } }], ["4", { "1": { "0": 1, "1": 6, "3": 1, "4": 1, "7": 2, "8": 2, "11": 1, "14": 1, "15": 3, "16": 11, "19": 2 } }], ["3`", { "1": { "16": 1 } }], ["30", { "1": { "12": 1, "18": 4 } }], ["30000", { "1": { "10": 1, "12": 1 } }], ["3", { "1": { "0": 1, "1": 2, "3": 1, "4": 3, "7": 2, "8": 4, "12": 1, "13": 1, "15": 1, "16": 1 } }], ["2024", { "1": { "18": 4, "19": 2 } }], ["201", { "1": { "17": 1 } }], ["200", { "1": { "7": 1, "8": 1, "17": 1 } }], ["2`", { "1": { "16": 2 } }], ["24", { "1": { "1": 1, "3": 1, "14": 1 } }], ["2", { "1": { "0": 1, "1": 6, "3": 1, "4": 4, "7": 4, "8": 9, "9": 6, "10": 1, "13": 2, "14": 1, "15": 1, "16": 3 } }], ["15t10", { "1": { "18": 4, "19": 1 } }], ["1702345805000", { "1": { "18": 1 } }], ["1702345800000", { "1": { "18": 1 } }], ["1735312800", { "1": { "17": 1 } }], ["123abc", { "1": { "14": 1 } }], ["123", { "1": { "1": 1, "3": 1, "4": 1, "5": 2, "18": 3 } }], ["18+", { "1": { "1": 1 } }], ["10t08", { "1": { "19": 1 } }], ["1000", { "1": { "10": 1 } }], ["10000", { "1": { "4": 1 } }], ["100", { "1": { "1": 1, "7": 1, "17": 2 } }], ["10", { "1": { "1": 1, "13": 1, "14": 1, "16": 3 } }], ["1", { "1": { "0": 1, "1": 5, "3": 1, "4": 4, "7": 2, "8": 2, "13": 3, "14": 1, "15": 2, "16": 4, "17": 1 } }], ["visualization", { "1": { "11": 1 } }], ["visible", { "1": { "9": 1, "15": 2 } }], ["via", { "1": { "0": 1, "12": 1 } }], ["void", { "1": { "6": 7 } }], ["vue", { "1": { "6": 1 } }], ["very", { "1": { "16": 1 } }], ["verify", { "1": { "14": 1 } }], ["vercel", { "1": { "5": 2 } }], ["versioning", { "1": { "11": 1 } }], ["version", { "1": { "0": 1, "2": 1, "6": 2 } }], ["vague", { "1": { "13": 1, "14": 1 } }], ["var", { "1": { "12": 1 } }], ["varied", { "1": { "16": 1 } }], ["various", { "1": { "5": 1 } }], ["variable", { "1": { "4": 1, "11": 2, "12": 6, "13": 1, "14": 4, "15": 7 } }], ["variables", { "1": { "0": 2, "1": 1, "2": 1, "3": 5, "11": 6, "12": 7, "14": 3, "15": 3, "16": 1, "18": 4 } }], ["vanilla", { "1": { "6": 2 } }], ["validation", { "1": { "11": 1 } }], ["validate", { "1": { "4": 1 } }], ["validatetoken", { "1": { "4": 1 } }], ["values", { "1": { "4": 1, "11": 1, "12": 1, "14": 1 } }], ["value", { "1": { "1": 1, "4": 1, "5": 1, "6": 1, "7": 2, "9": 1, "10": 4, "12": 7, "13": 1, "14": 1, "15": 3, "18": 1 } }], ["value=", { "1": { "1": 1 } }], ["yes", { "1": { "11": 3, "12": 5, "14": 2, "16": 2, "18": 2, "19": 5 } }], ["y", { "1": { "1": 2, "7": 1, "9": 1 } }], ["you", { "1": { "0": 1, "1": 2, "3": 2, "4": 2, "5": 2, "6": 1, "9": 1, "10": 1, "11": 1, "12": 1, "14": 1, "16": 2, "18": 3, "19": 3 } }], ["your", { "1": { "0": 6, "1": 7, "2": 6, "3": 2, "4": 11, "5": 1, "6": 2, "7": 2, "10": 9, "11": 1, "14": 3, "15": 1, "16": 1, "17": 2, "18": 5, "19": 5 } }], ["yaml", { "1": { "0": 1, "11": 2, "19": 1 } }], ["urgent", { "1": { "14": 2 } }], ["url=https", { "1": { "1": 1 } }], ["url", { "1": { "1": 1, "2": 1, "3": 1, "4": 1, "10": 4, "11": 1, "13": 2, "17": 1, "18": 1, "19": 1 } }], ["ux", { "1": { "5": 1 } }], ["upload", { "1": { "13": 1 } }], ["uploaded", { "1": { "13": 1 } }], ["updating", { "1": { "9": 1 } }], ["update`", { "1": { "12": 1, "18": 1 } }], ["updated", { "1": { "7": 1, "12": 2, "19": 4 } }], ["updatedat", { "1": { "2": 1, "3": 2, "18": 1, "19": 1 } }], ["updates", { "1": { "5": 2, "19": 2 } }], ["update", { "1": { "3": 1, "5": 1, "6": 1, "8": 2, "10": 1, "15": 1, "17": 1, "19": 2 } }], ["up", { "1": { "1": 1, "5": 1, "11": 1, "14": 3, "16": 1 } }], ["uioperationpart", { "1": { "7": 2, "9": 5 } }], ["uitoolcallpart", { "1": { "7": 2, "8": 3 } }], ["uitextpart", { "1": { "7": 3, "8": 2 } }], ["uireasoningpart", { "1": { "7": 2, "8": 2 } }], ["uisessionstate", { "1": { "2": 1, "3": 2 } }], ["uis", { "1": { "1": 1, "6": 1, "8": 1 } }], ["uimessagepart", { "1": { "7": 5, "9": 2 } }], ["uimessage", { "1": { "1": 2, "2": 1, "3": 3, "6": 5, "7": 6, "8": 2, "9": 3, "18": 1 } }], ["ui", { "1": { "0": 1, "2": 4, "3": 4, "4": 2, "6": 2, "7": 3, "8": 2, "13": 3, "14": 1, "15": 3, "16": 1, "18": 1 } }], ["usable", { "1": { "14": 1 } }], ["usage", { "1": { "2": 1, "6": 3 } }], ["useful", { "1": { "15": 1, "19": 1 } }], ["usecallback", { "1": { "10": 2 } }], ["used", { "1": { "6": 1 } }], ["uses", { "1": { "6": 1, "15": 1, "16": 1 } }], ["usestate<string", { "1": { "1": 1 } }], ["usestate", { "1": { "1": 3, "8": 1 } }], ["useeffect", { "1": { "1": 2 } }], ["useoctavuschatreturn", { "1": { "6": 2 } }], ["useoctavuschat", { "1": { "1": 2, "6": 8, "7": 5, "8": 5, "10": 2, "12": 1, "13": 2 } }], ["usememo", { "1": { "1": 2, "6": 2, "7": 4, "8": 2, "10": 4, "13": 2 } }], ["use", { "1": { "0": 1, "1": 3, "2": 2, "3": 4, "4": 3, "6": 2, "7": 2, "8": 1, "9": 1, "10": 5, "11": 1, "12": 3, "13": 2, "14": 4, "15": 2, "16": 1, "18": 1 } }], ["usereconnectingtransport", { "1": { "10": 1 } }], ["useref", { "1": { "10": 2 } }], ["users", { "1": { "2": 1, "3": 1, "4": 3, "5": 1, "6": 1, "9": 1, "10": 1, "11": 1, "14": 1, "16": 2 } }], ["usermessageinput", { "1": { "6": 3 } }], ["usermessage", { "1": { "1": 1, "6": 5, "7": 1, "13": 1 } }], ["userid", { "1": { "1": 2, "2": 1, "4": 8, "5": 2, "11": 1, "14": 6, "16": 1 } }], ["user", { "1": { "0": 3, "1": 6, "2": 3, "3": 5, "4": 18, "5": 12, "6": 9, "7": 6, "9": 1, "10": 1, "11": 13, "12": 5, "13": 26, "14": 21, "15": 22, "16": 13, "17": 2, "18": 13, "19": 2 } }], ["using", { "1": { "0": 1, "1": 1, "4": 1, "5": 1, "6": 2, "10": 1, "12": 2, "17": 2 } }], ["unauthorized", { "1": { "17": 1 } }], ["until", { "1": { "16": 1 } }], ["unclear", { "1": { "13": 1 } }], ["unknown", { "1": { "6": 1, "7": 1, "10": 1, "11": 1, "12": 4, "13": 2 } }], ["unknown>`", { "1": { "4": 1 } }], ["unknown>", { "1": { "2": 5, "4": 1, "6": 2, "7": 1, "10": 1 } }], ["unsubscribe", { "1": { "6": 3 } }], ["undefined", { "1": { "4": 2 } }], ["under", { "1": { "1": 1, "17": 1 } }], ["understanding", { "1": { "2": 1 } }], ["understand", { "1": { "0": 1, "9": 1 } }], ["unlike", { "1": { "4": 1, "12": 1 } }], ["unit", { "1": { "0": 1 } }], ["unified", { "1": { "0": 2, "6": 1 } }], ["human", { "1": { "6": 1, "7": 1, "9": 2, "11": 3, "12": 2, "13": 10, "14": 2, "15": 2, "16": 1 } }], ["high", { "1": { "14": 2, "16": 2, "19": 1 } }], ["hidden`", { "1": { "9": 1 } }], ["hidden", { "1": { "3": 1, "5": 1, "9": 2, "15": 2, "16": 1, "18": 1 } }], ["history", { "1": { "0": 1, "3": 2, "7": 1, "18": 1 } }], ["helpful", { "1": { "16": 1, "19": 1 } }], ["helper", { "1": { "7": 1 } }], ["help", { "1": { "5": 1, "9": 1, "11": 1, "13": 2, "16": 3, "18": 2 } }], ["hello", { "1": { "2": 1, "5": 2, "6": 2, "10": 1, "17": 2 } }], ["here", { "1": { "1": 1, "6": 1, "10": 2, "14": 1 } }], ["headers", { "1": { "1": 3, "2": 1, "3": 1, "4": 2, "5": 1, "6": 3, "7": 2, "8": 1, "13": 1, "17": 1 } }], ["h", { "1": { "1": 2, "7": 1, "8": 1, "9": 1, "17": 3, "18": 5, "19": 7 } }], ["https", { "1": { "2": 1, "5": 1, "17": 3, "18": 3, "19": 5 } }], ["http", { "1": { "1": 1, "6": 2, "10": 3, "17": 1 } }], ["hooks", { "1": { "6": 2 } }], ["hook", { "1": { "1": 1, "6": 2, "7": 1 } }], ["hours", { "1": { "1": 1, "3": 1, "14": 1 } }], ["how", { "1": { "0": 2, "3": 1, "5": 2, "6": 1, "11": 3, "13": 1, "14": 1, "16": 1, "18": 3 } }], ["happens", { "1": { "11": 1, "15": 1 } }], ["handoff", { "1": { "11": 1 } }], ["handling", { "1": { "3": 1, "4": 1, "8": 1, "10": 1 } }], ["handled", { "1": { "5": 1, "10": 1, "18": 1 } }], ["handle", { "1": { "4": 1, "6": 1, "10": 4, "17": 1 } }], ["handler<br", { "1": { "4": 1 } }], ["handler", { "1": { "3": 1, "4": 1, "5": 1, "13": 2, "14": 1, "15": 1 } }], ["handlers", { "0": { "15": 1 }, "1": { "0": 1, "1": 2, "2": 2, "3": 2, "4": 4, "10": 2, "11": 4, "12": 3, "13": 2, "14": 2, "15": 5, "16": 2 } }], ["handlesend", { "1": { "7": 1 } }], ["handlesubmit", { "1": { "1": 2 } }], ["handles", { "1": { "0": 1, "1": 1, "2": 2, "5": 1, "6": 1, "18": 1 } }], ["has", { "1": { "6": 1, "8": 3, "9": 1, "13": 1, "14": 4, "15": 2 } }], ["have", { "1": { "1": 1, "12": 1, "13": 1 } }], ["hard", { "1": { "0": 1 } }], ["ratelimit", { "1": { "17": 3 } }], ["rate", { "1": { "17": 3 } }], ["rating", { "1": { "13": 3 } }], ["randomness", { "1": { "16": 1 } }], ["right", { "1": { "7": 1 } }], ["rich", { "1": { "1": 1, "6": 1 } }], ["role", { "1": { "1": 1, "7": 2, "11": 1, "13": 1, "15": 5, "16": 2, "18": 2 } }], ["rounded", { "1": { "1": 3, "7": 3, "8": 4, "9": 1 } }], ["route", { "1": { "1": 2, "4": 1 } }], ["runaway", { "1": { "16": 1 } }], ["runtime", { "1": { "11": 2 } }], ["run", { "1": { "1": 1, "2": 1, "4": 2, "15": 1 } }], ["running", { "1": { "0": 1, "7": 2, "8": 1, "9": 3, "12": 1 } }], ["runs", { "1": { "0": 1, "14": 1 } }], ["remaining", { "1": { "17": 1 } }], ["refunds", { "1": { "12": 1 } }], ["references", { "1": { "11": 1, "16": 1 } }], ["reference", { "1": { "0": 1, "2": 1, "6": 3, "10": 1, "11": 1, "12": 1, "14": 1, "15": 2, "17": 1, "18": 1 }, "2": { "17": 1, "18": 1, "19": 1 } }], ["req", { "1": { "10": 2 } }], ["requesting", { "1": { "18": 1 } }], ["request`", { "1": { "18": 2 } }], ["requests", { "1": { "17": 4 } }], ["request", { "1": { "0": 2, "1": 6, "4": 7, "5": 2, "6": 1, "8": 1, "10": 1, "11": 1, "12": 2, "13": 8, "14": 2, "15": 4, "16": 1, "17": 1, "18": 2, "19": 2 } }], ["require", { "1": { "17": 1 } }], ["required", { "1": { "4": 1, "6": 1, "11": 3, "12": 5, "14": 4, "16": 1, "18": 2, "19": 1 } }], ["requires", { "1": { "0": 1 } }], ["requirements", { "1": { "0": 1 } }], ["red", { "1": { "8": 4 } }], ["regular", { "1": { "7": 1 } }], ["reject", { "1": { "6": 2, "10": 7 } }], ["re", { "1": { "3": 1, "4": 1, "11": 1, "14": 1 } }], ["retrieves", { "1": { "14": 1 } }], ["retrieve", { "1": { "3": 3, "18": 1 } }], ["returned", { "1": { "3": 1, "16": 1 } }], ["returns", { "1": { "1": 1, "3": 3, "6": 1, "17": 1, "18": 2 } }], ["return", { "1": { "0": 1, "1": 13, "2": 2, "3": 3, "4": 20, "5": 2, "6": 4, "7": 10, "8": 12, "9": 9, "10": 3, "14": 2, "17": 1 } }], ["recommend", { "1": { "17": 1 } }], ["recommended", { "1": { "10": 1 } }], ["reconnectattempts", { "1": { "10": 6 } }], ["reconnect", { "1": { "10": 1 } }], ["reconnection", { "1": { "6": 1, "10": 5 } }], ["recovery", { "1": { "5": 1 } }], ["record<string", { "1": { "2": 5, "4": 2, "6": 2, "7": 1, "10": 1 } }], ["receives", { "1": { "4": 1, "12": 1, "16": 1 } }], ["receive", { "1": { "4": 1, "18": 1 } }], ["received", { "1": { "0": 1 } }], ["rendering", { "1": { "7": 4, "8": 1, "9": 1 } }], ["render", { "1": { "1": 1, "7": 1, "9": 1 } }], ["reasoningpart", { "1": { "8": 1 } }], ["reasoningendevent", { "1": { "5": 1 } }], ["reasoningdeltaevent", { "1": { "5": 1 } }], ["reasoningstartevent", { "1": { "5": 1 } }], ["reasoning", { "1": { "5": 9, "6": 2, "7": 3, "9": 2, "11": 1, "15": 1, "16": 3, "18": 4 } }], ["reason", { "1": { "5": 1, "13": 1 } }], ["reasons", { "1": { "5": 1 } }], ["reaching", { "1": { "5": 1, "9": 1 } }], ["reached", { "1": { "5": 1, "10": 1, "16": 1 } }], ["react`", { "1": { "6": 2 } }], ["react", { "1": { "0": 1, "1": 6, "6": 12, "7": 6, "8": 5, "9": 2, "10": 5, "13": 2, "17": 1 } }], ["reader", { "1": { "10": 4 } }], ["read", { "1": { "6": 1, "10": 2, "11": 1, "12": 4 } }], ["readable", { "1": { "5": 1, "7": 1, "9": 1, "11": 1, "15": 1 } }], ["readablestream<uint8array>", { "1": { "2": 1 } }], ["readonly", { "1": { "2": 2, "6": 3, "12": 1 } }], ["ready", { "1": { "2": 4, "3": 5, "7": 2, "18": 1 } }], ["real", { "1": { "0": 1, "2": 1, "5": 1, "6": 1, "8": 2, "10": 2 } }], ["replaced", { "1": { "11": 2 } }], ["repeat", { "1": { "4": 1, "16": 1 } }], ["repeatedly", { "1": { "0": 1 } }], ["represent", { "1": { "3": 1, "7": 1, "9": 1, "18": 1 } }], ["represents", { "1": { "0": 1 } }], ["restful", { "1": { "17": 1 } }], ["rest", { "1": { "10": 1 } }], ["restoring", { "1": { "3": 1, "7": 1 } }], ["restore", { "1": { "2": 1, "3": 3, "6": 1, "7": 2 } }], ["resolved", { "1": { "13": 1 } }], ["resolve", { "1": { "6": 2, "10": 7 } }], ["resource`", { "1": { "9": 1, "12": 1 } }], ["resourceupdateevent", { "1": { "5": 1 } }], ["resource", { "1": { "3": 2, "5": 3, "6": 1, "7": 2, "9": 2, "12": 9, "15": 8, "18": 1 } }], ["resources", { "0": { "12": 1 }, "1": { "0": 2, "2": 1, "3": 4, "9": 1, "11": 4, "12": 7, "16": 1, "18": 3 } }], ["resultcount", { "1": { "4": 1 } }], ["result", { "1": { "4": 6, "7": 1, "8": 3, "12": 2, "14": 2, "15": 2, "16": 1, "18": 2 } }], ["results", { "1": { "0": 1, "4": 3, "13": 1, "14": 3, "18": 2 } }], ["reset", { "1": { "3": 1, "10": 1, "17": 1, "18": 5 } }], ["responsive", { "1": { "5": 1, "8": 1 } }], ["response", { "1": { "0": 3, "1": 4, "2": 3, "3": 1, "4": 4, "5": 4, "7": 2, "8": 1, "15": 3, "16": 1, "17": 4, "18": 4, "19": 4 } }], ["responses", { "1": { "0": 1, "1": 1, "2": 1, "5": 1, "8": 1, "12": 1, "16": 2, "17": 3 } }], ["responds", { "1": { "16": 1 } }], ["responding", { "1": { "8": 1 } }], ["respond", { "1": { "0": 2, "4": 1, "5": 1, "11": 1, "13": 1, "15": 4, "16": 1, "17": 1, "18": 1 } }], ["rebuild", { "1": { "0": 1 } }], ["escalating", { "1": { "14": 1 } }], ["escalationprogress", { "1": { "9": 1 } }], ["escalation", { "1": { "9": 2, "11": 1, "13": 1, "15": 2, "16": 1 } }], ["escalate", { "1": { "13": 3, "16": 1 } }], ["estimatedresponse", { "1": { "1": 1, "4": 1, "14": 2 } }], ["every", { "1": { "15": 1 } }], ["everything", { "1": { "6": 1 } }], ["event", { "1": { "1": 1, "2": 1, "3": 1, "5": 6, "10": 1, "12": 1, "18": 4 } }], ["events", { "1": { "0": 1, "2": 1, "3": 1, "4": 1, "5": 10, "6": 3, "10": 11, "12": 1, "17": 1, "18": 2 } }], ["either", { "1": { "5": 1 } }], ["each", { "1": { "5": 1, "6": 1, "8": 3, "11": 1, "13": 3, "15": 1 } }], ["easy", { "1": { "0": 1 } }], ["empty", { "1": { "11": 1 } }], ["emitted", { "1": { "5": 1 } }], ["emits", { "1": { "5": 1 } }], ["email", { "1": { "1": 1, "4": 3, "5": 1, "14": 3, "18": 1 } }], ["else", { "1": { "3": 1, "10": 1, "19": 1 } }], ["e1", { "1": { "3": 1 } }], ["etc", { "1": { "2": 1, "6": 2, "7": 1, "8": 1, "10": 4, "11": 1 } }], ["e", { "1": { "1": 4, "3": 2, "4": 1, "6": 1, "7": 2, "8": 1, "9": 1 } }], ["error`", { "1": { "18": 1 } }], ["errorevent", { "1": { "5": 1 } }], ["errortext", { "1": { "5": 4 } }], ["errors", { "1": { "4": 1, "5": 2, "11": 1 } }], ["error", { "1": { "1": 2, "3": 8, "4": 4, "5": 11, "6": 9, "7": 9, "8": 16, "10": 3, "17": 3, "18": 1 } }], ["extraction", { "1": { "13": 1 } }], ["external", { "1": { "0": 1, "4": 1, "11": 1, "18": 1 } }], ["extended", { "1": { "5": 1, "6": 1, "7": 1, "11": 1, "15": 1, "16": 3, "18": 3 } }], ["extend", { "1": { "0": 1, "4": 1, "14": 1 } }], ["exception", { "1": { "5": 1 } }], ["existing", { "1": { "4": 1, "6": 1, "7": 1, "19": 2 } }], ["expanded", { "1": { "8": 4 } }], ["expand", { "1": { "8": 1 } }], ["express", { "1": { "6": 1, "10": 2 } }], ["exponential", { "1": { "10": 1 } }], ["exposure", { "1": { "4": 1 } }], ["export", { "1": { "1": 5, "4": 1 } }], ["expired", { "1": { "3": 2 } }], ["expire", { "1": { "3": 2 } }], ["explore", { "1": { "1": 1 } }], ["examples", { "1": { "10": 1 } }], ["example", { "1": { "1": 1, "6": 1, "9": 2, "15": 1, "16": 2, "18": 4, "19": 4 } }], ["executing", { "1": { "14": 2 } }], ["execution", { "1": { "0": 3, "2": 1, "4": 1, "5": 2, "6": 2, "7": 1, "11": 4, "15": 1, "17": 2, "18": 5 } }], ["executes", { "1": { "16": 1 } }], ["executed", { "1": { "13": 2 } }], ["execute", { "1": { "0": 3, "3": 1, "4": 3, "17": 1, "18": 3 } }], ["enabling", { "1": { "3": 1, "8": 1 } }], ["enables", { "1": { "5": 1, "10": 1, "17": 1 } }], ["enable", { "1": { "0": 1, "3": 1, "16": 2 } }], ["enterprise", { "1": { "17": 1 } }], ["entry", { "1": { "2": 1 } }], ["entity", { "1": { "0": 1 } }], ["end`", { "1": { "18": 4 } }], ["ends", { "1": { "5": 1 } }], ["ended", { "1": { "5": 3, "18": 3 } }], ["end", { "1": { "1": 1, "3": 1, "5": 4, "17": 2, "18": 3 } }], ["endpoints", { "1": { "17": 1 } }], ["endpoint", { "1": { "1": 4, "17": 3 } }], ["environment", { "1": { "1": 1 } }], ["env", { "1": { "1": 3, "3": 2, "10": 4 } }], ["b2", { "1": { "18": 2 } }], ["brief", { "1": { "11": 1 } }], ["break", { "1": { "10": 5 } }], ["browsers", { "1": { "10": 1 } }], ["billing", { "1": { "13": 1 } }], ["bidirectional", { "1": { "10": 1 } }], ["bindings", { "1": { "1": 1, "6": 1 } }], ["b1", { "1": { "3": 1, "18": 2 } }], ["b", { "1": { "3": 3 } }], ["bearer", { "1": { "17": 3, "18": 3, "19": 5 } }], ["been", { "1": { "14": 4 } }], ["being", { "1": { "12": 1 } }], ["between", { "1": { "11": 1 } }], ["behind", { "1": { "10": 1 } }], ["behaves", { "1": { "0": 1, "11": 1 } }], ["behavior", { "1": { "0": 2, "1": 1, "11": 1, "14": 1, "15": 2, "16": 1 } }], ["belong", { "1": { "9": 1 } }], ["belongs", { "1": { "7": 1 } }], ["before", { "1": { "5": 1, "9": 1, "11": 1 } }], ["best", { "1": { "4": 1, "13": 1, "14": 1 } }], ["be", { "1": { "3": 1, "6": 1, "9": 1, "11": 1, "12": 2, "13": 3, "16": 3, "17": 1, "18": 1 } }], ["blocks", { "1": { "6": 1, "11": 1, "12": 1, "13": 2, "15": 2 } }], ["blockstartevent", { "1": { "5": 1 } }], ["blockendevent", { "1": { "5": 1 } }], ["blocktype", { "1": { "5": 1, "17": 1, "18": 2 } }], ["blockname", { "1": { "5": 1, "17": 1, "18": 2 } }], ["blockid", { "1": { "5": 2, "17": 2, "18": 4 } }], ["block", { "1": { "1": 1, "5": 7, "7": 2, "8": 1, "9": 1, "12": 2, "14": 1, "15": 11, "17": 2, "18": 6 } }], ["blue", { "1": { "1": 2, "8": 1, "9": 1 } }], ["bg", { "1": { "1": 4, "7": 3, "8": 4, "9": 1 } }], ["boolean", { "1": { "10": 1, "13": 1, "14": 1 } }], ["bottom", { "1": { "7": 1, "8": 1 } }], ["both", { "1": { "6": 1 } }], ["border", { "1": { "1": 2, "7": 2, "8": 3 } }], ["body", { "1": { "1": 2, "6": 3, "7": 2, "8": 1, "13": 1, "18": 2, "19": 2 } }], ["bad", { "1": { "17": 1 } }], ["balanced", { "1": { "16": 1 } }], ["basic", { "1": { "1": 1, "2": 1, "7": 1, "10": 2, "16": 1 } }], ["base", { "1": { "17": 1 } }], ["baseurl", { "1": { "1": 1, "2": 2, "3": 1, "10": 2 } }], ["based", { "1": { "0": 1, "10": 1, "14": 2 } }], ["backoff", { "1": { "10": 1 } }], ["background", { "1": { "5": 1, "8": 1, "11": 1, "15": 1 } }], ["backends", { "1": { "17": 1 } }], ["backend", { "1": { "0": 1, "1": 5, "2": 1, "4": 1, "6": 1, "7": 2, "14": 2 } }], ["back", { "1": { "0": 1, "4": 1, "7": 1, "18": 1 } }], ["by=slug", { "1": { "19": 3 } }], ["by=slug`", { "1": { "18": 1 } }], ["by", { "1": { "0": 1, "1": 1, "3": 1, "5": 1, "7": 1, "8": 1, "9": 1, "10": 1, "12": 2, "14": 3, "15": 1, "17": 1, "18": 2, "19": 3 } }], ["budget", { "1": { "16": 1 } }], ["but", { "1": { "12": 2 } }], ["button>", { "1": { "1": 1, "8": 3 } }], ["button", { "1": { "0": 2, "6": 1, "8": 2, "13": 2 } }], ["build", { "1": { "0": 1, "1": 1 } }], ["building", { "1": { "0": 1, "6": 2, "8": 1 } }], ["built", { "1": { "0": 2 } }], ["business", { "1": { "0": 1 } }], ["missing", { "1": { "17": 1 } }], ["minute", { "1": { "17": 2 } }], ["minutes", { "1": { "0": 1, "1": 1 } }], ["mini", { "1": { "16": 4 } }], ["min", { "1": { "10": 1 } }], ["multi", { "1": { "16": 1 } }], ["multiple", { "1": { "0": 1, "8": 1, "9": 1, "11": 1, "14": 1, "16": 2 } }], ["must", { "1": { "12": 2, "13": 1 } }], ["ms", { "1": { "10": 1 } }], ["msg", { "1": { "1": 3, "6": 3, "7": 3, "8": 3, "10": 5, "13": 1, "18": 1 } }], ["mb", { "1": { "8": 1 } }], ["mt", { "1": { "8": 4 } }], ["move", { "1": { "11": 1 } }], ["moderate", { "1": { "16": 1 } }], ["model", { "1": { "11": 3, "14": 1, "15": 3, "16": 18, "19": 2 } }], ["models", { "1": { "5": 1, "16": 2 } }], ["mode", { "1": { "5": 1, "9": 2, "14": 1, "15": 1, "16": 1 } }], ["modes", { "1": { "5": 1, "9": 1, "14": 2, "15": 1 } }], ["most", { "1": { "5": 1, "6": 1, "13": 1 } }], ["more", { "1": { "4": 1, "16": 1 } }], ["monitor", { "1": { "0": 1 } }], ["my", { "1": { "3": 1, "11": 3, "18": 3, "19": 2 } }], ["ml", { "1": { "1": 1, "7": 1, "8": 1 } }], ["md`", { "1": { "11": 1, "16": 1 } }], ["md", { "1": { "1": 1, "11": 5, "14": 1, "16": 3 } }], ["metadata", { "1": { "11": 1 } }], ["meteor", { "1": { "10": 1 } }], ["method", { "1": { "1": 2, "3": 1, "6": 3, "7": 2, "8": 1, "13": 1, "17": 2, "18": 1, "19": 1 } }], ["means", { "1": { "9": 1 } }], ["medium", { "1": { "8": 2, "11": 1, "14": 4, "15": 2, "16": 4 } }], ["memoized", { "1": { "6": 1 } }], ["me", { "1": { "5": 1, "13": 1 } }], ["messagelist", { "1": { "7": 1 } }], ["messageid", { "1": { "5": 1, "10": 1, "17": 1, "18": 1 } }], ["messagebubble", { "1": { "1": 1, "6": 1, "7": 1, "8": 1, "9": 1 } }], ["message=", { "1": { "1": 1, "6": 1, "7": 1, "8": 1 } }], ["message", { "1": { "0": 2, "1": 12, "2": 3, "3": 5, "4": 1, "5": 3, "6": 18, "7": 10, "8": 9, "9": 8, "10": 14, "11": 9, "12": 1, "13": 27, "15": 26, "16": 9, "17": 4, "18": 9, "19": 4 } }], ["messages", { "0": { "7": 1 }, "1": { "0": 2, "1": 3, "2": 5, "3": 12, "6": 11, "7": 14, "8": 4, "9": 3, "10": 3, "18": 3 } }], ["many", { "1": { "17": 1 } }], ["managing", { "1": { "0": 1 } }], ["managed", { "1": { "12": 1 } }], ["manages", { "1": { "2": 1 } }], ["management", { "1": { "0": 2, "2": 3, "6": 1, "10": 1, "17": 1 } }], ["manage", { "1": { "0": 2, "2": 1, "19": 1 } }], ["making", { "1": { "14": 1 } }], ["make", { "1": { "14": 2 } }], ["markdown", { "1": { "12": 1, "15": 3 } }], ["math", { "1": { "10": 1 } }], ["may", { "1": { "9": 1, "12": 1, "15": 1, "16": 1 } }], ["maxsteps", { "1": { "14": 1, "15": 1, "16": 4 } }], ["maximum", { "1": { "14": 1, "16": 1 } }], ["maxretries", { "1": { "12": 1 } }], ["maxattempts", { "1": { "10": 2 } }], ["maxprice", { "1": { "4": 3, "14": 1 } }], ["max", { "1": { "1": 1, "5": 1, "10": 1, "13": 1, "14": 1 } }], ["mapping", { "1": { "15": 2 } }], ["map", { "1": { "1": 2, "6": 3, "7": 2, "8": 3, "9": 2, "15": 1 } }], ["mainparts", { "1": { "8": 2 } }], ["main", { "1": { "0": 1, "2": 1, "5": 1, "7": 1, "8": 2, "11": 1, "15": 6 } }], ["days", { "1": { "12": 1 } }], ["dashes`", { "1": { "11": 3 } }], ["dashes", { "1": { "11": 2 } }], ["date", { "1": { "7": 1, "14": 1 } }], ["database", { "1": { "1": 1, "2": 1, "4": 2 } }], ["data", { "1": { "0": 2, "2": 1, "4": 5, "10": 11, "12": 4, "14": 3, "17": 10, "18": 17 } }], ["during", { "1": { "8": 2, "9": 2 } }], ["dynamically", { "1": { "4": 1 } }], ["d1", { "1": { "3": 1 } }], ["d", { "1": { "3": 3, "17": 1, "18": 2, "19": 2 } }], ["db", { "1": { "2": 1, "4": 3, "14": 1 } }], ["dot", { "1": { "12": 1, "14": 1 } }], ["doesn", { "1": { "12": 1, "14": 1, "15": 2 } }], ["does", { "1": { "11": 1, "14": 1 } }], ["don", { "1": { "10": 1, "15": 2 } }], ["done", { "1": { "6": 1, "7": 7, "8": 5, "9": 2, "10": 6, "17": 1, "18": 5 } }], ["doing", { "1": { "9": 1 } }], ["document", { "1": { "13": 4, "14": 1 } }], ["documentation", { "1": { "3": 1, "16": 1 } }], ["docs", { "1": { "0": 4, "1": 3, "2": 3, "6": 5, "10": 1, "11": 5, "16": 3, "18": 1 } }], ["do", { "1": { "0": 1, "3": 1, "4": 1, "13": 2, "14": 1, "18": 3 } }], ["digits", { "1": { "11": 1 } }], ["different", { "1": { "13": 1, "15": 2, "16": 3 } }], ["differently", { "1": { "7": 1 } }], ["difficult", { "1": { "0": 1 } }], ["disconnected", { "1": { "10": 2 } }], ["disconnections", { "1": { "10": 1 } }], ["displayed", { "1": { "16": 1 } }], ["displayname", { "1": { "7": 2, "8": 1 } }], ["display", { "1": { "2": 1, "5": 2, "6": 1, "9": 3, "14": 2, "15": 8, "16": 1, "17": 1, "18": 2, "19": 1 } }], ["disabled", { "1": { "1": 1 } }], ["disabled=", { "1": { "1": 2 } }], ["div>", { "1": { "1": 6, "6": 2, "7": 6, "8": 11, "9": 5 } }], ["dive", { "1": { "0": 1, "2": 1 } }], ["directives", { "1": { "15": 1 } }], ["directive", { "1": { "14": 1, "15": 5 } }], ["directly", { "1": { "3": 1, "4": 1, "10": 1, "17": 2, "18": 1 } }], ["direct", { "1": { "0": 1, "3": 1, "13": 1 } }], ["determines", { "1": { "15": 1 } }], ["deterministically", { "1": { "15": 1 } }], ["deterministic", { "1": { "14": 1, "16": 1 } }], ["details", { "1": { "15": 3 } }], ["details>", { "1": { "7": 1 } }], ["detailed", { "1": { "6": 1 } }], ["descriptive", { "1": { "13": 1 } }], ["description`", { "1": { "19": 1 } }], ["descriptions", { "1": { "14": 1 } }], ["description", { "1": { "5": 2, "9": 1, "11": 6, "12": 14, "13": 14, "14": 16, "15": 3, "16": 4, "17": 3, "18": 4, "19": 5 } }], ["describes", { "1": { "12": 3, "14": 1 } }], ["decided", { "1": { "14": 1 } }], ["decide", { "1": { "14": 1 } }], ["decides", { "1": { "4": 1, "14": 1, "16": 2 } }], ["declarative", { "1": { "11": 1 } }], ["decode", { "1": { "10": 2 } }], ["decoder", { "1": { "10": 4 } }], ["delay", { "1": { "10": 3 } }], ["delivered", { "1": { "6": 1 } }], ["delta`", { "1": { "10": 1, "18": 3 } }], ["delta", { "1": { "4": 2, "5": 15, "10": 3, "17": 4, "18": 16 } }], ["def456b", { "1": { "18": 1 } }], ["defaults", { "1": { "12": 2, "13": 1, "15": 1 } }], ["default", { "1": { "1": 1, "7": 1, "9": 1, "11": 1, "12": 7, "13": 3, "14": 3, "15": 4, "16": 3 } }], ["definitions", { "1": { "19": 1 } }], ["definition", { "1": { "11": 1, "12": 3, "13": 1, "14": 1, "19": 1 } }], ["defining", { "1": { "0": 1, "4": 1, "11": 1 } }], ["defined", { "1": { "0": 2, "14": 2 } }], ["defines", { "1": { "0": 1 } }], ["define", { "1": { "0": 4, "1": 2, "11": 2, "12": 1, "13": 1, "15": 1 } }], ["demo", { "1": { "1": 2, "5": 1, "18": 2 } }], ["deep", { "1": { "0": 1, "2": 1 } }], ["debugging", { "1": { "2": 1, "3": 1 } }], ["debug", { "1": { "0": 1, "3": 1, "11": 1, "15": 1 } }], ["deploy", { "1": { "0": 2, "19": 1 } }], ["developers", { "1": { "0": 2 } }], ["pipelines", { "1": { "19": 1 } }], ["phone", { "1": { "13": 1 } }], ["phoenix", { "1": { "10": 1 } }], ["pending", { "1": { "7": 1, "8": 1 } }], ["permissions", { "1": { "17": 1 } }], ["persona", { "1": { "16": 1 } }], ["persists", { "1": { "12": 2 } }], ["persistence", { "1": { "12": 1 } }], ["persistent", { "1": { "10": 1, "11": 1, "12": 2, "15": 1 } }], ["persist", { "1": { "12": 1 } }], ["per", { "1": { "5": 1, "13": 1 } }], ["plus", { "1": { "6": 1 } }], ["play", { "1": { "7": 1, "8": 1 } }], ["placeholder=", { "1": { "1": 1 } }], ["plan", { "1": { "1": 1, "4": 2, "14": 3 } }], ["platforms", { "1": { "4": 1 } }], ["platform", { "1": { "0": 1, "4": 7, "9": 1, "10": 1, "17": 1, "18": 2 } }], ["purple", { "1": { "8": 1 } }], ["purpose", { "1": { "6": 1, "12": 1 } }], ["pulse", { "1": { "1": 1, "7": 1, "8": 1, "9": 1 } }], ["policies", { "1": { "11": 2, "12": 3 } }], ["portable", { "1": { "11": 1 } }], ["populate", { "1": { "6": 1 } }], ["possible", { "1": { "5": 1 } }], ["post", { "1": { "1": 4, "4": 2, "6": 3, "7": 2, "8": 1, "13": 1, "17": 3, "18": 4, "19": 2 } }], ["points", { "1": { "14": 1 } }], ["point", { "1": { "2": 1 } }], ["patch", { "1": { "17": 1, "19": 3 } }], ["patterns", { "1": { "6": 1 } }], ["pattern", { "1": { "6": 1, "10": 2, "18": 1 } }], ["payload", { "1": { "13": 1 } }], ["parameter", { "1": { "14": 4 } }], ["parameters", { "1": { "11": 1, "14": 9, "16": 3, "17": 1 } }], ["parse", { "1": { "10": 3 } }], ["partial", { "1": { "8": 2 } }], ["participant", { "1": { "0": 3, "4": 4 } }], ["partrenderer", { "1": { "7": 2, "9": 1 } }], ["part=", { "1": { "7": 3, "8": 2, "9": 4 } }], ["part", { "1": { "1": 3, "6": 5, "7": 27, "8": 26, "9": 9, "18": 1 } }], ["parts", { "1": { "1": 1, "3": 1, "6": 4, "7": 5, "8": 5, "9": 4, "18": 3 } }], ["pauses", { "1": { "4": 1 } }], ["pass", { "1": { "3": 1, "4": 1, "7": 2, "12": 1 } }], ["password", { "1": { "3": 1, "18": 5 } }], ["passed", { "1": { "3": 1, "4": 1, "18": 1 } }], ["packages", { "1": { "6": 1 } }], ["package", { "1": { "2": 1, "6": 1 } }], ["page", { "1": { "1": 1, "3": 2 } }], ["p>", { "1": { "1": 1, "6": 1, "7": 1, "8": 1 } }], ["py", { "1": { "1": 2 } }], ["px", { "1": { "1": 2 } }], ["p", { "1": { "1": 2, "7": 3, "8": 8, "9": 3 } }], ["practices", { "1": { "4": 1, "13": 1, "14": 1 } }], ["price", { "1": { "14": 1 } }], ["primitive", { "1": { "4": 1 } }], ["priority", { "1": { "4": 4, "14": 8, "15": 2, "16": 1 } }], ["prevent", { "1": { "16": 1 } }], ["preventdefault", { "1": { "1": 1 } }], ["prefix", { "1": { "10": 1 } }], ["presence", { "1": { "10": 2 } }], ["preserve", { "1": { "7": 1, "18": 1 } }], ["pre>", { "1": { "7": 1, "8": 2 } }], ["pre", { "1": { "6": 1 } }], ["prerequisites", { "1": { "1": 1 } }], ["programmatic", { "1": { "17": 1 } }], ["progress", { "1": { "5": 1, "6": 1, "8": 1, "9": 1, "14": 1 } }], ["professional", { "1": { "16": 1 } }], ["proxies", { "1": { "10": 1 } }], ["properties", { "1": { "12": 1, "15": 1 } }], ["property", { "1": { "7": 1, "8": 1, "9": 1, "12": 1, "15": 1 } }], ["properly", { "1": { "3": 1 } }], ["promise", { "1": { "6": 1, "10": 3 } }], ["promise<void>", { "1": { "6": 2 } }], ["promise<unknown>", { "1": { "4": 1 } }], ["promise<uisessionstate>", { "1": { "2": 1 } }], ["promise<socketlike>", { "1": { "10": 1 } }], ["promise<sessionstate>", { "1": { "2": 1 } }], ["promise<string>", { "1": { "2": 1 } }], ["prompts", { "1": { "0": 1, "11": 5, "12": 1, "14": 3, "16": 2, "19": 6 } }], ["prompt", { "1": { "0": 1, "11": 2, "13": 1, "14": 1, "15": 10, "16": 7, "19": 2 } }], ["productsearch", { "1": { "4": 2 } }], ["products", { "1": { "4": 4, "13": 1, "14": 1 } }], ["product", { "1": { "1": 1, "2": 1, "3": 1, "11": 1, "12": 3, "14": 1, "16": 4, "18": 3 } }], ["production", { "1": { "0": 1, "10": 1 } }], ["pro", { "1": { "1": 2, "2": 1, "3": 1, "12": 1, "17": 1, "18": 3 } }], ["processed", { "1": { "10": 1 } }], ["processing", { "1": { "8": 1, "15": 1 } }], ["process", { "1": { "1": 2, "3": 2, "8": 1, "10": 5 } }], ["projects", { "1": { "11": 1 } }], ["project", { "1": { "1": 1, "17": 1, "19": 1 } }], ["provide", { "1": { "11": 1, "12": 2 } }], ["provided", { "1": { "7": 1, "11": 2, "12": 3, "13": 1, "19": 1 } }], ["provides", { "1": { "2": 1, "6": 2, "7": 1, "8": 1, "10": 1, "19": 1 } }], ["provider", { "1": { "0": 1, "16": 1 } }], ["providing", { "1": { "0": 1 } }], ["protocolyaml", { "1": { "19": 1 } }], ["protocols", { "1": { "0": 2, "6": 1, "11": 3, "19": 1 } }], ["protocol", { "1": { "0": 4, "1": 2, "4": 1, "9": 1, "10": 1, "11": 8, "14": 1, "19": 7 }, "2": { "11": 1, "12": 1, "13": 1, "14": 1, "15": 1, "16": 1 } }], ["problems", { "1": { "0": 1 } }], ["wrapped", { "1": { "17": 1 } }], ["writing", { "1": { "12": 1 } }], ["written", { "1": { "11": 1, "12": 1 } }], ["write", { "1": { "10": 1, "11": 1, "12": 3 } }], ["wrong<", { "1": { "8": 1 } }], ["wrong", { "1": { "5": 1 } }], ["won", { "1": { "9": 1 } }], ["works", { "1": { "16": 1 } }], ["working", { "1": { "1": 1, "6": 1 } }], ["work", { "1": { "0": 1, "5": 1 } }], ["wss", { "1": { "10": 2 } }], ["ws", { "1": { "6": 4, "10": 13 } }], ["we", { "1": { "17": 1 } }], ["went", { "1": { "5": 1, "8": 1 } }], ["websocketserver", { "1": { "10": 2 } }], ["websocket", { "1": { "6": 5, "10": 8 } }], ["web", { "1": { "0": 1, "10": 1 } }], ["w", { "1": { "1": 2, "7": 1, "8": 1, "9": 1 } }], ["which", { "1": { "15": 1 } }], ["while", { "1": { "8": 1, "10": 2, "14": 2 } }], ["white", { "1": { "1": 2 } }], ["where", { "1": { "4": 1, "5": 1 } }], ["when", { "1": { "3": 1, "4": 2, "5": 1, "6": 2, "7": 1, "8": 3, "9": 1, "10": 3, "11": 2, "12": 4, "13": 4, "14": 5, "15": 1, "18": 1 } }], ["why", { "1": { "4": 1, "11": 1, "13": 1 } }], ["what", { "1": { "0": 2, "1": 1, "4": 1, "9": 1, "11": 2, "12": 2, "13": 1, "14": 3, "15": 1 } }], ["wants", { "1": { "13": 1 } }], ["waiting", { "1": { "5": 1 } }], ["watchers`", { "1": { "3": 1 } }], ["watchers", { "1": { "3": 1 } }], ["walk", { "1": { "1": 1 } }], ["way", { "1": { "0": 1 } }], ["widget", { "1": { "1": 1, "2": 1, "3": 1, "12": 1, "18": 3 } }], ["will", { "1": { "1": 1 } }], ["within", { "1": { "12": 1 } }], ["without", { "1": { "6": 1, "9": 1, "16": 1 } }], ["with", { "1": { "0": 4, "1": 4, "2": 2, "3": 5, "4": 3, "5": 3, "6": 4, "7": 1, "8": 2, "10": 3, "11": 11, "12": 5, "13": 3, "14": 1, "15": 1, "16": 1, "18": 7 } }], ["false", { "1": { "13": 2, "14": 1, "15": 2 } }], ["fallbacks", { "1": { "10": 1 } }], ["failed", { "1": { "5": 1, "6": 1, "7": 1, "8": 2, "10": 2, "18": 1 } }], ["failure", { "1": { "5": 1 } }], ["failures", { "1": { "4": 1 } }], ["factual", { "1": { "16": 1 } }], ["facing", { "1": { "3": 1, "5": 1 } }], ["face", { "1": { "0": 1 } }], ["fields", { "1": { "14": 2, "18": 2, "19": 2 } }], ["field", { "1": { "11": 1, "12": 3, "14": 2, "16": 1, "17": 1, "18": 3, "19": 1 } }], ["files", { "1": { "19": 1 } }], ["filename", { "1": { "16": 1 } }], ["file", { "1": { "11": 1, "13": 3, "15": 1 } }], ["filtered", { "1": { "5": 2, "9": 1 } }], ["filter", { "1": { "5": 1, "8": 2, "9": 1, "13": 1, "14": 2 } }], ["fires", { "1": { "15": 1 } }], ["fire", { "1": { "11": 1 } }], ["first", { "1": { "0": 1, "3": 1 } }], ["finalized", { "1": { "8": 1 } }], ["finalize", { "1": { "6": 1, "8": 1 } }], ["finally", { "1": { "4": 1 } }], ["finishevent", { "1": { "5": 1 } }], ["finishreason", { "1": { "5": 1, "10": 1, "17": 1, "18": 1 } }], ["finish", { "1": { "5": 3, "10": 2, "17": 1, "18": 1 } }], ["find", { "1": { "4": 1 } }], ["findbyid", { "1": { "2": 1, "4": 3, "14": 1 } }], ["feedback", { "1": { "13": 3 } }], ["features", { "1": { "1": 1, "2": 1, "6": 1 } }], ["fetch", { "1": { "1": 3, "4": 1, "6": 3, "7": 4, "8": 1, "13": 1 } }], ["flexibility", { "1": { "6": 1 } }], ["flex", { "1": { "1": 5, "8": 1, "9": 3 } }], ["flows", { "1": { "11": 1 } }], ["flowchart", { "1": { "3": 1 } }], ["flow", { "1": { "0": 1, "4": 1 } }], ["functionality", { "1": { "10": 1 } }], ["functions", { "1": { "4": 1 } }], ["function", { "1": { "1": 6, "4": 1, "6": 6, "7": 9, "8": 8, "9": 5, "10": 2, "13": 1 } }], ["full", { "1": { "0": 1, "1": 1, "2": 2, "3": 1, "4": 2, "9": 1, "10": 1, "16": 1 } }], ["friendly", { "1": { "16": 1 } }], ["from", { "1": { "1": 9, "2": 1, "3": 2, "4": 1, "6": 6, "7": 8, "8": 7, "9": 2, "10": 11, "12": 1, "13": 5, "14": 1, "15": 1, "18": 1 } }], ["frontends", { "1": { "17": 1 } }], ["frontend", { "1": { "1": 2, "2": 1, "3": 3, "4": 1, "5": 2, "6": 1 } }], ["framework", { "1": { "6": 4 } }], ["frameworks", { "1": { "0": 1, "6": 1, "10": 1 } }], ["fragmented", { "1": { "0": 1 } }], ["folder", { "1": { "11": 1 } }], ["font", { "1": { "8": 2 } }], ["found", { "1": { "1": 1, "3": 1, "4": 1, "5": 1, "17": 3 } }], ["forbidden", { "1": { "17": 1 } }], ["force", { "1": { "14": 1 } }], ["forward", { "1": { "10": 3 } }], ["format`", { "1": { "19": 1 } }], ["format", { "1": { "2": 2, "3": 3, "10": 1, "11": 1, "12": 1, "15": 2, "16": 1, "17": 2, "19": 5 } }], ["form>", { "1": { "1": 1 } }], ["formevent", { "1": { "1": 1 } }], ["form", { "1": { "0": 1, "13": 1 } }], ["for", { "1": { "0": 3, "1": 3, "2": 8, "3": 4, "4": 4, "5": 2, "6": 6, "7": 4, "9": 1, "10": 9, "11": 3, "12": 4, "13": 2, "14": 2, "15": 9, "16": 3, "17": 2, "18": 3, "19": 2 } }], ["focused", { "1": { "13": 2 } }], ["focus", { "1": { "0": 1 } }], ["cd", { "1": { "19": 1 } }], ["ci", { "1": { "19": 1 } }], ["cm5xyz123abc456def", { "1": { "18": 2 } }], ["cm5xvz7k80001abcd", { "1": { "18": 3, "19": 4 } }], ["cycles", { "1": { "14": 1, "16": 2 } }], ["center", { "1": { "8": 1, "9": 3 } }], ["checking", { "1": { "9": 1 } }], ["check", { "1": { "4": 1, "7": 1 } }], ["changed", { "1": { "18": 1 } }], ["changes", { "1": { "6": 1, "8": 1, "11": 1 } }], ["chatstatus", { "1": { "6": 2, "8": 1 } }], ["chatmessage", { "1": { "2": 1, "3": 1 } }], ["chatpage", { "1": { "1": 1 } }], ["chatprops", { "1": { "1": 2, "7": 2 } }], ["chat", { "1": { "0": 2, "1": 10, "3": 2, "4": 1, "5": 1, "6": 6, "7": 2, "8": 1, "10": 1, "11": 1, "12": 1, "13": 4, "15": 3, "19": 8 } }], ["challenges", { "1": { "0": 1 } }], ["c1", { "1": { "3": 1 } }], ["c", { "1": { "3": 7 } }], ["creative", { "1": { "16": 3 } }], ["creation", { "1": { "12": 2, "14": 1 } }], ["creating", { "1": { "3": 1, "9": 1, "11": 1, "12": 2 } }], ["createdby", { "1": { "4": 1 } }], ["created", { "1": { "3": 1, "4": 1, "14": 4, "17": 2, "19": 4 } }], ["createdat", { "1": { "2": 1, "3": 2, "4": 2, "7": 1, "14": 2, "18": 3, "19": 1 } }], ["createhttptransport", { "1": { "1": 2, "6": 7, "7": 4, "8": 2, "13": 2 } }], ["createserver", { "1": { "10": 1 } }], ["createsession", { "1": { "1": 2 } }], ["createsockettransport", { "1": { "6": 3, "10": 8 } }], ["creates", { "1": { "1": 1, "6": 2, "19": 1 } }], ["create", { "1": { "1": 14, "2": 5, "3": 6, "4": 9, "6": 1, "12": 3, "14": 12, "15": 7, "16": 4, "17": 2, "18": 2, "19": 2 } }], ["curl", { "1": { "17": 2, "18": 3, "19": 5 } }], ["current++", { "1": { "10": 1 } }], ["current", { "1": { "2": 1, "6": 3, "8": 3, "10": 5, "12": 1 } }], ["customer", { "1": { "19": 3 } }], ["custom", { "1": { "0": 1, "1": 1, "4": 1, "6": 2, "10": 5, "12": 1, "17": 1 } }], ["closed", { "1": { "10": 1 } }], ["clear", { "1": { "13": 3, "14": 2 } }], ["cleartimeout", { "1": { "4": 1 } }], ["cleanup", { "1": { "6": 1, "10": 1 } }], ["claude", { "1": { "5": 1, "11": 1, "14": 1, "15": 2, "16": 9, "19": 2 } }], ["class", { "1": { "2": 3, "6": 3 } }], ["classname=", { "1": { "1": 9, "7": 10, "8": 18, "9": 8 } }], ["click", { "1": { "6": 1 } }], ["clicks", { "1": { "0": 2, "9": 1, "11": 1, "13": 2 } }], ["client", { "1": { "0": 3, "1": 6, "2": 5, "3": 13, "4": 2, "5": 1, "6": 11, "7": 3, "8": 1, "9": 2, "10": 3, "12": 2, "13": 1, "14": 1, "17": 2, "18": 1, "19": 1 }, "2": { "6": 1, "7": 1, "8": 1, "9": 1, "10": 1 } }], ["case`", { "1": { "11": 1, "12": 1, "13": 1, "14": 1 } }], ["case", { "1": { "6": 5, "7": 4, "8": 7, "9": 4, "10": 4, "16": 1 } }], ["caught", { "1": { "5": 1 } }], ["captured", { "1": { "4": 1, "5": 1 } }], ["capabilities", { "1": { "0": 1, "11": 1 } }], ["catalog", { "1": { "14": 1 } }], ["category", { "1": { "4": 3, "13": 1, "14": 2 } }], ["catch", { "1": { "3": 1, "10": 1, "11": 1 } }], ["cached", { "1": { "12": 1 } }], ["cache", { "1": { "1": 2, "5": 2 } }], ["call`", { "1": { "18": 1 } }], ["calling", { "1": { "16": 1, "17": 1 } }], ["called", { "1": { "8": 1, "13": 1 } }], ["callback", { "1": { "6": 1, "10": 3, "13": 2 } }], ["callbacks", { "1": { "6": 1, "7": 1, "12": 1 } }], ["call", { "1": { "0": 2, "1": 1, "4": 3, "5": 1, "6": 2, "7": 2, "8": 1, "9": 1, "12": 1, "14": 6, "15": 7, "16": 4, "18": 1 } }], ["calls", { "1": { "0": 1, "4": 2, "5": 1, "8": 1, "9": 1, "11": 1, "14": 2, "16": 1, "18": 1 } }], ["cancel", { "1": { "13": 1 } }], ["cannot", { "1": { "12": 1, "13": 1 } }], ["can", { "1": { "0": 3, "3": 2, "4": 2, "5": 1, "6": 1, "9": 2, "10": 1, "11": 3, "12": 3, "13": 1, "14": 2, "16": 4, "17": 1, "18": 3 } }], ["copy", { "1": { "18": 1 } }], ["couldn", { "1": { "4": 1 } }], ["corresponding", { "1": { "13": 2 } }], ["corp", { "1": { "1": 1, "2": 1, "3": 1, "12": 1, "18": 3 } }], ["core", { "1": { "0": 1, "6": 1 } }], ["collapse", { "1": { "8": 1 } }], ["col", { "1": { "1": 1 } }], ["comment", { "1": { "13": 3 } }], ["communication", { "1": { "6": 1, "10": 1 } }], ["common", { "1": { "5": 2, "9": 1, "13": 1 } }], ["compact", { "1": { "9": 1 } }], ["company", { "1": { "1": 1, "2": 1, "3": 1, "11": 2, "12": 5, "15": 3, "16": 4, "18": 3, "19": 4 } }], ["completion", { "1": { "5": 1, "8": 1 } }], ["completed", { "1": { "5": 2, "7": 1, "8": 1, "18": 2 } }], ["complete", { "1": { "3": 1, "5": 1, "15": 1, "18": 2 } }], ["complexity", { "1": { "0": 1, "4": 1, "16": 1 } }], ["complex", { "1": { "0": 1, "12": 1, "16": 2 } }], ["components", { "1": { "1": 2 } }], ["component", { "1": { "1": 1, "10": 1 } }], ["com", { "1": { "1": 1, "6": 1, "10": 2, "18": 1 } }], ["codes", { "1": { "17": 1 } }], ["code", { "1": { "0": 1, "3": 1, "17": 2 } }], ["codebases", { "1": { "0": 1 } }], ["conn", { "1": { "10": 3 } }], ["connect", { "1": { "6": 1, "10": 8 } }], ["connections", { "1": { "6": 1, "10": 2 } }], ["connection", { "1": { "1": 1, "5": 1, "6": 1, "10": 6 } }], ["connecting", { "1": { "0": 1 } }], ["convert", { "1": { "15": 1 } }], ["converting", { "1": { "9": 1 } }], ["conversation`", { "1": { "3": 1 } }], ["conversation", { "1": { "0": 2, "3": 3, "5": 1, "7": 2, "8": 1, "9": 2, "11": 1, "12": 8, "13": 1, "14": 1, "15": 19, "16": 1, "18": 2 } }], ["conversations", { "1": { "0": 1, "3": 1, "18": 1 } }], ["conventions", { "1": { "5": 1, "11": 1 } }], ["configuration", { "1": { "11": 1, "12": 1, "16": 2 } }], ["configurable", { "1": { "3": 1 } }], ["configures", { "1": { "16": 1 } }], ["configure", { "1": { "3": 2 } }], ["config", { "0": { "16": 1 }, "1": { "2": 1, "11": 2, "12": 1, "16": 3 } }], ["consistent", { "1": { "16": 1 } }], ["console", { "1": { "3": 5, "4": 2, "6": 2, "7": 3, "8": 2, "10": 3, "12": 1, "19": 2 } }], ["constrained", { "1": { "14": 1 } }], ["constructor", { "1": { "2": 1, "6": 1 } }], ["const", { "1": { "1": 18, "2": 5, "3": 8, "4": 21, "5": 1, "6": 13, "7": 6, "8": 7, "9": 1, "10": 34, "12": 1, "13": 4, "14": 4, "19": 1 } }], ["consumers", { "1": { "12": 1 } }], ["consumer", { "1": { "0": 1, "12": 4 } }], ["context", { "1": { "4": 5, "12": 1 } }], ["content", { "1": { "1": 4, "2": 1, "3": 2, "5": 6, "6": 9, "7": 7, "8": 6, "13": 2, "15": 4, "16": 1, "17": 1, "18": 6, "19": 8 } }], ["containing", { "1": { "12": 1 } }], ["contain", { "1": { "6": 1, "7": 1, "15": 1, "18": 1 } }], ["contains", { "1": { "3": 1, "14": 1 } }], ["contained", { "1": { "0": 1 } }], ["continuation", { "1": { "2": 1, "18": 3 } }], ["continue", { "1": { "0": 1, "4": 1 } }], ["controller", { "1": { "4": 3 } }], ["control", { "1": { "0": 1, "1": 1, "4": 1, "5": 1, "16": 1 } }], ["concepts", { "1": { "0": 1 } }], ["share", { "1": { "16": 1 } }], ["showtoast", { "1": { "10": 1 } }], ["show", { "1": { "8": 3, "14": 2, "15": 3 } }], ["showing", { "1": { "6": 1 } }], ["shows", { "1": { "5": 2, "14": 2, "15": 2 } }], ["shown", { "1": { "5": 1, "9": 1, "14": 1, "15": 3 } }], ["shouldn", { "1": { "15": 1 } }], ["should", { "1": { "5": 1, "6": 1, "13": 2 } }], ["sync", { "1": { "19": 2 } }], ["synced", { "1": { "12": 3 } }], ["syntax", { "1": { "14": 1 } }], ["systemprompt", { "1": { "19": 1 } }], ["system", { "1": { "1": 1, "4": 1, "11": 5, "12": 2, "14": 2, "15": 4, "16": 17, "19": 10 } }], ["systems", { "1": { "0": 1 } }], ["snake", { "1": { "11": 1, "12": 1, "13": 1, "14": 1 } }], ["slice", { "1": { "10": 2 } }], ["slug`", { "1": { "19": 1 } }], ["slugs", { "1": { "11": 1 } }], ["slug", { "1": { "1": 1, "11": 1, "18": 2, "19": 10 } }], ["sm", { "1": { "7": 4, "8": 2, "9": 3 } }], ["single", { "1": { "19": 1 } }], ["simple", { "1": { "15": 1, "16": 1 } }], ["silently", { "1": { "14": 1 } }], ["side", { "1": { "6": 1, "7": 1, "10": 1 } }], ["signal", { "1": { "4": 2 } }], ["signature", { "1": { "4": 1 } }], ["significant", { "1": { "0": 1 } }], ["switch", { "1": { "6": 1, "7": 1, "8": 2, "9": 1, "10": 1 } }], ["svelte", { "1": { "6": 1 } }], ["scope", { "1": { "12": 1 } }], ["scoping", { "1": { "12": 1 } }], ["scroll", { "1": { "7": 1, "8": 1 } }], ["scenarios", { "1": { "5": 1 } }], ["scattered", { "1": { "0": 1 } }], ["sse", { "1": { "5": 1, "6": 2, "10": 4, "17": 2, "18": 1 } }], ["safe", { "1": { "11": 1, "19": 1 } }], ["safely", { "1": { "9": 1 } }], ["save", { "1": { "9": 1, "12": 1, "15": 4 } }], ["sandbox", { "1": { "4": 1 } }], ["same", { "1": { "0": 1 } }], ["s", { "1": { "1": 1, "3": 2, "7": 1, "8": 1, "9": 1, "10": 1, "11": 1, "12": 2, "13": 1, "14": 2, "15": 1, "16": 1, "18": 2 } }], ["split", { "1": { "10": 2 } }], ["spin", { "1": { "8": 1 } }], ["span>", { "1": { "7": 1, "8": 6, "9": 6 } }], ["space", { "1": { "1": 1, "7": 1, "9": 1 } }], ["specified", { "1": { "7": 1 } }], ["specifies", { "1": { "5": 1 } }], ["specific", { "1": { "2": 1, "4": 1, "5": 1, "6": 1, "13": 1, "14": 2, "15": 1, "16": 1 } }], ["specifying", { "1": { "3": 1 } }], ["specify", { "1": { "0": 1, "11": 1, "16": 1 } }], ["sdk`", { "1": { "2": 1, "6": 2, "17": 2 } }], ["sdk", { "1": { "0": 5, "1": 7, "2": 7, "3": 4, "4": 6, "5": 5, "6": 9, "7": 1, "8": 1, "10": 3, "12": 1, "13": 3, "17": 2, "18": 4, "19": 1 }, "2": { "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1, "8": 1, "9": 1, "10": 1 } }], ["sdks", { "1": { "0": 1, "1": 1, "17": 3 } }], ["survive", { "1": { "12": 1 } }], ["suitable", { "1": { "10": 1 } }], ["summarizing", { "1": { "15": 1 } }], ["summarize", { "1": { "13": 1, "15": 2 } }], ["summarization", { "1": { "8": 1, "15": 2 } }], ["summary>", { "1": { "7": 1 } }], ["summary", { "1": { "4": 8, "5": 2, "7": 3, "8": 1, "9": 1, "11": 4, "12": 14, "13": 1, "14": 7, "15": 30, "16": 5, "18": 1 } }], ["successfully", { "1": { "19": 2 } }], ["success", { "1": { "5": 1, "10": 1, "17": 3 } }], ["subscribe", { "1": { "6": 3 } }], ["subscription", { "1": { "4": 1, "6": 1, "13": 1, "14": 2 } }], ["submits", { "1": { "13": 1 } }], ["submit", { "1": { "1": 1, "13": 2 } }], ["submissions", { "1": { "0": 1 } }], ["supported", { "1": { "5": 1, "12": 2, "14": 1 } }], ["support", { "1": { "0": 1, "1": 2, "3": 2, "4": 2, "9": 1, "10": 1, "11": 3, "12": 6, "13": 3, "14": 11, "15": 3, "16": 4, "19": 13 } }], ["step", { "1": { "15": 8, "16": 1 } }], ["steps", { "1": { "0": 1, "2": 1, "6": 1, "11": 1, "16": 1 } }], ["stock", { "1": { "14": 1 } }], ["stop", { "1": { "5": 2, "6": 6, "8": 9, "10": 5, "17": 1, "18": 1 } }], ["stores", { "1": { "12": 2 } }], ["stored", { "1": { "4": 2, "12": 1, "14": 2, "15": 1 } }], ["store", { "1": { "0": 1, "3": 1, "14": 2, "15": 3, "18": 1 } }], ["structure", { "1": { "7": 1, "9": 1, "11": 2, "13": 1, "15": 1 } }], ["structured", { "1": { "3": 1, "7": 1 } }], ["stringify", { "1": { "1": 2, "6": 3, "7": 2, "8": 2, "13": 1 } }], ["string", { "1": { "1": 2, "2": 14, "3": 2, "4": 7, "6": 6, "7": 17, "8": 1, "9": 4, "10": 8, "11": 6, "12": 8, "13": 14, "14": 10, "16": 9, "18": 2, "19": 8 } }], ["stream`", { "1": { "18": 1 } }], ["streamevent", { "1": { "5": 1 } }], ["streams", { "1": { "1": 1, "5": 1, "7": 1, "8": 1, "14": 1, "15": 1, "16": 1 } }], ["stream", { "1": { "0": 2, "1": 4, "2": 7, "3": 5, "4": 3, "5": 12, "6": 2, "7": 1, "8": 3, "10": 11, "13": 2, "15": 4, "17": 1, "18": 3 } }], ["streaming", { "0": { "5": 1, "8": 1 }, "1": { "0": 1, "1": 4, "2": 6, "5": 5, "6": 8, "7": 4, "8": 17, "10": 2, "15": 1, "17": 2, "18": 2 } }], ["standard", { "1": { "10": 1, "17": 1 } }], ["stable", { "1": { "1": 1, "6": 1 } }], ["states", { "1": { "8": 2 } }], ["state`", { "1": { "3": 2 } }], ["state", { "1": { "2": 3, "3": 10, "4": 1, "6": 5, "8": 2, "12": 3, "17": 1, "18": 1 } }], ["stateful", { "1": { "0": 2, "3": 1 } }], ["statusindicator", { "1": { "8": 1 } }], ["statusbadge", { "1": { "8": 1 } }], ["status=", { "1": { "8": 1 } }], ["status", { "1": { "1": 4, "3": 1, "4": 1, "6": 8, "7": 9, "8": 24, "9": 5, "10": 1, "17": 1, "18": 4 } }], ["startswith", { "1": { "10": 2 } }], ["start`", { "1": { "10": 1, "18": 4 } }], ["startevent", { "1": { "5": 1 } }], ["started", { "1": { "0": 1, "5": 5, "18": 4 }, "2": { "0": 1, "1": 1 } }], ["start", { "0": { "1": 1 }, "1": { "0": 1, "1": 2, "4": 1, "5": 5, "10": 2, "15": 5, "16": 2, "17": 3, "18": 4 } }], ["sess", { "1": { "17": 1 } }], ["sessionattachoptions", { "1": { "2": 1 } }], ["sessionid=$", { "1": { "6": 1, "10": 2 } }], ["sessionid=", { "1": { "1": 1 } }], ["sessionid", { "1": { "1": 13, "2": 7, "3": 13, "4": 2, "6": 8, "7": 9, "8": 4, "10": 15, "12": 1, "13": 4, "14": 1, "17": 1, "18": 5 } }], ["sessions`", { "1": { "17": 1 } }], ["sessionstate", { "1": { "2": 1 } }], ["sessions", { "0": { "3": 1, "18": 1 }, "1": { "0": 2, "1": 1, "2": 4, "3": 5, "4": 1, "17": 4, "18": 8 } }], ["session", { "1": { "0": 2, "1": 7, "2": 16, "3": 23, "4": 5, "5": 1, "6": 1, "7": 4, "10": 4, "11": 1, "12": 5, "13": 2, "14": 1, "17": 4, "18": 6 } }], ["section", { "1": { "16": 1 } }], ["sequence", { "1": { "15": 1 } }], ["sequencediagram", { "1": { "0": 1, "4": 1 } }], ["separate", { "1": { "8": 1, "15": 2 } }], ["separately", { "1": { "8": 1 } }], ["serializing", { "1": { "9": 1 } }], ["serialized", { "1": { "12": 2, "14": 2 } }], ["serialize", { "1": { "7": 1, "9": 2, "12": 2, "13": 1, "15": 6 } }], ["serializable", { "1": { "4": 1 } }], ["servers", { "1": { "0": 1 } }], ["server", { "1": { "0": 4, "1": 7, "2": 8, "3": 2, "4": 4, "5": 1, "6": 1, "7": 1, "10": 14, "13": 1, "17": 4, "18": 2, "19": 1 }, "2": { "2": 1, "3": 1, "4": 1, "5": 1 } }], ["service", { "1": { "0": 1 } }], ["sentiment", { "1": { "13": 1 } }], ["sent", { "1": { "4": 2, "5": 1, "9": 1, "17": 1, "18": 1 } }], ["sensitive", { "1": { "4": 1 } }], ["sends", { "1": { "10": 2, "13": 3 } }], ["sending", { "1": { "7": 1 } }], ["sendmessage", { "1": { "6": 1 } }], ["send", { "1": { "1": 3, "6": 10, "7": 2, "8": 1, "10": 4, "13": 5, "18": 1 } }], ["sees", { "1": { "5": 1, "15": 2 } }], ["see", { "1": { "3": 1, "6": 1, "10": 1, "14": 1 } }], ["sets", { "1": { "16": 1 } }], ["setsessionid", { "1": { "1": 2 } }], ["setconnectionstatus", { "1": { "10": 1 } }], ["setonlineusers", { "1": { "10": 1 } }], ["setagenttyping", { "1": { "10": 1 } }], ["settings", { "1": { "11": 3, "17": 1, "19": 4 } }], ["setting", { "1": { "9": 1 } }], ["settimeout", { "1": { "4": 1, "10": 1 } }], ["setexpanded", { "1": { "8": 2 } }], ["set", { "1": { "6": 1, "7": 1, "9": 1, "12": 2, "15": 4 } }], ["setinputvalue", { "1": { "1": 3 } }], ["setup", { "1": { "1": 2, "10": 1 } }], ["searchparams", { "1": { "10": 1 } }], ["search", { "1": { "0": 1, "4": 4, "13": 2, "14": 3, "16": 4 } }], ["self", { "1": { "0": 1 } }], ["some", { "1": { "14": 1 } }], ["something", { "1": { "5": 1 } }], ["sonnet", { "1": { "11": 1, "14": 1, "15": 2, "16": 7, "19": 2 } }], ["sound", { "1": { "7": 1, "8": 1 } }], ["source", { "1": { "4": 1 } }], ["sockserver", { "1": { "10": 3 } }], ["sock", { "1": { "10": 4 } }], ["socketlike", { "1": { "10": 1 } }], ["socket", { "0": { "10": 1 }, "1": { "6": 5, "10": 11 } }], ["sockjs", { "1": { "6": 4, "10": 11 } }], ["solves", { "1": { "0": 1 } }], ["so", { "1": { "0": 1 } }], ["ll", { "1": { "18": 1 } }], ["llm", { "1": { "0": 4, "4": 8, "12": 1, "14": 5, "15": 4, "16": 8 } }], ["later", { "1": { "14": 1 } }], ["layer", { "1": { "0": 1 } }], ["limits", { "1": { "17": 2 } }], ["limited", { "1": { "17": 1 } }], ["limit", { "1": { "15": 1, "16": 2, "17": 2 } }], ["literal", { "1": { "14": 1, "15": 1 } }], ["list", { "1": { "10": 1, "15": 1, "16": 1, "17": 1, "19": 1 } }], ["line", { "1": { "10": 8 } }], ["like", { "1": { "5": 1, "7": 1, "8": 1, "9": 1, "10": 1, "12": 1, "13": 1, "14": 1 } }], ["lifecycle", { "1": { "3": 1, "5": 3 } }], ["lib", { "1": { "1": 3 } }], ["lg", { "1": { "1": 3, "7": 1, "8": 2 } }], ["level", { "1": { "13": 1, "14": 1, "15": 1, "16": 2 } }], ["left", { "1": { "7": 1 } }], ["let", { "1": { "5": 1, "10": 1, "14": 2 } }], ["lets", { "1": { "0": 1 } }], ["leaves", { "1": { "4": 1 } }], ["learn", { "1": { "0": 1, "1": 1 } }], ["length", { "1": { "3": 2, "4": 2, "5": 1, "8": 1 } }], ["low", { "1": { "14": 2, "15": 2, "16": 3 } }], ["lowercase", { "1": { "11": 1 } }], ["load", { "1": { "3": 2 } }], ["log", { "1": { "3": 4, "4": 3, "6": 2, "7": 2, "8": 1, "10": 3, "12": 1, "19": 2 } }], ["logic", { "1": { "0": 1, "4": 1, "10": 1, "11": 1 } }], ["loop", { "1": { "2": 1 } }], ["looking", { "1": { "5": 1, "11": 1, "14": 1 } }], ["look", { "1": { "1": 1, "14": 2, "16": 1 } }], ["localhost", { "1": { "10": 1 } }], ["local`", { "1": { "1": 1 } }], ["locally", { "1": { "0": 1 } }], ["tc", { "1": { "18": 1 } }], ["t1", { "1": { "18": 10 } }], ["tkt", { "1": { "14": 1 } }], ["tasks", { "1": { "16": 1 } }], ["talk", { "1": { "9": 1, "11": 1, "13": 1 } }], ["target", { "1": { "1": 1 } }], ["typing", { "1": { "10": 2 } }], ["typically", { "1": { "9": 1 } }], ["typed", { "1": { "6": 1, "7": 1, "18": 1 } }], ["types", { "1": { "5": 2, "9": 1, "10": 1, "11": 1, "13": 1, "15": 1, "18": 1 } }], ["typeof", { "1": { "4": 1 } }], ["type=", { "1": { "1": 2 } }], ["type", { "1": { "1": 6, "2": 1, "3": 1, "4": 4, "5": 28, "6": 6, "7": 11, "8": 4, "9": 6, "10": 13, "11": 8, "12": 19, "13": 24, "14": 13, "15": 24, "16": 12, "17": 9, "18": 23, "19": 6 } }], ["two", { "1": { "6": 1 } }], ["td", { "1": { "3": 1 } }], ["t", { "1": { "1": 1, "4": 1, "9": 1, "10": 2, "12": 1, "14": 1, "15": 5, "16": 1 } }], ["tier", { "1": { "13": 2, "17": 2 } }], ["tier2", { "1": { "13": 1 } }], ["title", { "1": { "5": 1 } }], ["ticketservice", { "1": { "4": 1, "14": 1 } }], ["ticketid", { "1": { "1": 1, "4": 1, "14": 3 } }], ["ticket", { "1": { "1": 3, "4": 6, "9": 1, "11": 1, "12": 5, "14": 23, "15": 14, "16": 4 } }], ["timeout", { "1": { "4": 2, "12": 1 } }], ["timeouts", { "1": { "4": 1 } }], ["time", { "1": { "0": 1, "2": 1, "5": 1, "6": 1, "8": 2, "10": 2 } }], ["tsx", { "1": { "1": 2 } }], ["ts", { "1": { "1": 3 } }], ["temperature", { "1": { "16": 3 } }], ["templates", { "1": { "11": 1 } }], ["temporary", { "1": { "11": 1 } }], ["textdecoder", { "1": { "10": 2 } }], ["textdeltaevent", { "1": { "5": 1 } }], ["textpart", { "1": { "7": 1, "8": 1 } }], ["textendevent", { "1": { "5": 1 } }], ["textstartevent", { "1": { "5": 1 } }], ["text", { "1": { "0": 1, "1": 6, "2": 1, "3": 1, "4": 1, "5": 16, "6": 9, "7": 21, "8": 16, "9": 10, "10": 6, "12": 3, "13": 2, "15": 6, "17": 4, "18": 18 } }], ["teams", { "1": { "0": 2 } }], ["true`", { "1": { "14": 1, "15": 1 } }], ["true", { "1": { "10": 2, "11": 2, "12": 5, "13": 4, "14": 6, "15": 3, "16": 3, "18": 1 } }], ["try", { "1": { "3": 1, "4": 1 } }], ["trim", { "1": { "1": 2 } }], ["trigger`", { "1": { "17": 1 } }], ["trigger1", { "1": { "13": 1 } }], ["triggered", { "1": { "13": 2 } }], ["triggering", { "1": { "2": 2, "3": 1, "6": 1 } }], ["triggerrequest", { "1": { "1": 1, "6": 3, "7": 2, "8": 1, "13": 1 } }], ["triggername", { "1": { "1": 4, "2": 1, "4": 1, "6": 8, "7": 4, "8": 2, "10": 3, "13": 2, "17": 1, "18": 3 } }], ["trigger", { "1": { "0": 1, "1": 6, "2": 3, "3": 5, "4": 2, "5": 2, "6": 5, "7": 4, "8": 1, "10": 7, "13": 16, "15": 2, "17": 3, "18": 6 } }], ["triggers", { "0": { "13": 1 }, "1": { "0": 3, "1": 1, "7": 1, "11": 6, "12": 4, "13": 17, "16": 1 } }], ["traditional", { "1": { "4": 1 } }], ["transport", { "0": { "10": 1 }, "1": { "1": 4, "6": 24, "7": 5, "8": 5, "10": 11, "13": 2 } }], ["tracks", { "1": { "7": 1 } }], ["tracking", { "1": { "6": 1 } }], ["track", { "1": { "0": 1, "3": 1, "5": 1, "11": 1 } }], ["thought", { "1": { "8": 1 } }], ["thing", { "1": { "13": 2 } }], ["thinking", { "1": { "6": 1, "7": 1, "8": 1, "11": 1, "15": 2, "16": 6, "19": 1 } }], ["this", { "1": { "1": 1, "5": 2, "6": 1, "9": 1, "10": 1, "11": 1, "12": 2, "13": 1, "14": 2, "15": 2, "18": 1, "19": 1 } }], ["threw", { "1": { "5": 1 } }], ["thread`", { "1": { "9": 1 } }], ["threads", { "1": { "7": 4, "8": 2, "9": 3, "15": 1, "16": 1 } }], ["thread", { "1": { "5": 1, "7": 8, "8": 3, "9": 6, "12": 1, "13": 1, "15": 22, "16": 4 } }], ["throw", { "1": { "3": 1, "4": 3 } }], ["through", { "1": { "0": 1, "1": 1, "7": 1, "8": 2, "13": 1 } }], ["then", { "1": { "10": 1 } }], ["them", { "1": { "7": 1, "9": 1, "10": 1, "14": 2 } }], ["they", { "1": { "3": 2, "4": 1, "9": 1, "11": 1, "12": 1, "14": 1, "15": 1, "18": 1 } }], ["these", { "1": { "0": 1, "1": 1, "14": 1 } }], ["their", { "1": { "0": 1, "3": 1, "7": 1, "9": 1, "11": 2, "14": 4 } }], ["the", { "1": { "0": 6, "1": 11, "2": 5, "3": 10, "4": 6, "5": 5, "6": 4, "7": 13, "8": 7, "9": 7, "10": 9, "11": 3, "12": 10, "13": 5, "14": 16, "15": 4, "16": 6, "17": 6, "18": 12, "19": 2 } }], ["that", { "1": { "0": 7, "1": 4, "3": 1, "4": 2, "7": 1, "8": 1, "10": 1, "12": 2, "15": 3, "17": 1, "18": 2, "19": 1 } }], ["token", { "1": { "16": 1, "17": 1 } }], ["tokens", { "1": { "5": 1 } }], ["tostring", { "1": { "10": 1 } }], ["too", { "1": { "8": 1, "13": 1, "17": 1 } }], ["toolresults", { "1": { "18": 2 } }], ["toolrequestevent", { "1": { "5": 1 } }], ["toolcallpart", { "1": { "8": 1 } }], ["toolcallid", { "1": { "5": 7, "7": 1, "10": 1, "18": 1 } }], ["tooloutputerrorevent", { "1": { "5": 1 } }], ["tooloutputavailableevent", { "1": { "5": 1 } }], ["toolinputavailableevent", { "1": { "5": 1 } }], ["toolinputendevent", { "1": { "5": 1 } }], ["toolinputdeltaevent", { "1": { "5": 1 } }], ["toolinputstartevent", { "1": { "5": 1 } }], ["tooling", { "1": { "0": 1 } }], ["toolname", { "1": { "5": 2, "7": 2, "8": 1, "10": 1, "18": 1 } }], ["toolhandler>", { "1": { "4": 1 } }], ["toolhandler", { "1": { "4": 1 } }], ["toolhandlers", { "1": { "4": 3 } }], ["tool", { "1": { "0": 4, "1": 2, "2": 3, "3": 2, "4": 15, "5": 22, "6": 2, "7": 3, "8": 2, "9": 2, "10": 3, "11": 1, "12": 2, "14": 21, "15": 8, "16": 5, "17": 1, "18": 10 } }], ["tools`", { "1": { "14": 1 } }], ["tools", { "0": { "4": 1, "14": 1 }, "1": { "0": 8, "1": 1, "2": 4, "3": 2, "4": 11, "10": 2, "11": 8, "14": 15, "15": 2, "16": 9, "18": 2 } }], ["toast", { "1": { "7": 1, "8": 1 } }], ["toisostring", { "1": { "4": 1, "14": 1 } }], ["to", { "1": { "0": 9, "1": 4, "2": 1, "3": 10, "4": 4, "5": 5, "6": 3, "7": 9, "8": 5, "9": 5, "10": 5, "11": 2, "12": 8, "13": 5, "14": 9, "15": 17, "16": 7, "17": 1, "18": 4, "19": 1 } }], ["our", { "1": { "17": 1 } }], ["out", { "1": { "9": 1 } }], ["outputtochat", { "1": { "18": 1 } }], ["outputs", { "1": { "12": 1 } }], ["output", { "1": { "4": 1, "5": 7, "9": 1, "12": 5, "14": 3, "15": 9, "18": 2 } }], ["o3", { "1": { "16": 2 } }], ["o1", { "1": { "16": 2 } }], ["older", { "1": { "10": 1 } }], ["offer", { "1": { "16": 1 } }], ["of", { "1": { "10": 3, "12": 1, "13": 1, "16": 1, "17": 1, "18": 1 } }], ["own", { "1": { "8": 2 } }], ["occur", { "1": { "9": 1 } }], ["occurred", { "1": { "5": 1, "18": 1 } }], ["octavuschatoptions", { "1": { "6": 3 } }], ["octavuschat", { "1": { "6": 4 } }], ["octavusclientconfig", { "1": { "2": 2 } }], ["octavusclient", { "1": { "1": 2, "2": 4, "3": 2, "10": 4 } }], ["octavus", { "1": { "0": 7, "1": 22, "2": 7, "3": 4, "4": 4, "5": 3, "6": 11, "7": 4, "8": 4, "9": 2, "10": 22, "13": 1, "17": 7, "18": 3, "19": 5 } }], ["object", { "1": { "4": 1, "14": 1, "18": 2 } }], ["objects", { "1": { "3": 1, "10": 1, "12": 1, "14": 1, "18": 1 } }], ["observability", { "1": { "0": 1 } }], ["openai", { "1": { "16": 6 } }], ["operation=", { "1": { "9": 1 } }], ["operationcard", { "1": { "9": 2 } }], ["operationtype", { "1": { "7": 1, "9": 1 } }], ["operationid", { "1": { "7": 1, "9": 2 } }], ["operations", { "0": { "9": 1 }, "1": { "6": 2, "7": 1, "9": 14, "18": 1 } }], ["operation", { "1": { "6": 1, "7": 2, "9": 15 } }], ["opus", { "1": { "16": 2 } }], ["op", { "1": { "9": 4 } }], ["option", { "1": { "3": 2, "18": 1 } }], ["optionally", { "1": { "4": 1, "14": 1 } }], ["optional", { "1": { "3": 2, "6": 2, "10": 1, "11": 1, "12": 5, "13": 8, "14": 5, "15": 1, "16": 1, "19": 1 } }], ["options", { "1": { "2": 1, "6": 4, "15": 1, "16": 1 } }], ["opacity", { "1": { "1": 1 } }], ["ordering", { "1": { "7": 1, "18": 1 } }], ["ordered", { "1": { "6": 1, "7": 1 } }], ["orderservice", { "1": { "4": 1 } }], ["order", { "1": { "4": 1 } }], ["or", { "1": { "0": 1, "1": 1, "3": 2, "5": 1, "6": 3, "9": 2, "10": 4, "11": 1, "12": 1, "14": 1, "16": 1, "17": 1, "18": 1, "19": 3 } }], ["orchestration", { "1": { "0": 2 } }], ["override", { "1": { "16": 1 } }], ["overloaded", { "1": { "13": 1 } }], ["overflow", { "1": { "1": 1 } }], ["overview", { "0": { "2": 1, "6": 1, "11": 1, "17": 1 }, "1": { "0": 4, "1": 3, "2": 1, "6": 1, "11": 1, "17": 1 } }], ["over", { "1": { "0": 3, "4": 3 } }], ["overhead", { "1": { "0": 1 } }], ["otherparts", { "1": { "8": 3 } }], ["other", { "1": { "0": 2, "5": 2, "6": 2 } }], ["onmessage", { "1": { "10": 1 } }], ["onopen", { "1": { "6": 1, "10": 3 } }], ["onresourceupdate", { "1": { "6": 1, "7": 1, "12": 1 } }], ["onfinish", { "1": { "6": 1, "7": 1, "8": 1 } }], ["only", { "1": { "5": 1, "6": 1, "9": 1, "10": 1, "12": 2, "14": 1, "19": 1 } }], ["onclose", { "1": { "10": 2 } }], ["onclick=", { "1": { "8": 3 } }], ["once", { "1": { "3": 1 } }], ["onchange=", { "1": { "1": 1 } }], ["onsubmit=", { "1": { "1": 1 } }], ["ones", { "1": { "9": 1 } }], ["onerror", { "1": { "6": 2, "7": 1, "8": 1, "10": 3 } }], ["one", { "1": { "1": 1, "3": 1, "6": 1, "13": 1 } }], ["on", { "1": { "0": 4, "1": 1, "2": 1, "3": 4, "4": 2, "6": 1, "7": 1, "10": 5, "14": 1, "18": 1 } }], ["avoid", { "1": { "13": 2, "14": 1 } }], ["available`", { "1": { "18": 2 } }], ["available", { "1": { "4": 2, "5": 4, "14": 3, "16": 1 } }], ["at", { "1": { "11": 1, "12": 1, "13": 1, "14": 1 } }], ["attempts", { "1": { "10": 1 } }], ["attempt", { "1": { "10": 1 } }], ["attached", { "1": { "3": 1 } }], ["attaching", { "1": { "3": 1, "4": 1 } }], ["attach", { "1": { "1": 2, "2": 3, "3": 4, "4": 2, "10": 2, "14": 1 } }], ["amber", { "1": { "7": 3, "8": 3, "9": 1 } }], ["abc123", { "1": { "17": 1 } }], ["abbreviated", { "1": { "13": 1 } }], ["abstraction", { "1": { "6": 1 } }], ["aborted", { "1": { "8": 1 } }], ["abort", { "1": { "4": 1 } }], ["abortcontroller", { "1": { "4": 1 } }], ["about", { "1": { "0": 1, "1": 1, "5": 1, "14": 1, "16": 1 } }], ["agnostic", { "1": { "6": 3 } }], ["agentic", { "1": { "11": 1, "14": 3, "16": 4 } }], ["agentid", { "1": { "2": 3, "3": 5, "18": 3, "19": 7 } }], ["agents`", { "1": { "17": 2 } }], ["agentsession", { "1": { "2": 3 } }], ["agentsessionsapi", { "1": { "2": 3 } }], ["agentsessions", { "1": { "1": 2, "2": 4, "3": 9, "4": 2, "7": 1, "10": 2, "12": 1, "14": 1 } }], ["agentsapi", { "1": { "2": 1 } }], ["agentslug", { "1": { "1": 3 } }], ["agents", { "0": { "19": 1 }, "1": { "0": 8, "1": 1, "2": 2, "4": 1, "11": 3, "14": 1, "17": 5, "18": 3, "19": 16 } }], ["agent", { "0": { "16": 1 }, "1": { "0": 14, "1": 7, "2": 3, "3": 3, "6": 3, "7": 2, "8": 1, "9": 2, "11": 18, "12": 5, "13": 1, "14": 2, "16": 11, "17": 9, "18": 13, "19": 24 } }], ["after", { "1": { "3": 1 } }], ["a1", { "1": { "3": 1 } }], ["alongside", { "1": { "9": 1, "10": 1 } }], ["always", { "1": { "5": 1, "14": 1 } }], ["align", { "1": { "5": 1 } }], ["alive", { "1": { "1": 1, "5": 1 } }], ["already", { "1": { "3": 1 } }], ["allow", { "1": { "11": 1, "14": 1, "16": 1 } }], ["all", { "1": { "2": 1, "3": 1, "5": 1, "9": 1, "17": 3, "19": 2 } }], ["advanced", { "1": { "1": 1 } }], ["adds", { "1": { "7": 1 } }], ["adding", { "1": { "6": 1 } }], ["add", { "1": { "1": 2, "6": 1, "7": 1, "11": 2, "13": 2, "14": 1, "15": 17, "16": 2, "18": 2 } }], ["authorization", { "1": { "4": 1, "17": 2, "18": 3, "19": 5 } }], ["authtoken", { "1": { "4": 2 } }], ["auth", { "1": { "4": 2 } }], ["authentication", { "1": { "0": 1, "4": 2, "17": 3 } }], ["automatically", { "1": { "7": 1, "10": 2, "14": 2, "17": 1, "18": 1 } }], ["auto", { "1": { "1": 1 } }], ["await", { "1": { "1": 7, "2": 3, "3": 5, "4": 10, "6": 4, "7": 2, "10": 2, "12": 1, "13": 3, "14": 2, "19": 1 } }], ["asks", { "1": { "14": 1 } }], ["asked", { "1": { "5": 1 } }], ["assistant", { "1": { "7": 2, "15": 1, "18": 1, "19": 1 } }], ["async", { "1": { "1": 6, "2": 4, "4": 13, "6": 1, "7": 1, "10": 2, "14": 2 } }], ["as", { "1": { "0": 3, "1": 2, "2": 1, "4": 13, "5": 1, "8": 1, "9": 2, "10": 6, "12": 3, "14": 4 } }], ["arguments", { "1": { "4": 4, "5": 1, "18": 2 } }], ["args", { "1": { "1": 3, "2": 2, "4": 23, "7": 1, "14": 6 } }], ["array", { "1": { "3": 1, "4": 1, "8": 1, "9": 1, "18": 1, "19": 1 } }], ["architecture", { "1": { "0": 1 } }], ["are", { "1": { "0": 2, "4": 2, "5": 3, "6": 1, "9": 3, "10": 2, "11": 3, "12": 9, "14": 5, "16": 1, "17": 2, "19": 5 } }], ["apps", { "1": { "10": 4 } }], ["appear", { "1": { "5": 1, "9": 2 } }], ["applicable", { "1": { "5": 1 } }], ["applications", { "1": { "6": 3 } }], ["application", { "1": { "1": 4, "2": 1, "6": 3, "7": 2, "8": 1, "12": 1, "13": 1, "17": 1, "18": 2, "19": 2 } }], ["appropriate", { "1": { "8": 1 } }], ["appropriately", { "1": { "4": 1 } }], ["approach", { "1": { "0": 1 } }], ["app", { "1": { "0": 6, "1": 3, "3": 1 } }], ["apierror", { "1": { "3": 2 } }], ["apis", { "1": { "2": 1 } }], ["apikey", { "1": { "1": 1, "2": 2, "3": 1, "10": 2 } }], ["api", { "1": { "0": 9, "1": 11, "2": 4, "3": 3, "4": 2, "6": 4, "7": 2, "8": 1, "10": 4, "13": 2, "17": 19, "18": 12, "19": 17 }, "2": { "17": 1, "18": 1, "19": 1 } }], ["activities", { "1": { "9": 1 } }], ["actions", { "1": { "0": 1, "3": 3, "6": 2 } }], ["action", { "1": { "0": 2, "1": 1, "2": 1, "5": 1, "10": 1, "13": 7 } }], ["acme", { "1": { "1": 1, "2": 1, "3": 1, "12": 1, "18": 3 } }], ["accessing", { "1": { "4": 1 } }], ["access", { "1": { "2": 1, "4": 2, "7": 1, "8": 1, "17": 1 } }], ["accepts", { "1": { "0": 1, "14": 1 } }], ["account", { "1": { "1": 2, "2": 1, "4": 5, "5": 3, "11": 3, "14": 14, "16": 5, "18": 1 } }], ["across", { "1": { "0": 2, "12": 4 } }], ["a", { "1": { "0": 7, "1": 8, "2": 6, "3": 8, "4": 5, "5": 1, "6": 5, "7": 2, "8": 1, "9": 3, "10": 1, "11": 4, "12": 5, "13": 6, "14": 5, "15": 9, "16": 3, "17": 3, "18": 5, "19": 6 } }], ["ai", { "1": { "0": 3, "1": 1, "2": 1, "4": 2, "5": 2, "11": 1, "17": 3, "18": 3, "19": 5 } }], ["another", { "1": { "15": 2 } }], ["analysis", { "1": { "13": 2, "16": 1 } }], ["analyze", { "1": { "5": 1, "13": 2 } }], ["anthropic", { "1": { "11": 1, "14": 1, "15": 2, "16": 8, "19": 2 } }], ["animate", { "1": { "1": 1, "7": 1, "8": 2, "9": 1 } }], ["any", { "1": { "1": 1, "4": 2, "6": 1, "8": 2, "10": 1 } }], ["and", { "1": { "0": 10, "1": 5, "2": 4, "3": 4, "4": 4, "5": 2, "6": 7, "7": 4, "8": 2, "9": 2, "10": 2, "11": 3, "12": 2, "13": 2, "14": 4, "15": 1, "16": 4, "17": 2, "18": 5, "19": 1 } }], ["an", { "1": { "0": 5, "1": 4, "2": 1, "3": 1, "5": 1, "6": 1, "10": 1, "11": 2, "13": 2, "14": 1, "19": 2 } }], ["immutable", { "1": { "12": 1 } }], ["immediately", { "1": { "7": 1 } }], ["implicit", { "1": { "13": 1 } }], ["implemented", { "1": { "14": 2 } }], ["implement", { "1": { "10": 1 } }], ["implementation", { "1": { "4": 2, "6": 1, "10": 1, "11": 1 } }], ["implementing", { "1": { "2": 1, "14": 1 } }], ["import", { "1": { "1": 8, "2": 1, "3": 2, "4": 1, "6": 5, "7": 6, "8": 5, "9": 2, "10": 10, "13": 2 } }], ["i", { "1": { "1": 2, "3": 1, "4": 1, "5": 1, "6": 2, "7": 2, "8": 4, "9": 2, "18": 5 } }], ["if", { "1": { "1": 4, "3": 2, "4": 3, "6": 1, "7": 4, "8": 1, "9": 1, "10": 9, "11": 1, "12": 4, "13": 1, "14": 2, "16": 2, "19": 1 } }], ["id`", { "1": { "16": 1, "17": 3 } }], ["identity", { "1": { "14": 1 } }], ["identifier", { "1": { "11": 1, "16": 1, "19": 1 } }], ["identified", { "1": { "7": 1, "8": 1 } }], ["identify", { "1": { "9": 1 } }], ["idle", { "1": { "6": 2, "8": 3 } }], ["id", { "1": { "1": 5, "2": 3, "3": 4, "4": 6, "5": 11, "6": 1, "7": 2, "8": 1, "10": 1, "11": 1, "12": 3, "14": 3, "16": 2, "17": 7, "18": 16, "19": 6 } }], ["insufficient", { "1": { "17": 1 } }], ["instead", { "1": { "17": 1 } }], ["instructions", { "1": { "16": 1 } }], ["instock", { "1": { "14": 1 } }], ["instanceof", { "1": { "3": 1 } }], ["instance", { "1": { "1": 2, "6": 1 } }], ["installhandlers", { "1": { "10": 1 } }], ["install", { "1": { "1": 3, "2": 1, "6": 3 } }], ["installation", { "1": { "1": 1, "2": 1, "6": 1 } }], ["invalid", { "1": { "17": 2 } }], ["invoking", { "1": { "13": 1 } }], ["invoked", { "1": { "0": 1, "11": 2, "13": 1 } }], ["invoke", { "1": { "0": 1 } }], ["invocation", { "1": { "0": 1, "13": 1, "14": 1 } }], ["independent", { "1": { "15": 4 } }], ["indicators", { "1": { "9": 1, "10": 1 } }], ["indicator", { "1": { "1": 1, "8": 1, "10": 1 } }], ["information", { "1": { "12": 1, "14": 2, "16": 1 } }], ["infrastructure", { "1": { "0": 2, "4": 1, "10": 1 } }], ["initiated", { "1": { "18": 1 } }], ["initialmessages", { "1": { "6": 1, "7": 3 } }], ["initial", { "1": { "3": 1, "12": 2 } }], ["initializes", { "1": { "3": 1 } }], ["initialize", { "1": { "1": 1 } }], ["init", { "1": { "10": 1 } }], ["inconsistent", { "1": { "16": 1 } }], ["incremental", { "1": { "5": 2, "18": 1 } }], ["included", { "1": { "17": 1 } }], ["includes", { "1": { "3": 1, "6": 1, "18": 1 } }], ["including", { "1": { "3": 1, "6": 1, "14": 1, "18": 1, "19": 1 } }], ["inline", { "1": { "1": 1, "7": 2, "8": 1 } }], ["inputtextdelta", { "1": { "5": 1 } }], ["inputs", { "1": { "3": 1, "11": 3, "12": 3, "13": 2, "15": 1 } }], ["inputvalue", { "1": { "1": 4 } }], ["input", { "0": { "12": 1 }, "1": { "0": 1, "1": 8, "2": 3, "3": 1, "4": 4, "5": 10, "6": 8, "7": 5, "8": 2, "10": 5, "11": 5, "12": 13, "13": 19, "14": 4, "15": 12, "16": 5, "17": 1, "18": 13, "19": 3 } }], ["in", { "1": { "0": 6, "1": 5, "2": 1, "4": 8, "5": 1, "6": 2, "8": 1, "9": 4, "10": 1, "11": 2, "12": 5, "14": 12, "15": 8, "16": 2, "17": 3, "19": 1 } }], ["into", { "1": { "0": 1, "1": 1, "2": 2 } }], ["intended", { "1": { "3": 1 } }], ["integrating", { "1": { "1": 1, "2": 1 } }], ["integrations", { "1": { "6": 1 } }], ["integration", { "1": { "0": 3, "1": 1, "6": 2 } }], ["interpolate", { "1": { "15": 1, "16": 1 } }], ["interpolated", { "1": { "12": 1 } }], ["interactive", { "1": { "11": 1, "19": 5 } }], ["interacting", { "1": { "2": 1 } }], ["interactions", { "1": { "0": 1, "3": 1, "13": 1 } }], ["internal", { "1": { "0": 1, "2": 3, "3": 4, "6": 1, "7": 1, "9": 1, "12": 2, "15": 2, "16": 1, "17": 1, "18": 1 } }], ["interfaces", { "1": { "0": 1 } }], ["interface", { "1": { "0": 1, "1": 1, "2": 3, "3": 2, "6": 3, "7": 6, "9": 1 } }], ["introduction", { "0": { "0": 1 }, "1": { "0": 1 } }], ["items", { "1": { "8": 1, "9": 3, "14": 1 } }], ["iterate", { "1": { "0": 1 } }], ["its", { "1": { "1": 1, "8": 2, "15": 1 } }], ["it", { "1": { "0": 1, "2": 1, "3": 1, "5": 1, "6": 1, "11": 1, "12": 2, "14": 2, "15": 1, "16": 1, "18": 1 } }], ["issue", { "1": { "13": 1 } }], ["isstreaming", { "1": { "1": 4 } }], ["istyping", { "1": { "10": 1 } }], ["isn", { "1": { "10": 1 } }], ["isotherthread", { "1": { "7": 4, "8": 3 } }], ["isuser", { "1": { "1": 3, "7": 2 } }], ["is", { "1": { "0": 5, "4": 2, "5": 1, "7": 3, "8": 5, "9": 2, "10": 1, "11": 2, "12": 3, "13": 5, "14": 3, "15": 1, "17": 1, "19": 1 } }]], serializationVersion: 2 };
|
|
5
|
+
var search_index_default = { documentCount: 25, nextId: 25, documentIds: { "0": 0, "1": 1, "2": 2, "3": 3, "4": 4, "5": 5, "6": 6, "7": 7, "8": 8, "9": 9, "10": 10, "11": 11, "12": 12, "13": 13, "14": 14, "15": 15, "16": 16, "17": 17, "18": 18, "19": 19, "20": 20, "21": 21, "22": 22, "23": 23, "24": 24 }, fieldIds: { title: 0, content: 1, section: 2 }, fieldLength: { "0": [1, 260, 2], "1": [2, 368, 2], "2": [1, 209, 2], "3": [1, 265, 2], "4": [1, 304, 2], "5": [1, 284, 2], "6": [1, 353, 2], "7": [1, 285, 2], "8": [1, 280, 2], "9": [1, 219, 2], "10": [2, 450, 2], "11": [2, 325, 2], "12": [1, 245, 1], "13": [2, 260, 1], "14": [1, 261, 1], "15": [1, 333, 1], "16": [1, 224, 1], "17": [2, 298, 1], "18": [2, 291, 1], "19": [1, 198, 2], "20": [1, 305, 2], "21": [1, 171, 2], "22": [1, 79, 1], "23": [3, 403, 1], "24": [2, 434, 1] }, averageFieldLength: [1.36, 284.15999999999997, 1.6], storedFields: { "0": { title: "Introduction", slug: "getting-started/introduction", section: "getting-started", excerpt: "Introduction to Octavus Octavus is an agent orchestration platform that lets developers define, manage, and deploy AI agents through a unified service. It handles the orchestration layer so teams can..." }, "1": { title: "Quick Start", slug: "getting-started/quickstart", section: "getting-started", excerpt: "Quick Start This guide will walk you through integrating Octavus into your application in under 10 minutes. Prerequisites - Node.js 18+ - An Octavus account with API key - A Next.js application (or..." }, "2": { title: "Overview", slug: "server-sdk/overview", section: "server-sdk", excerpt: "Server SDK Overview The package provides a Node.js SDK for integrating Octavus agents into your backend application. It handles session management, streaming, and the tool execution continuation..." }, "3": { title: "Sessions", slug: "server-sdk/sessions", section: "server-sdk", excerpt: "Sessions Sessions represent conversations with an agent. They store conversation history, track resources and variables, and enable stateful interactions. Creating Sessions Create a session by..." }, "4": { title: "Tools", slug: "server-sdk/tools", section: "server-sdk", excerpt: "Tools Tools extend what agents can do. In Octavus, tools execute on your server, giving you full control over data access and authentication. Why Tools Run on Your Server Unlike traditional AI..." }, "5": { title: "Streaming", slug: "server-sdk/streaming", section: "server-sdk", excerpt: "Streaming All Octavus responses stream in real-time using Server-Sent Events (SSE). This enables responsive UX with incremental updates. Stream Response When you trigger an action, you get an async..." }, "6": { title: "Overview", slug: "client-sdk/overview", section: "client-sdk", excerpt: "Client SDK Overview Octavus provides two packages for frontend integration: | Package | Purpose | Use When | |---------|---------|----------| | | React hooks and bindings | Building React..." }, "7": { title: "Messages", slug: "client-sdk/messages", section: "client-sdk", excerpt: "Messages Messages represent the conversation history. The Client SDK tracks messages automatically and provides structured access to their content through typed parts. Message Structure Message..." }, "8": { title: "Streaming", slug: "client-sdk/streaming", section: "client-sdk", excerpt: "Streaming The Client SDK provides real-time access to streaming content through the message array. Each part has its own status, enabling responsive UIs that update as the agent generates responses...." }, "9": { title: "Operations", slug: "client-sdk/execution-blocks", section: "client-sdk", excerpt: "Operations Operations represent internal agent activities like setting resources or serializing threads. They appear as parts in messages and help users understand what the agent is doing. ..." }, "10": { title: "Socket Transport", slug: "client-sdk/socket-transport", section: "client-sdk", excerpt: "Socket Transport The socket transport enables real-time bidirectional communication using WebSocket or SockJS. Use this when you need persistent connections, custom server events, or when HTTP/SSE..." }, "11": { title: "HTTP Transport", slug: "client-sdk/http-transport", section: "client-sdk", excerpt: "HTTP Transport The HTTP transport uses standard HTTP requests with Server-Sent Events (SSE) for streaming. This is the simplest and most compatible transport option. When to Use HTTP Transport | Use..." }, "12": { title: "Overview", slug: "protocol/overview", section: "protocol", excerpt: "Protocol Overview Agent protocols define how an AI agent behaves. They're written in YAML and specify inputs, triggers, tools, and execution handlers. Why Protocols? Protocols provide: - Declarative..." }, "13": { title: "Input & Resources", slug: "protocol/input-resources", section: "protocol", excerpt: "Input & Resources Inputs are provided when creating a session. Resources are persistent state the agent can read and write. Input Variables Define inputs that consumers must (or may) provide: Input..." }, "14": { title: "Triggers", slug: "protocol/triggers", section: "protocol", excerpt: "Triggers Triggers define how an agent can be invoked. Each trigger has a name, optional inputs, and a corresponding handler. Trigger Types User Message The most common trigger \u2014 when a user sends a..." }, "15": { title: "Tools", slug: "protocol/tools", section: "protocol", excerpt: "Tools Tools extend what agents can do. Octavus supports two types: 1. External Tools \u2014 Defined in the protocol, implemented in your backend 2. Provider Tools \u2014 Built-in tools executed server-side by..." }, "16": { title: "Handlers", slug: "protocol/handlers", section: "protocol", excerpt: "Handlers Handlers define what happens when a trigger fires. They contain execution blocks that run in sequence. Handler Structure Each block has a human-readable name (shown in debug UI) and a type..." }, "17": { title: "Agent Config", slug: "protocol/agent-config", section: "protocol", excerpt: "Agent Config The section configures the LLM model, system prompt, tools, and behavior. Basic Configuration Configuration Options | Field | Required | Description |..." }, "18": { title: "Provider Options", slug: "protocol/provider-options", section: "protocol", excerpt: "Provider Options Provider options let you enable provider-specific features like Anthropic's built-in tools and skills. These features run server-side on the provider's infrastructure. Anthropic..." }, "19": { title: "Overview", slug: "api-reference/overview", section: "api-reference", excerpt: "API Reference The Octavus API is a RESTful API that enables programmatic access to agent management and session execution. Base URL Authentication All API requests require authentication using a..." }, "20": { title: "Sessions", slug: "api-reference/sessions", section: "api-reference", excerpt: "Sessions API Sessions represent conversations with agents. They store conversation history, resources, and variables. Create Session Create a new agent session. Request Body | Field | Type |..." }, "21": { title: "Agents", slug: "api-reference/agents", section: "api-reference", excerpt: "Agents API Manage agent definitions including protocols and prompts. List Agents Get all agents in the project. Response Example Get Agent Get a single agent by ID or slug. Response Example ..." }, "22": { title: "Overview", slug: "examples/overview", section: "examples", excerpt: "Examples This section provides complete integration examples for different architectures. Each example walks through building a functional chat interface from scratch. Available Examples | Example |..." }, "23": { title: "Next.js Chat", slug: "examples/nextjs-chat", section: "examples", excerpt: "Next.js Chat Example This example builds a support chat interface using Next.js App Router with HTTP/SSE transport. This is the recommended pattern for most web applications. What You're Building A..." }, "24": { title: "Socket Chat", slug: "examples/socket-chat", section: "examples", excerpt: "Socket Chat Example This example builds a chat interface using SockJS for bidirectional communication. Use this pattern for Meteor, Phoenix, or when you need custom real-time events. What You're..." } }, dirtCount: 0, index: [["~20", { "1": { "17": 1 } }], ["~10", { "1": { "17": 1 } }], ["~5", { "1": { "17": 1 } }], ["\u2514\u2500\u2500", { "1": { "12": 2 } }], ["\u251C\u2500\u2500", { "1": { "12": 4 } }], ["x", { "1": { "20": 2, "21": 2 } }], ["xlsx", { "1": { "18": 2 } }], ["xyz789a", { "1": { "20": 1 } }], ["xyz", { "1": { "11": 3 } }], ["xs", { "1": { "8": 1 } }], ["\u2192", { "1": { "10": 2 } }], ["\u274C", { "1": { "10": 1 } }], ["+", { "1": { "10": 1 } }], ["knowledge", { "1": { "18": 3 } }], ["know", { "1": { "10": 2, "15": 2, "24": 1 } }], ["keep", { "1": { "1": 1, "5": 1, "11": 2, "14": 1, "23": 1 } }], ["keys", { "1": { "19": 2 } }], ["key=your", { "1": { "1": 1, "23": 1, "24": 1 } }], ["key=", { "1": { "1": 2, "6": 2, "7": 2, "8": 3, "9": 2, "23": 3, "24": 2 } }], ["key", { "1": { "1": 3, "2": 3, "3": 1, "6": 1, "10": 2, "11": 2, "19": 3, "20": 3, "21": 5, "23": 3, "24": 6 } }], ["\u23F3", { "1": { "9": 2 } }], ["\u25B6", { "1": { "8": 1 } }], ["\u25BC", { "1": { "8": 1 } }], ["\u{1F4AD}", { "1": { "8": 2 } }], ["\u{1F527}", { "1": { "7": 1 } }], ["\u2717", { "1": { "7": 1 } }], ["\u2713", { "1": { "7": 2, "9": 3 } }], ["questions", { "1": { "12": 1, "17": 1 } }], ["query", { "1": { "4": 5, "10": 1, "14": 1, "15": 2, "17": 1 } }], ["quickstart", { "1": { "0": 1, "11": 1 } }], ["quick", { "0": { "1": 1 }, "1": { "0": 1, "1": 1, "11": 1 } }], ["\u2705", { "1": { "4": 4, "10": 1, "11": 3 } }], ["9`", { "1": { "2": 1, "6": 2 } }], ["05z", { "1": { "20": 1 } }], ["05", { "1": { "20": 1 } }], ["00z", { "1": { "20": 1, "21": 2 } }], ["00", { "1": { "20": 1, "21": 2 } }], ["000z", { "1": { "20": 2 } }], ["000", { "1": { "17": 3 } }], ["01", { "1": { "20": 4, "21": 2 } }], ["0", { "1": { "2": 1, "4": 1, "6": 2, "8": 1, "10": 2, "17": 5 } }], ["|", { "1": { "1": 1, "4": 2, "5": 37, "6": 38, "7": 12, "8": 3, "9": 13, "10": 62, "11": 19, "12": 24, "13": 93, "14": 6, "15": 58, "16": 27, "17": 66, "18": 88, "19": 71, "20": 126, "21": 40, "22": 16, "23": 3, "24": 3 } }], ["||", { "1": { "1": 1, "4": 1, "7": 1, "8": 1, "23": 1, "24": 1 } }], ["javascript", { "1": { "6": 1 } }], ["justify", { "1": { "1": 2 } }], ["json", { "1": { "1": 9, "4": 2, "5": 1, "6": 6, "7": 4, "8": 3, "10": 6, "11": 6, "12": 2, "13": 1, "14": 2, "15": 2, "16": 1, "19": 2, "20": 2, "21": 2, "23": 8, "24": 4 } }], ["js", { "0": { "23": 1 }, "1": { "1": 3, "2": 1, "6": 2, "10": 1, "11": 4, "19": 1, "22": 3, "23": 4, "24": 1 } }], ["$", { "1": { "1": 2, "4": 1, "7": 1, "10": 1, "23": 1, "24": 1 } }], ["<errormessage", { "1": { "11": 1 } }], ["<loadingspinner", { "1": { "10": 1, "11": 1 } }], ["<operationcard", { "1": { "9": 1 } }], ["<otherthreadpart", { "1": { "7": 1 } }], ["<toolcallcard", { "1": { "9": 1 } }], ["<textpart", { "1": { "7": 1, "9": 1 } }], ["<reasoningpart", { "1": { "9": 1 } }], ["<statusbadge", { "1": { "8": 1 } }], ["<summary>thinking", { "1": { "7": 1 } }], ["<span>", { "1": { "9": 3 } }], ["<span", { "1": { "1": 1, "7": 2, "8": 7, "9": 4 } }], ["<details", { "1": { "7": 1 } }], ["<div>agent", { "1": { "8": 1 } }], ["<div>", { "1": { "6": 2, "8": 3, "9": 1 } }], ["<div>loading", { "1": { "1": 1 } }], ["<div", { "1": { "1": 5, "7": 6, "8": 7, "9": 4, "23": 7, "24": 4 } }], ["<chat", { "1": { "1": 1, "10": 1, "11": 2, "23": 1 } }], ["<p>", { "1": { "7": 1 } }], ["<pre", { "1": { "7": 1, "8": 2 } }], ["<partrenderer", { "1": { "7": 1, "8": 2, "9": 1 } }], ["<p", { "1": { "1": 1, "6": 1, "8": 1, "23": 1, "24": 1 } }], ["<button", { "1": { "1": 1, "8": 3, "11": 1, "23": 1, "24": 2 } }], ["<input", { "1": { "1": 1, "23": 1, "24": 1 } }], ["<form", { "1": { "1": 1, "23": 1, "24": 1 } }], ["<", { "1": { "1": 9, "6": 3, "7": 11, "8": 16, "9": 9, "10": 1, "11": 1, "12": 1, "15": 1, "23": 10, "24": 9 } }], ["<messagebubble", { "1": { "1": 1, "6": 1, "7": 1, "8": 1 } }], [">loading", { "1": { "23": 1 } }], [">routes", { "1": { "23": 1 } }], [">|", { "1": { "23": 2, "24": 1 } }], [">something", { "1": { "8": 1 } }], [">stop<", { "1": { "8": 1 } }], [">\u2717<", { "1": { "8": 1 } }], [">\u2713<", { "1": { "8": 1, "9": 2 } }], [">\u25D0<", { "1": { "8": 1 } }], [">\u25CB<", { "1": { "8": 1 } }], [">\u{1F527}<", { "1": { "8": 1 } }], [">tools", { "1": { "4": 1 } }], [">", { "1": { "1": 12, "3": 7, "6": 3, "7": 14, "8": 18, "9": 11, "10": 2, "11": 5, "12": 1, "13": 1, "14": 1, "15": 3, "18": 2, "20": 1, "23": 13, "24": 12 } }], [">>sdk", { "1": { "4": 1 } }], [">>ui", { "1": { "4": 4 } }], [">>platform", { "1": { "4": 3 } }], [">>app", { "1": { "0": 3 } }], [">>api", { "1": { "0": 4 } }], [">>llm", { "1": { "0": 2, "4": 1 } }], ["`block", { "1": { "20": 2 } }], ["`boolean`", { "1": { "13": 3, "15": 1 } }], ["`error`", { "1": { "20": 1 } }], ["`xlsx`", { "1": { "18": 1 } }], ["`latest`", { "1": { "18": 1 } }], ["`low`", { "1": { "17": 1 } }], ["`lowercase", { "1": { "12": 4 } }], ["`version`", { "1": { "18": 1 } }], ["`variables`", { "1": { "13": 1 } }], ["`web", { "1": { "18": 2 } }], ["`wss", { "1": { "6": 1, "10": 1 } }], ["`>", { "1": { "17": 1 } }], ["`high`", { "1": { "17": 1 } }], ["`hidden`", { "1": { "5": 1, "15": 2, "16": 1, "18": 3 } }], ["`args`", { "1": { "20": 1, "23": 1 } }], ["`assets", { "1": { "18": 1 } }], ["`anthropic", { "1": { "17": 1, "18": 4 } }], ["`anthropic`", { "1": { "17": 1, "18": 2 } }], ["`agents", { "1": { "20": 1 } }], ["`agentsessions", { "1": { "7": 1 } }], ["`agentid`", { "1": { "20": 1 } }], ["`agentic`", { "1": { "17": 1 } }], ["`agent`", { "1": { "17": 1 } }], ["`agent", { "1": { "15": 1 } }], ["`medium`", { "1": { "17": 1 } }], ["`messages`", { "1": { "3": 1 } }], ["`maxsteps`", { "1": { "17": 1 } }], ["`model`", { "1": { "17": 1 } }], ["`number`", { "1": { "13": 3, "15": 1 } }], ["`name`", { "1": { "5": 1, "9": 1, "12": 1, "15": 2, "16": 1, "18": 3, "20": 1 } }], ["`generation`", { "1": { "12": 1, "21": 1 } }], ["`get", { "1": { "3": 1, "20": 1 } }], ["`getmessages", { "1": { "3": 2 } }], ["`triggername`", { "1": { "20": 1 } }], ["`triggerrequest`", { "1": { "11": 1 } }], ["`toolresults`", { "1": { "20": 1 } }], ["`toolname`", { "1": { "20": 1 } }], ["`toolcallid`", { "1": { "20": 1 } }], ["`tool", { "1": { "20": 9 } }], ["`tools`", { "1": { "17": 1 } }], ["`tools", { "1": { "15": 2 } }], ["`text", { "1": { "20": 4 } }], ["`text`", { "1": { "20": 3 } }], ["`temperature`", { "1": { "17": 1 } }], ["`thinking`", { "1": { "17": 1 } }], ["`thread`", { "1": { "7": 1, "8": 1, "9": 1 } }], ["`ticket`", { "1": { "15": 1 } }], ["`type`", { "1": { "13": 3, "15": 1, "18": 1 } }], ["`result`", { "1": { "20": 1 } }], ["`resources`", { "1": { "13": 1 } }], ["`resource", { "1": { "13": 1, "20": 1 } }], ["`reasoning", { "1": { "20": 3 } }], ["`reasoning`", { "1": { "20": 1 } }], ["`readonly`", { "1": { "13": 1 } }], ["`references", { "1": { "18": 1 } }], ["`require", { "1": { "10": 1 } }], ["`reconnecting", { "1": { "10": 1 } }], ["`record<string", { "1": { "4": 1 } }], ["`company", { "1": { "23": 1 } }], ["`code", { "1": { "18": 2 } }], ["`custom`", { "1": { "18": 2 } }], ["`chat`", { "1": { "10": 1 } }], ["`createsockettransport`", { "1": { "6": 1, "10": 1 } }], ["`createhttptransport`", { "1": { "6": 1, "10": 1 } }], ["`data`", { "1": { "19": 1 } }], ["`docx`", { "1": { "18": 1 } }], ["`default`", { "1": { "13": 3 } }], ["`description`", { "1": { "5": 1, "9": 1, "12": 1, "13": 3, "15": 4, "16": 1, "18": 7 } }], ["`displayname`", { "1": { "20": 1 } }], ["`display`", { "1": { "15": 1, "16": 1, "18": 2 } }], ["`display", { "1": { "9": 1 } }], ["`operationtype`", { "1": { "20": 1 } }], ["`operationid`", { "1": { "20": 1 } }], ["`operation`", { "1": { "9": 1, "20": 1 } }], ["`optional", { "1": { "15": 1 } }], ["`optional`", { "1": { "13": 1, "15": 1 } }], ["`octavuschat`", { "1": { "6": 1 } }], ["`id`", { "1": { "20": 1 } }], ["`inline", { "1": { "23": 1, "24": 1 } }], ["`independent", { "1": { "16": 1 } }], ["`input`", { "1": { "13": 1, "17": 1, "20": 2, "23": 1 } }], ["`interactive`", { "1": { "12": 1, "21": 1 } }], ["`init`", { "1": { "10": 1 } }], ["`initialmessages`", { "1": { "3": 2, "20": 1 } }], ["`isotherthread`", { "1": { "7": 1 } }], ["`finish`", { "1": { "20": 1 } }], ["`format`", { "1": { "12": 1 } }], ["`fetch", { "1": { "6": 1 } }], ["`flex", { "1": { "1": 1 } }], ["`sync`", { "1": { "21": 1 } }], ["`system`", { "1": { "17": 1 } }], ["`scripts", { "1": { "18": 1 } }], ["`skill", { "1": { "18": 1 } }], ["`slug`", { "1": { "12": 1, "20": 1 } }], ["`sockjs`", { "1": { "24": 1 } }], ["`sockjs", { "1": { "10": 1, "24": 2 } }], ["`start`", { "1": { "20": 1 } }], ["`status`", { "1": { "8": 1, "20": 4 } }], ["`string`", { "1": { "13": 3, "15": 1 } }], ["`streamevent`", { "1": { "10": 1 } }], ["`stream`", { "1": { "5": 1, "9": 1, "15": 2, "16": 1, "18": 3 } }], ["`stop", { "1": { "8": 1 } }], ["`send", { "1": { "23": 1 } }], ["`send`", { "1": { "6": 1, "7": 1 } }], ["`serialize", { "1": { "9": 1 } }], ["`settings", { "1": { "21": 4 } }], ["`set", { "1": { "9": 1, "13": 1 } }], ["`sessionid`", { "1": { "6": 1, "10": 6, "24": 1 } }], ["`sessions", { "1": { "3": 1 } }], ["`upper", { "1": { "13": 1 } }], ["`uppercase", { "1": { "12": 1, "14": 1, "15": 1 } }], ["`unknown`", { "1": { "13": 3, "15": 1 } }], ["`usermessage`", { "1": { "7": 1 } }], ["`user", { "1": { "4": 1, "23": 1 } }], ["`useoctavuschat`", { "1": { "1": 1, "6": 2 } }], ["`uimessage`", { "1": { "3": 1, "20": 1 } }], ["`0", { "1": { "2": 1, "6": 2, "17": 3 } }], ["`pptx`", { "1": { "18": 1 } }], ["`pdf`", { "1": { "18": 1 } }], ["`protocol`", { "1": { "21": 1 } }], ["`prompts`", { "1": { "21": 1 } }], ["`prompts", { "1": { "17": 1 } }], ["`provider", { "1": { "17": 1 } }], ["`parameters`", { "1": { "15": 1 } }], ["`parts`", { "1": { "3": 1, "6": 1, "7": 1, "8": 1, "9": 1, "20": 1 } }], ["`p", { "1": { "1": 1 } }], ["`", { "1": { "1": 3, "2": 1, "3": 8, "4": 1, "6": 6, "7": 3, "8": 3, "10": 3, "12": 2, "13": 6, "15": 6, "17": 1, "18": 11, "19": 10, "20": 1, "23": 2, "24": 1 } }], ["```markdown", { "1": { "12": 1, "13": 1, "15": 1, "17": 1 } }], ["```mermaid", { "1": { "0": 1, "3": 1, "4": 1, "23": 1, "24": 1 } }], ["```yaml", { "1": { "12": 1, "13": 5, "14": 9, "15": 8, "16": 12, "17": 9, "18": 9, "23": 2, "24": 1 } }], ["```json", { "1": { "11": 1, "12": 1, "19": 2, "20": 5, "21": 6 } }], ["```tsx", { "1": { "1": 2, "6": 5, "7": 6, "8": 8, "9": 4, "10": 1, "11": 5, "14": 1, "23": 2, "24": 1 } }], ["```typescript", { "1": { "1": 3, "2": 7, "3": 8, "4": 10, "5": 9, "6": 5, "7": 3, "9": 1, "10": 11, "11": 3, "13": 2, "14": 1, "15": 1, "21": 1, "23": 6, "24": 9 } }], ["```bash", { "1": { "1": 2, "2": 1, "6": 2, "19": 2, "20": 3, "21": 4, "23": 2, "24": 3 } }], ["```", { "1": { "0": 1, "1": 7, "2": 8, "3": 9, "4": 11, "5": 9, "6": 12, "7": 9, "8": 8, "9": 5, "10": 12, "11": 11, "12": 5, "13": 8, "14": 11, "15": 12, "16": 12, "17": 10, "18": 9, "19": 8, "20": 16, "21": 19, "23": 13, "24": 15 } }], ["==", { "1": { "4": 1 } }], ["===", { "1": { "1": 4, "3": 1, "4": 1, "6": 1, "7": 6, "8": 7, "9": 4, "10": 5, "11": 3, "13": 1, "23": 8, "24": 11 } }], ["=>", { "1": { "1": 9, "2": 1, "4": 13, "6": 20, "7": 9, "8": 10, "9": 3, "10": 30, "11": 11, "13": 1, "14": 2, "15": 2, "23": 12, "24": 20 } }], ["=", { "1": { "1": 18, "2": 5, "3": 8, "4": 23, "5": 2, "6": 15, "7": 7, "8": 7, "9": 1, "10": 41, "11": 19, "13": 1, "14": 3, "15": 4, "16": 2, "17": 2, "21": 1, "23": 18, "24": 29 } }], ["gpt", { "1": { "17": 5, "18": 1 } }], ["go", { "1": { "16": 1 } }], ["good", { "1": { "14": 2, "15": 1, "17": 1 } }], ["git", { "1": { "12": 1 } }], ["give", { "1": { "18": 1 } }], ["gives", { "1": { "6": 1 } }], ["giving", { "1": { "0": 1, "4": 1 } }], ["great", { "1": { "14": 1 } }], ["green", { "1": { "8": 1, "9": 2 } }], ["gray", { "1": { "1": 2, "7": 4, "8": 5, "9": 1, "23": 1, "24": 1 } }], ["g", { "1": { "4": 1, "6": 2, "7": 2, "8": 1, "9": 1, "10": 2, "15": 1 } }], ["generating", { "1": { "8": 1, "16": 2 } }], ["generation", { "1": { "5": 2, "18": 1, "20": 2 } }], ["generate", { "1": { "13": 2, "16": 6 } }], ["generates", { "1": { "8": 1 } }], ["generated", { "1": { "5": 1, "13": 1 } }], ["generator", { "1": { "2": 1, "3": 1, "5": 2, "14": 1 } }], ["gets", { "1": { "15": 1, "24": 1 } }], ["getsessionid", { "1": { "2": 1 } }], ["getestimatedtime", { "1": { "15": 1 } }], ["getestimatedresponse", { "1": { "4": 1 } }], ["getreader", { "1": { "11": 1 } }], ["getmessages", { "1": { "2": 2, "3": 4, "7": 2 } }], ["getbyslug", { "1": { "1": 1, "20": 1 } }], ["get", { "1": { "0": 1, "1": 2, "2": 6, "3": 2, "4": 6, "5": 3, "7": 1, "8": 1, "10": 1, "11": 1, "12": 2, "15": 9, "17": 4, "18": 2, "19": 5, "20": 6, "21": 6, "23": 3, "24": 3 } }], ["getting", { "1": { "0": 1, "3": 1, "11": 1 }, "2": { "0": 1, "1": 1 } }], ["gap", { "1": { "1": 1, "8": 1, "9": 3, "23": 1, "24": 1 } }], ["guidelines", { "1": { "17": 2 } }], ["guide", { "1": { "1": 1, "11": 1 } }], ["n", { "1": { "19": 1, "20": 1, "21": 11 } }], ["native", { "1": { "6": 1, "10": 2 } }], ["naming", { "1": { "5": 1, "12": 1, "14": 1 } }], ["name`", { "1": { "21": 1, "23": 1 } }], ["names", { "1": { "14": 1, "16": 1, "23": 1 } }], ["named", { "1": { "7": 5, "8": 4, "9": 3, "16": 2, "17": 1 } }], ["name", { "1": { "1": 3, "2": 2, "3": 2, "4": 2, "5": 3, "6": 1, "7": 6, "9": 5, "10": 1, "11": 3, "12": 6, "13": 9, "14": 3, "15": 5, "16": 11, "17": 8, "18": 3, "20": 8, "21": 16, "23": 5, "24": 2 } }], ["number", { "1": { "4": 1, "14": 3, "15": 1 } }], ["null>", { "1": { "1": 1, "10": 1, "11": 1, "23": 1 } }], ["null", { "1": { "1": 2, "4": 2, "6": 3, "7": 1, "8": 2, "9": 1, "10": 9, "11": 1, "23": 2, "24": 5 } }], ["netlify", { "1": { "22": 1 } }], ["network", { "1": { "5": 2 } }], ["nested", { "1": { "13": 1 } }], ["never", { "1": { "4": 1, "10": 2, "17": 1, "24": 1 } }], ["needs", { "1": { "10": 2, "24": 1 } }], ["needed", { "1": { "4": 2, "10": 2, "14": 2, "17": 1 } }], ["need", { "1": { "3": 1, "4": 1, "6": 1, "10": 4, "11": 1, "15": 1, "22": 1, "24": 2 } }], ["news", { "1": { "18": 1 } }], ["new", { "1": { "1": 3, "2": 4, "3": 3, "4": 4, "5": 1, "6": 5, "10": 16, "11": 3, "14": 1, "20": 1, "21": 2, "23": 3, "24": 6 } }], ["nextjs", { "1": { "22": 1, "23": 3 } }], ["nextresponse", { "1": { "1": 3, "23": 2 } }], ["next", { "0": { "23": 1 }, "1": { "0": 1, "1": 3, "2": 1, "5": 1, "6": 2, "10": 1, "11": 5, "12": 2, "13": 1, "14": 1, "16": 8, "17": 1, "18": 1, "19": 1, "20": 1, "22": 3, "23": 6, "24": 1 } }], ["npm", { "1": { "1": 2, "2": 1, "6": 2, "23": 1, "24": 4 } }], ["none", { "1": { "13": 2 } }], ["non", { "1": { "11": 1, "17": 1, "18": 1 } }], ["normal", { "1": { "5": 1 } }], ["now", { "1": { "1": 1 } }], ["node", { "1": { "1": 2, "2": 1, "19": 1, "24": 1 } }], ["notation", { "1": { "13": 1, "15": 1 } }], ["notification", { "1": { "10": 1, "24": 1 } }], ["notes", { "1": { "10": 1 } }], ["note", { "1": { "0": 2, "3": 1, "4": 2, "5": 1, "13": 1, "15": 1, "18": 2, "23": 2, "24": 1 } }], ["not", { "1": { "0": 1, "1": 1, "3": 2, "4": 1, "5": 2, "10": 1, "12": 2, "13": 5, "14": 1, "15": 2, "16": 2, "18": 1, "19": 4, "20": 1, "23": 1 } }], ["no", { "1": { "0": 1, "1": 1, "4": 2, "5": 1, "10": 4, "11": 2, "12": 1, "13": 9, "14": 3, "15": 4, "17": 7, "18": 5, "20": 3, "21": 1, "23": 1 } }], ["8", { "1": { "0": 1, "16": 1, "17": 1, "23": 1 } }], ["70", { "1": { "23": 1 } }], ["7`", { "1": { "17": 1 } }], ["7", { "1": { "0": 1, "4": 1, "16": 1, "17": 1, "23": 1, "24": 1 } }], ["600", { "1": { "7": 1, "8": 2 } }], ["6", { "1": { "0": 1, "4": 1, "16": 1, "23": 1, "24": 1 } }], ["50", { "1": { "1": 1, "7": 1, "8": 3 } }], ["500", { "1": { "1": 2, "7": 2, "8": 7, "9": 5, "19": 1, "23": 2, "24": 3 } }], ["5", { "1": { "0": 1, "3": 1, "4": 1, "10": 1, "12": 1, "14": 2, "15": 1, "16": 3, "17": 9, "18": 5, "21": 2, "23": 1, "24": 1 } }], ["4o", { "1": { "17": 5, "18": 1 } }], ["42", { "1": { "4": 1 } }], ["403", { "1": { "19": 1 } }], ["401", { "1": { "19": 1 } }], ["400", { "1": { "1": 1, "7": 1, "8": 2, "19": 1 } }], ["404", { "1": { "1": 1, "3": 1, "19": 1 } }], ["4", { "1": { "0": 1, "1": 6, "3": 1, "4": 1, "7": 2, "8": 2, "12": 1, "15": 1, "16": 3, "17": 12, "18": 5, "21": 2, "23": 6, "24": 7 } }], ["3`", { "1": { "17": 1 } }], ["3001", { "1": { "24": 2 } }], ["30000", { "1": { "10": 1, "13": 1 } }], ["30", { "1": { "13": 1, "20": 4 } }], ["3", { "1": { "0": 1, "1": 2, "3": 1, "4": 3, "7": 2, "8": 4, "13": 1, "14": 1, "16": 1, "17": 1, "18": 2, "23": 2, "24": 2 } }], ["2024", { "1": { "20": 4, "21": 2 } }], ["201", { "1": { "19": 1 } }], ["200", { "1": { "7": 1, "8": 1, "19": 1 } }], ["2`", { "1": { "17": 2 } }], ["24h", { "1": { "24": 1 } }], ["24", { "1": { "1": 1, "3": 1, "15": 1, "23": 1 } }], ["2", { "1": { "0": 1, "1": 6, "3": 1, "4": 4, "7": 4, "8": 9, "9": 6, "10": 2, "11": 1, "14": 2, "15": 2, "16": 1, "17": 3, "18": 2, "23": 4, "24": 5 } }], ["14+", { "1": { "23": 1 } }], ["1702345805000", { "1": { "20": 1 } }], ["1702345800000", { "1": { "20": 1 } }], ["15t10", { "1": { "20": 4, "21": 1 } }], ["123abc", { "1": { "15": 1 } }], ["123", { "1": { "1": 1, "3": 1, "4": 1, "5": 2, "20": 3, "24": 1 } }], ["18+", { "1": { "1": 1 } }], ["10t08", { "1": { "21": 1 } }], ["1000", { "1": { "10": 1 } }], ["10000", { "1": { "4": 1 } }], ["100", { "1": { "1": 1, "7": 1, "23": 1, "24": 1 } }], ["10", { "1": { "1": 1, "14": 1, "15": 1, "17": 3 } }], ["1", { "1": { "0": 1, "1": 5, "3": 1, "4": 4, "7": 2, "8": 2, "10": 1, "11": 1, "14": 3, "15": 2, "16": 2, "17": 4, "18": 2, "23": 3, "24": 3 } }], ["vs", { "1": { "10": 1 } }], ["visualization", { "1": { "12": 1 } }], ["visible", { "1": { "9": 1, "16": 2 } }], ["via", { "1": { "0": 1, "10": 3, "13": 1 } }], ["void", { "1": { "6": 7, "10": 2, "24": 1 } }], ["vue", { "1": { "6": 1 } }], ["verification", { "1": { "18": 1 } }], ["verify", { "1": { "15": 1 } }], ["very", { "1": { "17": 1 } }], ["vercel", { "1": { "5": 2, "11": 1, "22": 1 } }], ["versioning", { "1": { "12": 1 } }], ["version", { "1": { "0": 1, "2": 1, "6": 2, "18": 4 } }], ["vague", { "1": { "14": 1, "15": 1 } }], ["var", { "1": { "13": 1 } }], ["varied", { "1": { "17": 1 } }], ["varies", { "1": { "10": 1 } }], ["various", { "1": { "5": 1 } }], ["variable", { "1": { "4": 1, "12": 2, "13": 6, "14": 1, "15": 4, "16": 7, "23": 1 } }], ["variables", { "1": { "0": 2, "1": 1, "2": 1, "3": 5, "10": 1, "12": 6, "13": 7, "15": 3, "16": 3, "17": 1, "20": 4, "23": 2, "24": 1 } }], ["vanilla", { "1": { "6": 2 } }], ["validator", { "1": { "18": 1 } }], ["validation", { "1": { "12": 1, "17": 1, "18": 4 } }], ["validated", { "1": { "17": 1, "18": 1 } }], ["validate", { "1": { "4": 1 } }], ["validatetoken", { "1": { "4": 1 } }], ["valid", { "1": { "10": 1, "18": 2 } }], ["values", { "1": { "4": 1, "12": 1, "13": 1, "15": 1 } }], ["value", { "1": { "1": 1, "4": 1, "5": 1, "6": 1, "7": 2, "9": 1, "11": 2, "13": 7, "14": 1, "15": 1, "16": 3, "20": 1, "23": 1, "24": 1 } }], ["value=", { "1": { "1": 1, "23": 1, "24": 1 } }], ["yes", { "1": { "12": 3, "13": 5, "15": 2, "17": 2, "18": 1, "20": 2, "21": 5 } }], ["y", { "1": { "1": 2, "7": 1, "9": 1, "23": 2, "24": 2 } }], ["you", { "1": { "0": 1, "1": 2, "3": 2, "4": 2, "5": 2, "6": 2, "9": 1, "10": 5, "12": 1, "13": 1, "15": 1, "17": 2, "18": 3, "20": 3, "21": 3, "22": 1, "23": 1, "24": 2 } }], ["your", { "1": { "0": 6, "1": 7, "2": 6, "3": 1, "4": 11, "5": 1, "6": 2, "7": 2, "10": 4, "11": 3, "12": 1, "15": 4, "16": 1, "17": 1, "18": 2, "19": 3, "20": 5, "21": 5, "23": 10, "24": 5 } }], ["yaml", { "1": { "0": 1, "12": 2, "21": 1, "23": 3, "24": 1 } }], ["urgent", { "1": { "15": 2 } }], ["url=https", { "1": { "1": 1, "23": 1, "24": 1 } }], ["url", { "1": { "1": 1, "2": 1, "3": 1, "4": 1, "10": 5, "11": 2, "12": 1, "14": 2, "19": 1, "20": 1, "21": 1, "23": 1, "24": 2 } }], ["ux", { "1": { "5": 1 } }], ["upload", { "1": { "14": 1, "18": 1 } }], ["uploaded", { "1": { "14": 1, "18": 1 } }], ["updating", { "1": { "9": 1 } }], ["update`", { "1": { "13": 1, "20": 1 } }], ["updated", { "1": { "7": 1, "13": 2, "21": 4 } }], ["updatedat", { "1": { "2": 1, "3": 2, "20": 1, "21": 1 } }], ["updates", { "1": { "5": 2, "21": 2 } }], ["update", { "1": { "3": 1, "5": 1, "6": 1, "8": 2, "10": 1, "11": 1, "16": 1, "19": 1, "21": 2 } }], ["up", { "1": { "1": 1, "5": 1, "12": 1, "15": 3, "17": 1, "18": 2, "23": 1, "24": 1 } }], ["uioperationpart", { "1": { "7": 2, "9": 5 } }], ["uitoolcallpart", { "1": { "7": 2, "8": 3 } }], ["uitextpart", { "1": { "7": 3, "8": 2 } }], ["uireasoningpart", { "1": { "7": 2, "8": 2 } }], ["uisessionstate", { "1": { "2": 1, "3": 2 } }], ["uis", { "1": { "1": 1, "6": 1, "8": 1, "11": 1 } }], ["uimessagepart", { "1": { "7": 5, "9": 2 } }], ["uimessage", { "1": { "1": 2, "2": 1, "3": 3, "6": 5, "7": 6, "8": 2, "9": 3, "20": 1 } }], ["ui", { "1": { "0": 1, "2": 4, "3": 4, "4": 2, "6": 2, "7": 3, "8": 2, "11": 1, "14": 3, "15": 1, "16": 3, "17": 1, "18": 1, "20": 1, "23": 2 } }], ["usable", { "1": { "15": 1 } }], ["usage", { "1": { "2": 1, "6": 3 } }], ["useoctavussocket", { "1": { "24": 5 } }], ["useoctavuschatreturn", { "1": { "6": 2 } }], ["useoctavuschat", { "1": { "1": 2, "6": 8, "7": 5, "8": 5, "10": 4, "11": 4, "13": 1, "14": 2, "23": 2, "24": 2 } }], ["useful", { "1": { "16": 1, "21": 1 } }], ["usecallback", { "1": { "10": 2 } }], ["used", { "1": { "6": 1 } }], ["uses", { "1": { "6": 1, "11": 1, "16": 1, "17": 1, "24": 1 } }], ["usestate<string", { "1": { "1": 1, "10": 1, "11": 1, "23": 1 } }], ["usestate", { "1": { "1": 3, "8": 1, "11": 1, "23": 3, "24": 2 } }], ["useeffect", { "1": { "1": 2, "10": 1, "11": 2, "23": 2 } }], ["usememo", { "1": { "1": 2, "6": 2, "7": 4, "8": 2, "10": 7, "11": 2, "14": 2, "23": 2, "24": 3 } }], ["use", { "1": { "0": 1, "1": 3, "2": 1, "3": 4, "4": 3, "6": 3, "7": 2, "8": 1, "9": 1, "10": 6, "11": 6, "12": 1, "13": 3, "14": 2, "15": 4, "16": 2, "17": 1, "18": 2, "20": 1, "22": 2, "23": 2, "24": 4 } }], ["usereconnectingtransport", { "1": { "10": 1 } }], ["useref", { "1": { "10": 2 } }], ["users", { "1": { "2": 1, "3": 1, "4": 3, "5": 1, "6": 1, "9": 1, "10": 1, "11": 1, "12": 1, "15": 1, "17": 2, "18": 3, "23": 1, "24": 1 } }], ["usermessageinput", { "1": { "6": 3 } }], ["usermessage", { "1": { "1": 1, "6": 5, "7": 1, "10": 1, "11": 1, "14": 1, "23": 2, "24": 1 } }], ["userid", { "1": { "1": 2, "2": 1, "4": 8, "5": 2, "12": 1, "15": 6, "17": 1, "18": 1, "23": 6, "24": 4 } }], ["user", { "1": { "0": 3, "1": 6, "2": 3, "3": 5, "4": 18, "5": 12, "6": 9, "7": 6, "9": 1, "10": 3, "11": 6, "12": 13, "13": 5, "14": 26, "15": 21, "16": 22, "17": 13, "18": 10, "19": 2, "20": 13, "21": 2, "23": 24, "24": 11 } }], ["using", { "1": { "0": 1, "1": 1, "4": 1, "5": 1, "6": 2, "10": 3, "13": 2, "17": 1, "18": 4, "19": 2, "22": 1, "23": 2, "24": 1 } }], ["unauthorized", { "1": { "19": 1 } }], ["unclear", { "1": { "14": 1 } }], ["until", { "1": { "10": 2, "17": 1 } }], ["unknown", { "1": { "6": 1, "7": 1, "10": 1, "12": 1, "13": 4, "14": 2, "24": 1 } }], ["unknown>`", { "1": { "4": 1 } }], ["unknown>", { "1": { "2": 5, "4": 1, "6": 2, "7": 1, "10": 1, "11": 1 } }], ["unsubscribe", { "1": { "6": 3 } }], ["unless", { "1": { "6": 1 } }], ["unlike", { "1": { "4": 1, "13": 1, "18": 1 } }], ["undefined", { "1": { "4": 2 } }], ["under", { "1": { "1": 1, "19": 1 } }], ["understanding", { "1": { "2": 1 } }], ["understand", { "1": { "0": 1, "9": 1 } }], ["unit", { "1": { "0": 1 } }], ["unified", { "1": { "0": 2, "6": 1 } }], ["human", { "1": { "6": 1, "7": 1, "9": 2, "12": 3, "13": 2, "14": 9, "15": 2, "16": 2, "17": 1 } }], ["high", { "1": { "15": 2, "17": 2, "21": 1 } }], ["higher", { "1": { "10": 1 } }], ["hidden`", { "1": { "9": 1 } }], ["hidden", { "1": { "3": 1, "5": 1, "9": 2, "16": 2, "17": 1, "18": 1, "20": 1 } }], ["history", { "1": { "0": 1, "3": 2, "7": 1, "20": 1 } }], ["helpful", { "1": { "17": 1, "21": 1 } }], ["help", { "1": { "5": 1, "9": 1, "12": 1, "14": 2, "17": 3, "20": 2 } }], ["helper", { "1": { "2": 1, "7": 1 } }], ["hello", { "1": { "2": 1, "5": 2, "6": 2, "10": 1, "11": 2, "19": 2, "24": 1 } }], ["here", { "1": { "1": 1, "6": 1, "15": 1, "23": 2 } }], ["headers", { "1": { "1": 3, "2": 1, "3": 1, "4": 2, "5": 1, "6": 3, "7": 2, "8": 1, "11": 4, "14": 2, "23": 3 } }], ["h", { "1": { "1": 2, "7": 1, "8": 1, "9": 1, "19": 3, "20": 5, "21": 7, "23": 1, "24": 1 } }], ["httptransportoptions", { "1": { "11": 1 } }], ["httpserver", { "1": { "10": 1 } }], ["https", { "1": { "2": 1, "5": 1, "18": 1, "19": 3, "20": 3, "21": 5 } }], ["http", { "0": { "11": 1 }, "1": { "1": 1, "2": 1, "3": 1, "5": 1, "6": 8, "10": 2, "11": 8, "14": 1, "19": 1, "22": 2, "23": 1, "24": 5 } }], ["hold", { "1": { "23": 1 } }], ["hooks", { "1": { "6": 2, "24": 2 } }], ["hook", { "1": { "1": 1, "6": 3, "7": 1, "10": 2, "11": 1, "24": 1 } }], ["hours", { "1": { "1": 1, "3": 1, "15": 1, "23": 1 } }], ["how", { "1": { "0": 2, "3": 1, "5": 2, "6": 1, "12": 3, "14": 1, "15": 1, "17": 1, "18": 1, "20": 3, "23": 1 } }], ["happens", { "1": { "12": 1, "16": 1 } }], ["handoff", { "1": { "12": 1 } }], ["handling", { "1": { "3": 1, "4": 1, "8": 1, "10": 1, "11": 1 } }], ["handlemessage", { "1": { "10": 4, "24": 2 } }], ["handled", { "1": { "5": 1, "10": 1, "20": 1, "24": 2 } }], ["handle", { "1": { "4": 1, "6": 1, "10": 5, "11": 1, "19": 1, "24": 4 } }], ["handler<br", { "1": { "4": 1 } }], ["handler", { "1": { "3": 1, "4": 1, "5": 1, "10": 1, "14": 2, "15": 1, "16": 1, "24": 6 } }], ["handlers", { "0": { "16": 1 }, "1": { "0": 1, "1": 2, "2": 2, "3": 2, "4": 4, "10": 1, "11": 1, "12": 4, "13": 3, "14": 2, "15": 2, "16": 5, "17": 2, "18": 1, "23": 4, "24": 1 } }], ["handlesend", { "1": { "7": 1 } }], ["handlesubmit", { "1": { "1": 2, "23": 2, "24": 2 } }], ["handles", { "1": { "0": 1, "1": 1, "2": 2, "5": 1, "6": 1, "20": 1, "23": 1, "24": 1 } }], ["has", { "1": { "6": 1, "8": 3, "9": 1, "14": 1, "15": 4, "16": 2, "23": 1 } }], ["have", { "1": { "1": 1, "10": 3, "13": 1, "14": 1, "24": 1 } }], ["hard", { "1": { "0": 1 } }], ["randomness", { "1": { "17": 1 } }], ["rating", { "1": { "14": 3 } }], ["rawdata", { "1": { "10": 8, "24": 4 } }], ["right", { "1": { "7": 1, "23": 1, "24": 1 } }], ["rich", { "1": { "1": 1, "6": 1, "23": 1 } }], ["role", { "1": { "1": 1, "7": 2, "12": 1, "14": 1, "16": 5, "17": 2, "18": 1, "20": 2, "23": 2, "24": 2 } }], ["rounded", { "1": { "1": 3, "7": 3, "8": 4, "9": 1, "23": 3, "24": 4 } }], ["router", { "1": { "11": 1, "23": 2 } }], ["route", { "1": { "1": 2, "4": 1, "11": 2, "23": 2 } }], ["runaway", { "1": { "17": 1 } }], ["runtime", { "1": { "12": 2 } }], ["run", { "1": { "1": 1, "2": 1, "4": 2, "16": 1, "18": 1, "23": 1 } }], ["running", { "1": { "0": 1, "7": 2, "8": 1, "9": 3, "13": 1, "18": 4, "24": 1 } }], ["runs", { "1": { "0": 1, "15": 1 } }], ["refunds", { "1": { "13": 1 } }], ["references", { "1": { "12": 1, "17": 1 } }], ["reference", { "1": { "0": 1, "2": 1, "6": 3, "10": 1, "12": 1, "13": 1, "15": 1, "16": 2, "19": 1, "20": 1 }, "2": { "19": 1, "20": 1, "21": 1 } }], ["releaselock", { "1": { "11": 1 } }], ["req", { "1": { "11": 2 } }], ["requesting", { "1": { "20": 1 } }], ["request`", { "1": { "20": 2 } }], ["requests", { "1": { "11": 1, "19": 1 } }], ["request", { "1": { "0": 2, "1": 6, "4": 7, "5": 2, "6": 1, "8": 1, "11": 6, "12": 1, "13": 2, "14": 7, "15": 2, "16": 4, "17": 1, "19": 1, "20": 2, "21": 2, "23": 6, "24": 1 } }], ["require", { "1": { "10": 2, "18": 3, "19": 1, "24": 2 } }], ["required", { "1": { "4": 1, "6": 1, "12": 3, "13": 5, "15": 4, "17": 1, "18": 2, "20": 2, "21": 1 } }], ["requires", { "1": { "0": 1, "10": 1 } }], ["requirements", { "1": { "0": 1, "11": 1 } }], ["remix", { "1": { "11": 1, "22": 2 } }], ["red", { "1": { "8": 4, "24": 1 } }], ["regular", { "1": { "7": 1 } }], ["reject", { "1": { "6": 2, "10": 9, "24": 2 } }], ["reinitializes", { "1": { "6": 1, "10": 2 } }], ["re", { "1": { "3": 1, "4": 1, "10": 1, "12": 1, "18": 1, "23": 1, "24": 1 } }], ["retrieves", { "1": { "15": 1 } }], ["retrieve", { "1": { "3": 3, "20": 1 } }], ["returned", { "1": { "3": 1, "17": 1 } }], ["returns", { "1": { "1": 1, "2": 1, "3": 4, "5": 1, "6": 1, "11": 1, "14": 1, "19": 1, "20": 2, "23": 1, "24": 1 } }], ["return", { "1": { "0": 1, "1": 13, "2": 2, "3": 2, "4": 20, "5": 1, "6": 4, "7": 10, "8": 12, "9": 9, "10": 10, "11": 7, "14": 1, "15": 2, "19": 1, "23": 11, "24": 11 } }], ["recognized", { "1": { "18": 1 } }], ["reconnectattempts", { "1": { "10": 5 } }], ["reconnection", { "1": { "6": 1, "10": 2 } }], ["recommend", { "1": { "19": 1 } }], ["recommended", { "1": { "6": 1, "10": 6, "23": 1 } }], ["recommendation", { "1": { "6": 1, "11": 1 } }], ["recovery", { "1": { "5": 1 } }], ["record<string", { "1": { "2": 5, "4": 2, "6": 2, "7": 1, "10": 1, "11": 1 } }], ["receives", { "1": { "4": 1, "10": 1, "13": 1, "17": 1, "24": 1 } }], ["receive", { "1": { "4": 1, "20": 1, "23": 1 } }], ["received", { "1": { "0": 1 } }], ["renders", { "1": { "11": 1 } }], ["rendering", { "1": { "7": 4, "8": 1, "9": 1, "11": 1, "23": 1 } }], ["render", { "1": { "1": 1, "7": 1, "9": 1, "10": 5, "11": 1 } }], ["reasoningpart", { "1": { "8": 1 } }], ["reasoningendevent", { "1": { "5": 1 } }], ["reasoningdeltaevent", { "1": { "5": 1 } }], ["reasoningstartevent", { "1": { "5": 1 } }], ["reasoning", { "1": { "5": 9, "6": 2, "7": 3, "9": 2, "12": 1, "16": 1, "17": 3, "20": 4 } }], ["reason", { "1": { "5": 1, "14": 1 } }], ["reasons", { "1": { "5": 1 } }], ["reaching", { "1": { "5": 1, "9": 1 } }], ["reached", { "1": { "5": 1, "10": 1, "17": 1 } }], ["react`", { "1": { "6": 2, "19": 1 } }], ["react", { "1": { "0": 1, "1": 6, "6": 12, "7": 6, "8": 5, "9": 2, "10": 6, "11": 3, "14": 2, "19": 2, "23": 6, "24": 7 } }], ["reader", { "1": { "11": 3 } }], ["readable", { "1": { "7": 1, "9": 1, "12": 1, "16": 1 } }], ["readablestream<uint8array>", { "1": { "2": 1 } }], ["read", { "1": { "6": 1, "11": 1, "12": 1, "13": 4, "18": 1 } }], ["readonly", { "1": { "2": 2, "6": 3, "13": 1 } }], ["ready", { "1": { "2": 4, "3": 5, "7": 2, "10": 1, "11": 1, "20": 1 } }], ["real", { "1": { "0": 1, "2": 1, "5": 1, "6": 2, "8": 2, "10": 2, "11": 1, "18": 1, "22": 2, "23": 1, "24": 2 } }], ["replaced", { "1": { "12": 2 } }], ["repeat", { "1": { "4": 1, "17": 1 } }], ["repeatedly", { "1": { "0": 1 } }], ["represent", { "1": { "3": 1, "7": 1, "9": 1, "20": 1 } }], ["represents", { "1": { "0": 1 } }], ["restful", { "1": { "19": 1 } }], ["restoring", { "1": { "3": 1, "7": 1 } }], ["restore", { "1": { "2": 1, "3": 3, "6": 1, "7": 2 } }], ["res", { "1": { "10": 2, "11": 8, "23": 2 } }], ["resuming", { "1": { "10": 1 } }], ["resultcount", { "1": { "4": 1 } }], ["result", { "1": { "4": 6, "7": 1, "8": 3, "13": 2, "15": 2, "16": 2, "17": 1, "18": 1, "20": 2 } }], ["results", { "1": { "0": 1, "4": 3, "14": 1, "15": 3, "18": 1, "20": 2 } }], ["resolved", { "1": { "14": 1 } }], ["resolve", { "1": { "6": 2, "10": 9, "24": 2 } }], ["resource`", { "1": { "9": 1, "13": 1 } }], ["resourceupdateevent", { "1": { "5": 1 } }], ["resource", { "1": { "3": 2, "5": 3, "6": 1, "7": 2, "9": 2, "13": 9, "16": 8, "20": 1 } }], ["resources", { "0": { "13": 1 }, "1": { "0": 2, "2": 1, "3": 4, "9": 1, "12": 4, "13": 7, "17": 1, "20": 3 } }], ["reset", { "1": { "3": 1, "20": 5 } }], ["responsive", { "1": { "5": 1, "8": 1 } }], ["response", { "1": { "0": 3, "1": 4, "2": 1, "3": 1, "4": 4, "5": 3, "7": 2, "8": 1, "11": 3, "14": 1, "16": 3, "17": 1, "19": 4, "20": 4, "21": 4, "23": 1 } }], ["responses", { "1": { "0": 1, "1": 1, "2": 2, "3": 1, "5": 1, "8": 1, "13": 1, "14": 1, "17": 2, "19": 2, "23": 1 } }], ["responds", { "1": { "11": 1, "17": 1 } }], ["responding", { "1": { "8": 1 } }], ["respond", { "1": { "0": 2, "4": 1, "5": 1, "12": 1, "14": 1, "16": 4, "17": 1, "18": 1, "19": 1, "20": 1 } }], ["rebuild", { "1": { "0": 1 } }], ["editing", { "1": { "18": 1 } }], ["err", { "1": { "11": 2, "24": 2 } }], ["error`", { "1": { "20": 1 } }], ["error=", { "1": { "11": 1 } }], ["errorevent", { "1": { "5": 1 } }], ["errortext", { "1": { "5": 4, "10": 2 } }], ["errors", { "1": { "4": 1, "5": 2, "10": 1, "11": 1, "12": 1, "24": 1 } }], ["error", { "1": { "1": 2, "3": 8, "4": 4, "5": 11, "6": 9, "7": 9, "8": 16, "10": 6, "11": 8, "18": 4, "19": 3, "20": 1, "24": 5 } }], ["escalating", { "1": { "15": 1 } }], ["escalationprogress", { "1": { "9": 1 } }], ["escalation", { "1": { "9": 2, "12": 1, "14": 1, "16": 2, "17": 1 } }], ["escalate", { "1": { "14": 3, "17": 1 } }], ["es6", { "1": { "10": 1, "24": 1 } }], ["estimatedresponse", { "1": { "1": 1, "4": 1, "15": 2, "23": 1, "24": 1 } }], ["every", { "1": { "16": 1 } }], ["everything", { "1": { "6": 1 } }], ["event", { "1": { "1": 1, "2": 1, "3": 1, "5": 8, "10": 3, "11": 4, "13": 1, "14": 3, "20": 4, "23": 1, "24": 4 } }], ["events", { "1": { "0": 1, "1": 2, "2": 7, "3": 4, "4": 3, "5": 15, "6": 4, "10": 10, "11": 8, "13": 1, "14": 5, "18": 1, "19": 1, "20": 2, "22": 1, "23": 3, "24": 13 } }], ["either", { "1": { "5": 1 } }], ["each", { "1": { "5": 1, "6": 1, "8": 3, "12": 1, "14": 3, "16": 1, "22": 1, "24": 1 } }], ["easy", { "1": { "0": 1 } }], ["empty", { "1": { "12": 1, "24": 1 } }], ["emitted", { "1": { "5": 1 } }], ["emits", { "1": { "5": 1 } }], ["email", { "1": { "1": 1, "4": 3, "5": 1, "15": 3, "20": 1, "23": 2 } }], ["else", { "1": { "3": 1, "10": 1, "21": 1 } }], ["e1", { "1": { "3": 1 } }], ["etc", { "1": { "2": 1, "6": 3, "7": 1, "8": 1, "10": 3, "11": 2, "12": 1, "22": 1, "24": 1 } }], ["e", { "1": { "1": 4, "3": 2, "4": 1, "6": 2, "7": 2, "8": 1, "9": 1, "10": 2, "15": 1, "23": 4, "24": 4 } }], ["extraction", { "1": { "14": 1, "18": 1 } }], ["external", { "1": { "0": 1, "4": 1, "12": 1, "15": 4, "18": 2, "20": 1 } }], ["extended", { "1": { "5": 1, "6": 1, "7": 1, "12": 1, "16": 1, "17": 3, "20": 3 } }], ["extend", { "1": { "0": 1, "4": 1, "15": 1 } }], ["excel", { "1": { "18": 1 } }], ["excellent", { "1": { "10": 1 } }], ["exception", { "1": { "5": 1 } }], ["existing", { "1": { "4": 1, "6": 1, "7": 1, "21": 2 } }], ["expanded", { "1": { "8": 4 } }], ["expand", { "1": { "8": 1 } }], ["express", { "1": { "6": 1, "10": 1, "11": 4, "24": 9 } }], ["exponential", { "1": { "10": 1 } }], ["exposure", { "1": { "4": 1 } }], ["export", { "1": { "1": 5, "4": 1, "11": 3, "23": 5, "24": 5 } }], ["expired", { "1": { "3": 2 } }], ["expire", { "1": { "3": 2 } }], ["explore", { "1": { "1": 1 } }], ["examples", { "1": { "6": 3, "10": 2, "22": 5 }, "2": { "22": 1, "23": 1, "24": 1 } }], ["example", { "1": { "1": 1, "6": 1, "9": 2, "10": 2, "16": 1, "17": 2, "18": 2, "20": 4, "21": 4, "22": 2, "23": 3, "24": 2 } }], ["executing", { "1": { "15": 2 } }], ["execution`", { "1": { "18": 2 } }], ["execution", { "1": { "0": 3, "2": 1, "4": 1, "5": 2, "6": 2, "7": 1, "12": 4, "16": 1, "18": 10, "19": 2, "20": 5 } }], ["executes", { "1": { "17": 1 } }], ["executed", { "1": { "14": 2, "15": 1, "18": 1 } }], ["execute", { "1": { "0": 3, "3": 1, "4": 3, "18": 2, "19": 1, "20": 3, "23": 1 } }], ["enforces", { "1": { "18": 1 } }], ["enabling", { "1": { "3": 1, "8": 1 } }], ["enabled", { "1": { "18": 2 } }], ["enables", { "1": { "5": 1, "10": 1, "18": 1, "19": 1 } }], ["enable", { "1": { "0": 1, "3": 1, "17": 3, "18": 1 } }], ["entry", { "1": { "2": 1 } }], ["entity", { "1": { "0": 1 } }], ["end`", { "1": { "20": 4 } }], ["ends", { "1": { "5": 1 } }], ["ended", { "1": { "5": 3, "20": 3 } }], ["end", { "1": { "1": 1, "3": 1, "5": 4, "11": 1, "19": 2, "20": 3 } }], ["endpoints", { "1": { "5": 1, "19": 1 } }], ["endpoint", { "1": { "1": 4, "19": 3, "23": 2 } }], ["environment", { "1": { "1": 1, "18": 1, "23": 1, "24": 1 } }], ["env", { "1": { "1": 3, "3": 2, "10": 2, "11": 4, "23": 3, "24": 7 } }], ["b2", { "1": { "20": 2 } }], ["brief", { "1": { "12": 1 } }], ["browser<br", { "1": { "23": 1, "24": 1 } }], ["browsers", { "1": { "10": 2 } }], ["browser", { "1": { "10": 1, "23": 2, "24": 1 } }], ["break", { "1": { "10": 4, "11": 1, "24": 1 } }], ["billing", { "1": { "14": 1 } }], ["bidirectional", { "1": { "10": 1, "24": 1 } }], ["bindings", { "1": { "1": 1, "6": 1 } }], ["b1", { "1": { "3": 1, "20": 2 } }], ["b", { "1": { "3": 3 } }], ["because", { "1": { "24": 1 } }], ["bearer", { "1": { "19": 3, "20": 3, "21": 5 } }], ["been", { "1": { "15": 4 } }], ["being", { "1": { "13": 1 } }], ["between", { "1": { "12": 1 } }], ["benefits", { "1": { "10": 1 } }], ["behind", { "1": { "10": 1, "22": 1 } }], ["behaves", { "1": { "0": 1, "12": 1 } }], ["behavior", { "1": { "0": 2, "1": 1, "12": 1, "15": 1, "16": 2, "17": 1, "18": 1, "23": 1, "24": 1 } }], ["belong", { "1": { "9": 1 } }], ["belongs", { "1": { "7": 1 } }], ["before", { "1": { "5": 1, "9": 1, "11": 2, "12": 1 } }], ["best", { "1": { "4": 1, "14": 1, "15": 1, "22": 1 } }], ["be", { "1": { "3": 1, "6": 1, "9": 1, "11": 1, "12": 1, "13": 2, "14": 3, "17": 3, "19": 1, "20": 1 } }], ["blocks", { "1": { "6": 1, "12": 1, "13": 1, "14": 2, "16": 2 } }], ["blockstartevent", { "1": { "5": 1 } }], ["blockendevent", { "1": { "5": 1 } }], ["blocktype", { "1": { "5": 1, "19": 1, "20": 2 } }], ["blockname", { "1": { "5": 1, "19": 1, "20": 2 } }], ["blockid", { "1": { "5": 2, "19": 2, "20": 4 } }], ["block", { "1": { "1": 1, "5": 7, "7": 2, "8": 1, "9": 1, "13": 2, "15": 1, "16": 11, "19": 2, "20": 6, "23": 1, "24": 1 } }], ["blue", { "1": { "1": 2, "8": 1, "9": 1, "23": 2, "24": 2 } }], ["bg", { "1": { "1": 4, "7": 3, "8": 4, "9": 1, "23": 3, "24": 4 } }], ["boolean", { "1": { "10": 1, "14": 1, "15": 1, "24": 1 } }], ["bottom", { "1": { "7": 1, "8": 1 } }], ["both", { "1": { "6": 1, "11": 1, "18": 1 } }], ["border", { "1": { "1": 2, "7": 2, "8": 3, "23": 2, "24": 2 } }], ["body", { "1": { "1": 2, "6": 3, "7": 2, "8": 1, "11": 3, "14": 1, "20": 2, "21": 2, "23": 2 } }], ["bad", { "1": { "19": 1 } }], ["balanced", { "1": { "17": 1 } }], ["bash", { "1": { "18": 2 } }], ["basic", { "1": { "1": 1, "2": 1, "7": 1, "11": 1, "17": 1 } }], ["base", { "1": { "19": 1 } }], ["baseurl", { "1": { "1": 1, "2": 2, "3": 1, "10": 1, "11": 2, "23": 1, "24": 2 } }], ["based", { "1": { "0": 1, "10": 2, "15": 2, "22": 1 } }], ["backoff", { "1": { "10": 1 } }], ["background", { "1": { "5": 1, "8": 1, "12": 1, "16": 1 } }], ["backends", { "1": { "11": 1, "19": 1 } }], ["backend", { "1": { "0": 1, "1": 5, "2": 1, "4": 1, "6": 1, "7": 2, "15": 3 } }], ["back", { "1": { "0": 1, "4": 1, "7": 1, "20": 1 } }], ["by=slug", { "1": { "21": 3 } }], ["by=slug`", { "1": { "20": 1 } }], ["by", { "1": { "0": 1, "1": 1, "3": 1, "5": 1, "7": 1, "8": 1, "9": 1, "13": 2, "15": 4, "16": 1, "18": 1, "19": 1, "20": 2, "21": 3 } }], ["budget", { "1": { "17": 1 } }], ["but", { "1": { "13": 2 } }], ["button>", { "1": { "1": 1, "8": 3, "11": 1, "23": 1, "24": 2 } }], ["button", { "1": { "0": 2, "6": 1, "8": 2, "14": 2, "24": 1 } }], ["bundler", { "1": { "10": 1, "24": 1 } }], ["builds", { "1": { "23": 1, "24": 1 } }], ["build", { "1": { "0": 1, "1": 1, "23": 1, "24": 1 } }], ["building", { "1": { "0": 1, "6": 2, "8": 1, "10": 1, "11": 1, "22": 2, "23": 1, "24": 2 } }], ["built", { "1": { "0": 2, "15": 1, "17": 1, "18": 5 } }], ["business", { "1": { "0": 1 } }], ["missing", { "1": { "19": 1 } }], ["mismatch", { "1": { "18": 1 } }], ["mismatched", { "1": { "18": 1 } }], ["mini", { "1": { "17": 4 } }], ["min", { "1": { "10": 1 } }], ["minutes", { "1": { "0": 1, "1": 1 } }], ["ms", { "1": { "10": 1 } }], ["msg", { "1": { "1": 3, "6": 3, "7": 3, "8": 3, "10": 15, "11": 3, "14": 1, "20": 1, "23": 5, "24": 18 } }], ["multi", { "1": { "17": 1 } }], ["multiple", { "1": { "0": 1, "8": 1, "9": 1, "12": 1, "15": 1, "17": 2 } }], ["must", { "1": { "10": 2, "13": 2, "14": 1, "18": 1, "23": 1 } }], ["mb", { "1": { "8": 1 } }], ["mt", { "1": { "8": 4 } }], ["mount", { "1": { "23": 1 } }], ["move", { "1": { "12": 1 } }], ["moderate", { "1": { "17": 1 } }], ["modern", { "1": { "10": 1 } }], ["model", { "1": { "12": 3, "15": 1, "16": 3, "17": 21, "18": 13, "21": 2 } }], ["models", { "1": { "5": 1, "17": 2, "18": 2 } }], ["mode", { "1": { "5": 1, "9": 2, "15": 1, "16": 1, "17": 1, "18": 1 } }], ["modes", { "1": { "5": 1, "9": 1, "15": 2, "16": 1, "18": 2 } }], ["most", { "1": { "5": 1, "6": 1, "11": 1, "14": 1, "23": 2 } }], ["more", { "1": { "4": 1, "17": 1 } }], ["monitor", { "1": { "0": 1 } }], ["my", { "1": { "3": 1, "12": 3, "18": 1, "20": 3, "21": 2 } }], ["ml", { "1": { "1": 1, "7": 1, "8": 1 } }], ["md`", { "1": { "12": 1, "17": 1, "18": 1 } }], ["md", { "1": { "1": 1, "12": 5, "15": 1, "17": 3 } }], ["means", { "1": { "9": 1 } }], ["medium", { "1": { "8": 2, "12": 1, "15": 4, "16": 2, "17": 4, "18": 1 } }], ["memoized", { "1": { "6": 1, "23": 1 } }], ["metadata", { "1": { "12": 1, "18": 1 } }], ["meteor", { "1": { "6": 1, "10": 5, "22": 2, "24": 3 } }], ["method", { "1": { "1": 2, "3": 1, "6": 3, "7": 2, "8": 1, "11": 2, "14": 1, "19": 2, "20": 1, "21": 1, "23": 2 } }], ["me", { "1": { "5": 1, "14": 1 } }], ["message`", { "1": { "23": 1 } }], ["messagelist", { "1": { "7": 1 } }], ["messageid", { "1": { "5": 1, "10": 1, "11": 1, "19": 1, "20": 1 } }], ["messagebubble", { "1": { "1": 1, "6": 1, "7": 1, "8": 1, "9": 1 } }], ["message=", { "1": { "1": 1, "6": 1, "7": 1, "8": 1 } }], ["message", { "1": { "0": 2, "1": 12, "2": 3, "3": 5, "4": 1, "5": 3, "6": 18, "7": 10, "8": 9, "9": 8, "10": 11, "11": 5, "12": 9, "13": 1, "14": 27, "16": 26, "17": 9, "18": 8, "19": 4, "20": 9, "21": 4, "23": 17, "24": 11 } }], ["messages", { "0": { "7": 1 }, "1": { "0": 2, "1": 3, "2": 5, "3": 12, "6": 11, "7": 14, "8": 4, "9": 3, "10": 6, "11": 4, "20": 3, "23": 5, "24": 6 } }], ["match", { "1": { "18": 2, "23": 1 } }], ["math", { "1": { "10": 1 } }], ["manipulation", { "1": { "18": 1 } }], ["managing", { "1": { "0": 1 } }], ["managed", { "1": { "10": 7, "13": 1 } }], ["manages", { "1": { "2": 1, "24": 3 } }], ["management", { "1": { "0": 2, "2": 3, "6": 1, "10": 2, "19": 1 } }], ["manage", { "1": { "0": 2, "2": 1, "10": 1, "21": 1 } }], ["making", { "1": { "15": 1 } }], ["make", { "1": { "15": 2 } }], ["makes", { "1": { "11": 1 } }], ["markdown", { "1": { "13": 1, "16": 3 } }], ["may", { "1": { "9": 1, "10": 2, "13": 1, "16": 1, "17": 1, "24": 1 } }], ["maxsteps", { "1": { "15": 1, "16": 1, "17": 4 } }], ["maximum", { "1": { "15": 1, "17": 1 } }], ["maxretries", { "1": { "13": 1 } }], ["maxattempts", { "1": { "10": 2 } }], ["maxprice", { "1": { "4": 3, "15": 1 } }], ["max", { "1": { "1": 1, "5": 1, "10": 1, "14": 1, "15": 1 } }], ["maps", { "1": { "23": 2 } }], ["mapping", { "1": { "16": 2 } }], ["map", { "1": { "1": 2, "6": 3, "7": 2, "8": 3, "9": 2, "16": 1, "23": 2, "24": 2 } }], ["maintains", { "1": { "24": 1 } }], ["mainparts", { "1": { "8": 2 } }], ["main", { "1": { "0": 1, "2": 1, "5": 1, "7": 1, "8": 2, "10": 1, "12": 1, "16": 6 } }], ["dashboard", { "1": { "23": 1 } }], ["dashes`", { "1": { "12": 3 } }], ["dashes", { "1": { "12": 2 } }], ["days", { "1": { "13": 1 } }], ["date", { "1": { "7": 1, "15": 1 } }], ["database", { "1": { "1": 1, "2": 1, "4": 2, "23": 1, "24": 1 } }], ["data", { "1": { "0": 2, "2": 1, "4": 5, "10": 4, "11": 7, "13": 4, "15": 3, "18": 2, "19": 10, "20": 17, "23": 3, "24": 3 } }], ["during", { "1": { "8": 2, "9": 2, "18": 1, "23": 1 } }], ["dynamically", { "1": { "4": 1 } }], ["d1", { "1": { "3": 1 } }], ["d", { "1": { "3": 3, "19": 1, "20": 2, "21": 2, "24": 2 } }], ["db", { "1": { "2": 1, "4": 3, "15": 1, "23": 2, "24": 1 } }], ["dot", { "1": { "13": 1, "15": 1 } }], ["does", { "1": { "12": 1, "15": 1 } }], ["doesn", { "1": { "10": 1, "13": 1, "15": 1, "16": 2, "24": 1 } }], ["don", { "1": { "10": 3, "16": 2, "22": 1 } }], ["done", { "1": { "6": 1, "7": 7, "8": 5, "9": 2, "11": 3, "19": 1, "20": 5 } }], ["doing", { "1": { "9": 1 } }], ["document", { "1": { "14": 4, "15": 1, "18": 3 } }], ["documentation", { "1": { "3": 1, "17": 2, "18": 1 } }], ["docs", { "1": { "0": 4, "1": 3, "2": 3, "6": 10, "10": 2, "11": 5, "12": 6, "15": 1, "17": 4, "20": 1, "22": 2, "23": 3, "24": 3 } }], ["do", { "1": { "0": 1, "3": 1, "4": 1, "14": 2, "15": 1, "20": 3 } }], ["digits", { "1": { "12": 1 } }], ["difference", { "1": { "24": 1 } }], ["different", { "1": { "14": 1, "16": 2, "17": 3, "22": 1 } }], ["differently", { "1": { "7": 1 } }], ["difficult", { "1": { "0": 1 } }], ["dist", { "1": { "24": 1 } }], ["disconnected", { "1": { "10": 2 } }], ["disconnections", { "1": { "10": 1 } }], ["displayed", { "1": { "17": 1 } }], ["displayname", { "1": { "7": 2, "8": 1 } }], ["display", { "1": { "2": 1, "5": 2, "6": 1, "9": 3, "15": 2, "16": 8, "17": 3, "18": 15, "19": 1, "20": 2, "21": 1 } }], ["disabled", { "1": { "1": 1 } }], ["disabled=", { "1": { "1": 2, "11": 1, "23": 2, "24": 1 } }], ["div>", { "1": { "1": 6, "6": 2, "7": 6, "8": 11, "9": 5, "23": 7, "24": 4 } }], ["dive", { "1": { "0": 1, "2": 1 } }], ["directories", { "1": { "18": 1 } }], ["directives", { "1": { "16": 1 } }], ["directive", { "1": { "15": 1, "16": 5 } }], ["directly", { "1": { "3": 1, "4": 1, "5": 1, "10": 1, "14": 1, "19": 2, "20": 1, "23": 1, "24": 1 } }], ["direct", { "1": { "0": 1, "3": 1, "14": 1 } }], ["determines", { "1": { "16": 1 } }], ["deterministically", { "1": { "16": 1 } }], ["deterministic", { "1": { "15": 1, "17": 1 } }], ["details", { "1": { "16": 3, "23": 1, "24": 1 } }], ["details>", { "1": { "7": 1 } }], ["detailed", { "1": { "6": 1 } }], ["descriptive", { "1": { "14": 1 } }], ["description`", { "1": { "21": 1 } }], ["descriptions", { "1": { "15": 1 } }], ["description", { "1": { "5": 2, "9": 1, "12": 6, "13": 14, "14": 14, "15": 16, "16": 3, "17": 10, "18": 30, "19": 3, "20": 4, "21": 5, "23": 4, "24": 1 } }], ["describes", { "1": { "13": 3, "15": 1 } }], ["decided", { "1": { "15": 1 } }], ["decide", { "1": { "15": 1 } }], ["decides", { "1": { "4": 1, "15": 1, "17": 2 } }], ["declarative", { "1": { "12": 1 } }], ["deps", { "1": { "24": 1 } }], ["dependencies", { "1": { "10": 1, "23": 1, "24": 1 } }], ["deploying", { "1": { "22": 1 } }], ["deployments", { "1": { "11": 1 } }], ["deploy", { "1": { "0": 2, "21": 1 } }], ["delay", { "1": { "10": 3 } }], ["delivered", { "1": { "6": 1 } }], ["delta`", { "1": { "20": 3 } }], ["delta", { "1": { "4": 2, "5": 15, "10": 3, "11": 4, "19": 4, "20": 16, "24": 1 } }], ["def456b", { "1": { "20": 1 } }], ["defaults", { "1": { "13": 2, "14": 1, "16": 1 } }], ["default", { "1": { "1": 1, "7": 1, "9": 1, "11": 2, "12": 1, "13": 7, "14": 3, "15": 3, "16": 4, "17": 3, "18": 4, "23": 1 } }], ["definitions", { "1": { "21": 1, "23": 1 } }], ["definition", { "1": { "12": 1, "13": 3, "14": 1, "21": 1 } }], ["defining", { "1": { "0": 1, "4": 1, "12": 1, "15": 1 } }], ["defined", { "1": { "0": 2, "15": 3, "23": 2, "24": 1 } }], ["defines", { "1": { "0": 1, "23": 1 } }], ["define", { "1": { "0": 4, "1": 2, "12": 2, "13": 1, "14": 1, "16": 1, "23": 1, "24": 1 } }], ["demo", { "1": { "1": 2, "5": 1, "11": 1, "20": 2, "24": 1 } }], ["deep", { "1": { "0": 1, "2": 1 } }], ["debugging", { "1": { "2": 1, "3": 1 } }], ["debug", { "1": { "0": 1, "3": 1, "12": 1, "16": 1 } }], ["developers", { "1": { "0": 2 } }], ["pdf", { "1": { "17": 4, "18": 9 } }], ["phone", { "1": { "14": 1 } }], ["phoenix", { "1": { "6": 1, "10": 1, "22": 2, "24": 1 } }], ["pipelines", { "1": { "21": 1 } }], ["pipe", { "1": { "11": 1 } }], ["pending", { "1": { "7": 1, "8": 1 } }], ["permissions", { "1": { "19": 1 } }], ["persona", { "1": { "17": 1 } }], ["persists", { "1": { "13": 2 } }], ["persistence", { "1": { "13": 1 } }], ["persistent", { "1": { "10": 1, "12": 1, "13": 2, "16": 1, "24": 1 } }], ["persist", { "1": { "13": 1 } }], ["per", { "1": { "5": 1, "14": 1 } }], ["plus", { "1": { "6": 1 } }], ["play", { "1": { "7": 1, "8": 1 } }], ["placeholder=", { "1": { "1": 1, "23": 1, "24": 1 } }], ["plan", { "1": { "1": 1, "4": 2, "11": 1, "15": 3, "23": 2, "24": 1 } }], ["platforms", { "1": { "4": 1 } }], ["platform", { "1": { "0": 1, "4": 7, "9": 1, "19": 1, "20": 2, "23": 2, "24": 2 } }], ["purple", { "1": { "8": 1 } }], ["purpose", { "1": { "6": 1, "13": 1, "18": 1 } }], ["pulse", { "1": { "1": 1, "7": 1, "8": 1, "9": 1 } }], ["powerpoint", { "1": { "18": 1 } }], ["policies", { "1": { "12": 2, "13": 3 } }], ["polling", { "1": { "10": 1 } }], ["portable", { "1": { "12": 1 } }], ["populate", { "1": { "6": 1 } }], ["possible", { "1": { "5": 1 } }], ["post", { "1": { "1": 4, "4": 2, "6": 3, "7": 2, "8": 1, "11": 5, "14": 1, "19": 3, "20": 4, "21": 2, "23": 5 } }], ["points", { "1": { "15": 1 } }], ["point", { "1": { "2": 1 } }], ["patch", { "1": { "19": 1, "21": 3 } }], ["patterns", { "1": { "6": 1, "10": 2, "11": 1, "24": 1 } }], ["pattern", { "1": { "6": 1, "10": 6, "11": 3, "20": 1, "23": 1, "24": 1 } }], ["payload", { "1": { "14": 1 } }], ["pauses", { "1": { "4": 1 } }], ["pass", { "1": { "3": 1, "4": 1, "7": 2, "10": 3, "13": 1 } }], ["password", { "1": { "3": 1, "20": 5 } }], ["passed", { "1": { "3": 1, "4": 1, "20": 1 } }], ["parameter", { "1": { "15": 4 } }], ["parameters", { "1": { "12": 1, "15": 9, "17": 3, "18": 1, "19": 1, "23": 2, "24": 1 } }], ["params", { "1": { "10": 1 } }], ["parsing", { "1": { "10": 1 } }], ["parse", { "1": { "10": 2, "24": 1 } }], ["parsed", { "1": { "2": 1, "5": 1, "11": 1, "23": 1, "24": 1 } }], ["partial", { "1": { "8": 2 } }], ["participant", { "1": { "0": 3, "4": 4 } }], ["partrenderer", { "1": { "7": 2, "9": 1 } }], ["part=", { "1": { "7": 3, "8": 2, "9": 4 } }], ["part", { "1": { "1": 3, "6": 5, "7": 27, "8": 26, "9": 9, "20": 1, "23": 5, "24": 3 } }], ["parts", { "1": { "1": 1, "3": 1, "6": 4, "7": 5, "8": 5, "9": 4, "20": 3, "23": 1, "24": 1 } }], ["packages", { "1": { "6": 1, "18": 3 } }], ["package", { "1": { "2": 1, "6": 1 } }], ["page", { "1": { "1": 1, "3": 2, "11": 3, "15": 1, "19": 1, "23": 2 } }], ["p>", { "1": { "1": 1, "6": 1, "7": 1, "8": 1, "23": 1, "24": 1 } }], ["python", { "1": { "18": 2 } }], ["py", { "1": { "1": 2, "23": 2, "24": 3 } }], ["px", { "1": { "1": 2, "23": 2, "24": 3 } }], ["p", { "1": { "1": 2, "7": 3, "8": 8, "9": 3, "23": 4, "24": 3 } }], ["practices", { "1": { "4": 1, "14": 1, "15": 1 } }], ["prices", { "1": { "18": 1 } }], ["price", { "1": { "15": 1 } }], ["primitive", { "1": { "4": 1 } }], ["priority", { "1": { "4": 4, "15": 8, "16": 2, "17": 1, "23": 2 } }], ["prevent", { "1": { "17": 1 } }], ["preventdefault", { "1": { "1": 1, "23": 1, "24": 1 } }], ["prefix", { "1": { "10": 1, "24": 1 } }], ["presentation", { "1": { "18": 1 } }], ["presence", { "1": { "10": 2, "22": 1 } }], ["preserve", { "1": { "7": 1, "20": 1 } }], ["pre>", { "1": { "7": 1, "8": 2 } }], ["pre", { "1": { "6": 1 } }], ["prerequisites", { "1": { "1": 1, "23": 1, "24": 1 } }], ["programmatic", { "1": { "19": 1 } }], ["progress", { "1": { "5": 1, "6": 1, "8": 1, "9": 1, "15": 1, "18": 1 } }], ["professional", { "1": { "17": 1 } }], ["proxy", { "1": { "10": 1 } }], ["proxies", { "1": { "10": 1, "22": 1 } }], ["properties", { "1": { "13": 1, "16": 1 } }], ["property", { "1": { "7": 1, "8": 1, "9": 1, "13": 1, "16": 1 } }], ["properly", { "1": { "3": 1 } }], ["promise", { "1": { "6": 1, "10": 4, "24": 1 } }], ["promise<response>", { "1": { "11": 1 } }], ["promise<void>", { "1": { "6": 2 } }], ["promise<unknown>", { "1": { "4": 1 } }], ["promise<uisessionstate>", { "1": { "2": 1 } }], ["promise<socketlike>", { "1": { "10": 2, "24": 1 } }], ["promise<sessionstate>", { "1": { "2": 1 } }], ["promise<string>", { "1": { "2": 1 } }], ["prompts", { "1": { "0": 1, "12": 5, "13": 1, "15": 3, "17": 2, "21": 6 } }], ["prompt", { "1": { "0": 1, "12": 2, "14": 1, "15": 1, "16": 10, "17": 7, "18": 1, "21": 2 } }], ["productsearch", { "1": { "4": 2 } }], ["products", { "1": { "4": 4, "14": 1, "15": 1 } }], ["product", { "1": { "1": 1, "2": 1, "3": 1, "12": 1, "13": 3, "15": 1, "17": 4, "20": 3 } }], ["production", { "1": { "0": 1 } }], ["pro", { "1": { "1": 2, "2": 1, "3": 1, "11": 1, "13": 1, "20": 3, "24": 1 } }], ["processing", { "1": { "8": 1, "16": 1, "17": 2, "18": 5 } }], ["process", { "1": { "1": 2, "3": 2, "8": 1, "10": 2, "11": 4, "23": 2, "24": 6 } }], ["projects", { "1": { "12": 1 } }], ["project", { "1": { "1": 1, "19": 1, "21": 1 } }], ["provide", { "1": { "12": 1, "13": 2 } }], ["provided", { "1": { "7": 1, "10": 5, "12": 2, "13": 3, "14": 1, "21": 1 } }], ["provides", { "1": { "2": 1, "6": 2, "7": 1, "8": 1, "18": 1, "21": 1, "22": 1 } }], ["provider", { "0": { "18": 1 }, "1": { "0": 1, "12": 3, "15": 5, "17": 6, "18": 15 } }], ["providing", { "1": { "0": 1 } }], ["protocolyaml", { "1": { "21": 1 } }], ["protocols", { "1": { "0": 2, "6": 1, "12": 3, "21": 1 } }], ["protocol", { "1": { "0": 4, "1": 2, "4": 1, "9": 1, "10": 1, "11": 1, "12": 9, "15": 2, "17": 1, "18": 1, "21": 7, "23": 11, "24": 7 }, "2": { "12": 1, "13": 1, "14": 1, "15": 1, "16": 1, "17": 1, "18": 1 } }], ["problems", { "1": { "0": 1 } }], ["word", { "1": { "18": 1 } }], ["works", { "1": { "10": 1, "17": 1, "24": 1 } }], ["working", { "1": { "1": 1, "6": 2, "11": 1 } }], ["work", { "1": { "0": 1, "5": 1 } }], ["won", { "1": { "9": 1 } }], ["ws", { "1": { "6": 4, "10": 4 } }], ["wrapped", { "1": { "19": 1 } }], ["writing", { "1": { "13": 1 } }], ["written", { "1": { "12": 1, "13": 1 } }], ["write", { "1": { "5": 1, "10": 2, "11": 1, "12": 1, "13": 3, "24": 3 } }], ["wrong<", { "1": { "8": 1 } }], ["wrong", { "1": { "5": 1, "10": 1 } }], ["well", { "1": { "22": 1 } }], ["we", { "1": { "19": 1 } }], ["weather", { "1": { "18": 1 } }], ["went", { "1": { "5": 1, "8": 1, "10": 1 } }], ["websocket", { "1": { "6": 6, "10": 7, "24": 1 } }], ["web", { "1": { "0": 1, "10": 1, "11": 1, "15": 1, "17": 4, "18": 10, "22": 1, "23": 1 } }], ["w", { "1": { "1": 2, "7": 1, "8": 1, "9": 1 } }], ["which", { "1": { "16": 1 } }], ["while", { "1": { "8": 1, "11": 1, "15": 2 } }], ["white", { "1": { "1": 2, "23": 2, "24": 3 } }], ["where", { "1": { "4": 1, "5": 1, "10": 1, "23": 1 } }], ["when", { "1": { "3": 1, "4": 2, "5": 1, "6": 4, "7": 1, "8": 3, "9": 1, "10": 10, "11": 1, "12": 2, "13": 4, "14": 4, "15": 5, "16": 1, "18": 3, "20": 1, "22": 2, "23": 1, "24": 1 } }], ["why", { "1": { "4": 1, "12": 1, "14": 1 } }], ["what", { "1": { "0": 2, "1": 1, "4": 1, "9": 1, "12": 2, "13": 2, "14": 1, "15": 3, "16": 1, "23": 1, "24": 1 } }], ["want", { "1": { "22": 1 } }], ["wants", { "1": { "14": 1 } }], ["waiting", { "1": { "5": 1 } }], ["watchers`", { "1": { "3": 1 } }], ["watchers", { "1": { "3": 1 } }], ["walks", { "1": { "22": 1 } }], ["walkthrough", { "1": { "10": 1 } }], ["walk", { "1": { "1": 1 } }], ["way", { "1": { "0": 1 } }], ["widget", { "1": { "1": 1, "2": 1, "3": 1, "13": 1, "20": 3 } }], ["will", { "1": { "1": 1, "17": 1, "18": 2 } }], ["within", { "1": { "13": 1 } }], ["without", { "1": { "6": 1, "9": 1, "11": 1, "17": 1 } }], ["with", { "1": { "0": 4, "1": 4, "2": 2, "3": 5, "4": 3, "5": 3, "6": 5, "7": 1, "8": 2, "10": 9, "11": 4, "12": 11, "13": 5, "14": 3, "15": 1, "16": 1, "17": 2, "18": 2, "20": 7, "22": 1, "23": 5, "24": 3 } }], ["false", { "1": { "14": 2, "15": 1, "16": 2 } }], ["fallback", { "1": { "10": 1 } }], ["fallbacks", { "1": { "10": 1 } }], ["fail", { "1": { "10": 1, "17": 1, "18": 1 } }], ["failed", { "1": { "5": 1, "6": 1, "7": 1, "8": 2, "10": 3, "20": 1, "24": 1 } }], ["failure", { "1": { "5": 1 } }], ["failures", { "1": { "4": 1 } }], ["fact", { "1": { "18": 1 } }], ["factual", { "1": { "17": 1 } }], ["facing", { "1": { "3": 1, "5": 1 } }], ["face", { "1": { "0": 1 } }], ["fields", { "1": { "15": 2, "20": 2, "21": 2 } }], ["field", { "1": { "12": 1, "13": 3, "15": 2, "17": 1, "18": 2, "19": 1, "20": 3, "21": 1 } }], ["filling", { "1": { "18": 1 } }], ["files", { "1": { "18": 1, "21": 1 } }], ["filename", { "1": { "17": 1 } }], ["file", { "1": { "12": 1, "14": 3, "16": 1, "18": 1 } }], ["filtered", { "1": { "5": 2, "9": 1 } }], ["filter", { "1": { "5": 1, "8": 2, "9": 1, "14": 1, "15": 2 } }], ["fires", { "1": { "16": 1 } }], ["fire", { "1": { "12": 1 } }], ["first", { "1": { "0": 1, "3": 1, "10": 4, "24": 1 } }], ["finalized", { "1": { "8": 1 } }], ["finalize", { "1": { "6": 1, "8": 1 } }], ["finally", { "1": { "4": 1, "11": 1 } }], ["finishevent", { "1": { "5": 1 } }], ["finishreason", { "1": { "5": 1, "10": 1, "11": 1, "19": 1, "20": 1 } }], ["finish", { "1": { "5": 3, "10": 2, "11": 1, "19": 1, "20": 1, "24": 1 } }], ["findunique", { "1": { "23": 1 } }], ["find", { "1": { "4": 1, "24": 1 } }], ["findbyid", { "1": { "2": 1, "4": 3, "15": 1 } }], ["feedback", { "1": { "14": 3 } }], ["feature", { "1": { "10": 1 } }], ["features", { "1": { "1": 1, "2": 1, "6": 2, "12": 1, "17": 1, "18": 3 } }], ["fetched", { "1": { "10": 1 } }], ["fetch", { "1": { "1": 3, "4": 1, "6": 3, "7": 4, "8": 1, "11": 2, "14": 1, "23": 4, "24": 2 } }], ["flexibility", { "1": { "6": 1 } }], ["flex", { "1": { "1": 5, "8": 1, "9": 3, "23": 5, "24": 5 } }], ["flows", { "1": { "12": 1 } }], ["flowchart", { "1": { "3": 1, "23": 1, "24": 1 } }], ["flow", { "1": { "0": 1, "4": 1 } }], ["functional", { "1": { "22": 1 } }], ["functions", { "1": { "4": 1 } }], ["function", { "1": { "1": 6, "2": 1, "4": 1, "6": 6, "7": 9, "8": 8, "9": 5, "10": 8, "11": 6, "14": 1, "23": 4, "24": 5 } }], ["full", { "1": { "0": 1, "1": 1, "2": 2, "3": 1, "4": 2, "9": 1, "10": 2, "11": 1, "17": 2, "18": 1 } }], ["friendly", { "1": { "17": 1 } }], ["from", { "1": { "1": 10, "2": 2, "3": 3, "4": 2, "5": 1, "6": 6, "7": 8, "8": 7, "9": 2, "10": 14, "11": 9, "13": 1, "14": 6, "15": 1, "16": 1, "20": 1, "22": 1, "23": 11, "24": 15 } }], ["frontend", { "1": { "1": 2, "2": 1, "3": 2, "4": 1, "5": 1, "6": 1, "19": 1, "24": 2 } }], ["framework", { "1": { "6": 4, "10": 1 } }], ["frameworks", { "1": { "0": 1, "6": 1, "10": 1, "11": 1, "19": 1, "22": 2, "24": 1 } }], ["fragmented", { "1": { "0": 1 } }], ["follow", { "1": { "18": 1 } }], ["folder", { "1": { "12": 1 } }], ["font", { "1": { "8": 2 } }], ["found", { "1": { "1": 1, "3": 1, "4": 1, "5": 1, "19": 3 } }], ["forwards", { "1": { "24": 1 } }], ["forbidden", { "1": { "19": 1 } }], ["force", { "1": { "15": 1 } }], ["format`", { "1": { "21": 1 } }], ["format", { "1": { "2": 2, "3": 3, "11": 3, "12": 1, "13": 1, "16": 2, "17": 1, "19": 2, "21": 5, "23": 1 } }], ["form>", { "1": { "1": 1, "23": 1, "24": 1 } }], ["formevent", { "1": { "1": 1, "23": 1, "24": 1 } }], ["form", { "1": { "0": 1, "14": 1, "18": 1 } }], ["for", { "1": { "0": 3, "1": 3, "2": 9, "3": 5, "4": 4, "5": 5, "6": 6, "7": 4, "9": 1, "10": 7, "11": 3, "12": 3, "13": 4, "14": 4, "15": 3, "16": 9, "17": 4, "18": 3, "19": 3, "20": 3, "21": 2, "22": 2, "23": 2, "24": 5 } }], ["focused", { "1": { "14": 2 } }], ["focus", { "1": { "0": 1 } }], ["cd", { "1": { "21": 1 } }], ["ci", { "1": { "21": 1 } }], ["cm5xyz123abc456def", { "1": { "20": 2 } }], ["cm5xvz7k80001abcd", { "1": { "20": 3, "21": 4 } }], ["cycles", { "1": { "15": 1, "17": 2 } }], ["center", { "1": { "8": 1, "9": 3 } }], ["choosing", { "1": { "22": 1 } }], ["checking", { "1": { "9": 1 } }], ["check", { "1": { "4": 1, "7": 1, "11": 1 } }], ["changed", { "1": { "20": 1 } }], ["changes", { "1": { "6": 3, "8": 1, "10": 2, "12": 1 } }], ["chart", { "1": { "18": 1 } }], ["chatstatus", { "1": { "6": 2, "8": 1 } }], ["chatmessage", { "1": { "2": 1, "3": 1 } }], ["chatpage", { "1": { "1": 1, "10": 1, "11": 2, "23": 1 } }], ["chatprops", { "1": { "1": 2, "7": 2, "23": 2 } }], ["chat", { "0": { "23": 1, "24": 1 }, "1": { "0": 2, "1": 10, "3": 2, "4": 1, "5": 1, "6": 6, "7": 2, "8": 1, "10": 7, "11": 9, "12": 1, "13": 1, "14": 4, "16": 3, "21": 8, "22": 5, "23": 12, "24": 8 } }], ["challenges", { "1": { "0": 1 } }], ["c1", { "1": { "3": 1 } }], ["c", { "1": { "3": 7 } }], ["creative", { "1": { "17": 3 } }], ["creation", { "1": { "10": 1, "11": 2, "13": 2, "15": 1, "18": 2 } }], ["creating", { "1": { "3": 1, "9": 1, "12": 1, "13": 2 } }], ["createdby", { "1": { "4": 1 } }], ["created", { "1": { "3": 1, "4": 1, "10": 1, "11": 1, "15": 4, "19": 2, "21": 4 } }], ["createdat", { "1": { "2": 1, "3": 2, "4": 2, "7": 1, "15": 2, "20": 3, "21": 1 } }], ["createhttptransport", { "1": { "1": 2, "6": 7, "7": 4, "8": 2, "11": 2, "14": 2, "23": 2 } }], ["createserver", { "1": { "10": 1, "24": 2 } }], ["createsession", { "1": { "1": 2, "10": 1 } }], ["createsockethandler", { "1": { "10": 2, "24": 3 } }], ["createsockettransport", { "1": { "6": 3, "10": 9, "24": 3 } }], ["creates", { "1": { "1": 1, "6": 2, "10": 4, "21": 1, "23": 1 } }], ["create", { "1": { "1": 14, "2": 5, "3": 6, "4": 9, "6": 1, "10": 2, "11": 3, "13": 3, "15": 12, "16": 7, "17": 4, "18": 1, "19": 2, "20": 2, "21": 2, "23": 12, "24": 7 } }], ["curl", { "1": { "19": 2, "20": 3, "21": 5 } }], ["current++", { "1": { "10": 1 } }], ["current", { "1": { "2": 1, "6": 3, "8": 3, "10": 4, "13": 1, "18": 5 } }], ["customer", { "1": { "21": 3 } }], ["custom", { "1": { "0": 1, "1": 1, "4": 1, "6": 3, "10": 4, "11": 1, "13": 1, "18": 10, "22": 1, "24": 7 } }], ["close", { "1": { "10": 1, "24": 1 } }], ["clear", { "1": { "14": 3, "15": 2 } }], ["cleartimeout", { "1": { "4": 1 } }], ["cleaner", { "1": { "11": 1 } }], ["cleanest", { "1": { "10": 2 } }], ["cleanup", { "1": { "6": 1 } }], ["claude", { "1": { "5": 1, "12": 1, "15": 1, "16": 2, "17": 10, "18": 5, "21": 2 } }], ["class", { "1": { "2": 3, "6": 3 } }], ["classname=", { "1": { "1": 9, "7": 10, "8": 18, "9": 8, "23": 10, "24": 8 } }], ["click", { "1": { "6": 1 } }], ["clicks", { "1": { "0": 2, "9": 1, "12": 1, "14": 2 } }], ["client`", { "1": { "10": 1, "24": 2 } }], ["client", { "1": { "0": 3, "1": 6, "2": 5, "3": 13, "4": 2, "5": 1, "6": 14, "7": 3, "8": 1, "9": 2, "10": 23, "11": 9, "13": 2, "14": 1, "15": 1, "19": 2, "20": 1, "21": 1, "23": 5, "24": 16 }, "2": { "6": 1, "7": 1, "8": 1, "9": 1, "10": 1, "11": 1 } }], ["calculations", { "1": { "18": 1 } }], ["call`", { "1": { "20": 1 } }], ["calling", { "1": { "17": 1, "19": 1 } }], ["called", { "1": { "8": 1, "14": 1 } }], ["callback", { "1": { "6": 1, "14": 2 } }], ["callbacks", { "1": { "6": 1, "7": 1, "13": 1 } }], ["call", { "1": { "0": 2, "1": 1, "4": 3, "5": 1, "6": 2, "7": 2, "8": 1, "9": 1, "13": 1, "15": 6, "16": 7, "17": 4, "20": 1, "23": 2 } }], ["calls", { "1": { "0": 1, "4": 2, "5": 1, "8": 1, "9": 1, "12": 1, "15": 2, "17": 1, "20": 1, "23": 1 } }], ["caching", { "1": { "10": 1 } }], ["cached", { "1": { "13": 1 } }], ["cache", { "1": { "1": 2, "5": 2, "11": 4, "23": 2 } }], ["cases", { "1": { "18": 2 } }], ["case`", { "1": { "12": 1, "13": 1, "14": 1, "15": 1 } }], ["case", { "1": { "6": 5, "7": 4, "8": 7, "9": 4, "10": 4, "11": 1, "17": 1 } }], ["caught", { "1": { "5": 1 } }], ["captured", { "1": { "4": 1, "5": 1 } }], ["capabilities", { "1": { "0": 1, "12": 1, "18": 2 } }], ["catalog", { "1": { "15": 1 } }], ["category", { "1": { "4": 3, "14": 1, "15": 2 } }], ["catch", { "1": { "3": 1, "10": 2, "12": 1, "24": 1 } }], ["cannot", { "1": { "13": 1, "14": 1 } }], ["cancel", { "1": { "11": 1, "14": 1 } }], ["can", { "1": { "0": 3, "3": 2, "4": 2, "5": 1, "6": 1, "9": 2, "10": 1, "12": 3, "13": 3, "14": 1, "15": 2, "17": 4, "18": 2, "19": 1, "20": 3 } }], ["copy", { "1": { "20": 1 } }], ["covers", { "1": { "15": 1 } }], ["couldn", { "1": { "4": 1 } }], ["corresponding", { "1": { "14": 2 } }], ["corp", { "1": { "1": 1, "2": 1, "3": 1, "10": 1, "11": 2, "13": 1, "20": 3, "23": 2, "24": 1 } }], ["core", { "1": { "0": 1, "6": 1, "24": 1 } }], ["collapse", { "1": { "8": 1 } }], ["col", { "1": { "1": 1, "23": 1, "24": 1 } }], ["comment", { "1": { "14": 3 } }], ["communication", { "1": { "6": 1, "10": 1, "24": 1 } }], ["common", { "1": { "5": 2, "9": 1, "14": 1, "23": 1 } }], ["compatible", { "1": { "11": 1 } }], ["compatibility", { "1": { "10": 1 } }], ["compact", { "1": { "9": 1 } }], ["company", { "1": { "1": 1, "2": 1, "3": 1, "10": 1, "11": 2, "12": 2, "13": 5, "16": 3, "17": 4, "18": 2, "20": 3, "21": 4, "23": 2, "24": 1 } }], ["completion", { "1": { "5": 1, "8": 1 } }], ["completed", { "1": { "5": 2, "7": 1, "8": 1, "20": 2 } }], ["complete", { "1": { "3": 1, "5": 1, "6": 1, "10": 1, "11": 1, "16": 1, "20": 2, "22": 1 } }], ["complexity", { "1": { "0": 1, "4": 1, "10": 1, "17": 1 } }], ["complex", { "1": { "0": 1, "13": 1, "17": 2 } }], ["components", { "1": { "1": 2, "11": 2, "23": 2, "24": 1 } }], ["component", { "1": { "1": 1, "10": 2, "11": 1, "23": 1, "24": 1 } }], ["com", { "1": { "1": 1, "6": 1, "10": 1, "20": 1 } }], ["codes", { "1": { "19": 1 } }], ["code", { "1": { "0": 1, "3": 1, "10": 1, "18": 9, "19": 2, "23": 1 } }], ["codebases", { "1": { "0": 1 } }], ["conditionally", { "1": { "10": 1 } }], ["conventions", { "1": { "5": 1, "12": 1 } }], ["converts", { "1": { "11": 1, "23": 1 } }], ["converting", { "1": { "9": 1 } }], ["convert", { "1": { "1": 1, "2": 2, "3": 1, "5": 1, "14": 1, "16": 1 } }], ["conversation`", { "1": { "3": 1 } }], ["conversation", { "1": { "0": 2, "3": 3, "5": 1, "7": 2, "8": 1, "9": 2, "12": 1, "13": 8, "14": 1, "15": 1, "16": 19, "17": 1, "20": 2, "23": 1 } }], ["conversations", { "1": { "0": 1, "3": 1, "20": 1 } }], ["connectsocket", { "1": { "10": 4, "24": 3 } }], ["connect", { "1": { "6": 1, "10": 9, "24": 2 } }], ["connections", { "1": { "6": 1, "10": 1 } }], ["connection", { "1": { "1": 1, "5": 1, "6": 1, "10": 7, "11": 2, "23": 1, "24": 6 } }], ["connecting", { "1": { "0": 1, "10": 1 } }], ["conn", { "1": { "5": 1, "10": 7, "24": 6 } }], ["configuration", { "1": { "10": 1, "12": 1, "13": 1, "17": 2, "18": 2 } }], ["configurable", { "1": { "3": 1 } }], ["configured", { "1": { "18": 2, "23": 1 } }], ["configures", { "1": { "17": 1 } }], ["configure", { "1": { "3": 2, "18": 1, "23": 1, "24": 1 } }], ["config", { "0": { "17": 1 }, "1": { "2": 1, "12": 2, "13": 1, "17": 3 } }], ["consistent", { "1": { "17": 1 } }], ["consider", { "1": { "11": 1 } }], ["console", { "1": { "3": 5, "4": 2, "6": 2, "7": 3, "8": 2, "10": 2, "11": 1, "13": 1, "14": 1, "21": 2, "24": 2 } }], ["constrained", { "1": { "15": 1 } }], ["constructor", { "1": { "2": 1, "6": 1 } }], ["const", { "1": { "1": 18, "2": 5, "3": 8, "4": 21, "5": 2, "6": 13, "7": 6, "8": 7, "9": 1, "10": 26, "11": 19, "13": 1, "14": 4, "15": 4, "21": 1, "23": 18, "24": 25 } }], ["consumers", { "1": { "13": 1 } }], ["consumer", { "1": { "0": 1, "13": 4 } }], ["context", { "1": { "4": 5, "13": 1 } }], ["content", { "1": { "1": 4, "2": 1, "3": 2, "5": 6, "6": 9, "7": 7, "8": 6, "10": 1, "11": 5, "14": 3, "16": 4, "17": 1, "19": 1, "20": 6, "21": 8, "23": 5, "24": 1 } }], ["container", { "1": { "18": 5 } }], ["contained", { "1": { "0": 1 } }], ["containing", { "1": { "13": 1 } }], ["contain", { "1": { "6": 1, "7": 1, "16": 1, "18": 1, "20": 1 } }], ["contains", { "1": { "3": 1, "15": 1, "23": 1 } }], ["continuation", { "1": { "2": 1, "20": 3 } }], ["continue", { "1": { "0": 1, "4": 1 } }], ["controls", { "1": { "10": 1 } }], ["controller", { "1": { "4": 3 } }], ["control", { "1": { "0": 1, "1": 1, "4": 1, "5": 1, "10": 2, "11": 2, "17": 1, "23": 1 } }], ["concepts", { "1": { "0": 1 } }], ["src", { "1": { "24": 2 } }], ["skill", { "1": { "18": 9 } }], ["skills", { "1": { "17": 4, "18": 22 } }], ["share", { "1": { "17": 1 } }], ["showtoast", { "1": { "10": 1, "24": 1 } }], ["show", { "1": { "8": 3, "11": 1, "15": 2, "16": 3, "18": 1 } }], ["showing", { "1": { "6": 1 } }], ["shows", { "1": { "5": 2, "15": 2, "16": 2, "18": 2, "23": 1 } }], ["shown", { "1": { "5": 1, "9": 1, "15": 1, "16": 3, "18": 3 } }], ["shouldn", { "1": { "16": 1 } }], ["should", { "1": { "5": 1, "6": 1, "11": 2, "14": 2 } }], ["sync", { "1": { "21": 2 } }], ["synced", { "1": { "13": 3 } }], ["syntax", { "1": { "15": 1 } }], ["systemprompt", { "1": { "21": 1 } }], ["system", { "1": { "1": 1, "4": 1, "12": 5, "13": 2, "15": 2, "16": 4, "17": 17, "18": 6, "21": 10 } }], ["systems", { "1": { "0": 1 } }], ["snake", { "1": { "12": 1, "13": 1, "14": 1, "15": 1 } }], ["sm", { "1": { "7": 4, "8": 2, "9": 3, "23": 1 } }], ["silence", { "1": { "24": 1 } }], ["silently", { "1": { "15": 1 } }], ["single", { "1": { "21": 1 } }], ["similar", { "1": { "11": 1, "22": 1, "24": 1 } }], ["simplest", { "1": { "11": 1, "22": 1 } }], ["simple", { "1": { "10": 1, "16": 1, "17": 1 } }], ["side", { "1": { "6": 1, "7": 1, "11": 3, "15": 1, "18": 4, "23": 1, "24": 2 } }], ["signal", { "1": { "4": 2, "10": 1, "24": 1 } }], ["signature", { "1": { "4": 1 } }], ["significant", { "1": { "0": 1 } }], ["switch", { "1": { "6": 1, "7": 1, "8": 2, "9": 1, "10": 1 } }], ["svelte", { "1": { "6": 1 } }], ["screen", { "1": { "23": 1, "24": 1 } }], ["scratch", { "1": { "22": 1 } }], ["scripts", { "1": { "18": 1 } }], ["script", { "1": { "18": 1 } }], ["scroll", { "1": { "7": 1, "8": 1 } }], ["scope", { "1": { "13": 1 } }], ["scoping", { "1": { "13": 1 } }], ["scenarios", { "1": { "5": 1 } }], ["scattered", { "1": { "0": 1 } }], ["safe", { "1": { "12": 1, "21": 1 } }], ["safely", { "1": { "9": 1 } }], ["save", { "1": { "9": 1, "13": 1, "16": 4 } }], ["sandboxed", { "1": { "18": 2 } }], ["sandbox", { "1": { "4": 1 } }], ["same", { "1": { "0": 1, "10": 1 } }], ["s", { "1": { "1": 1, "3": 2, "7": 1, "8": 1, "9": 1, "10": 1, "12": 1, "13": 2, "14": 1, "15": 3, "16": 1, "17": 2, "18": 2, "19": 1, "20": 2, "23": 7, "24": 2 } }], ["spreadsheet", { "1": { "18": 3 } }], ["specialized", { "1": { "18": 1 } }], ["special", { "1": { "11": 1 } }], ["specified", { "1": { "7": 1 } }], ["specifies", { "1": { "5": 1 } }], ["specifically", { "1": { "6": 1 } }], ["specific", { "1": { "2": 1, "4": 1, "5": 1, "6": 1, "10": 1, "12": 1, "14": 1, "15": 2, "16": 1, "17": 4, "18": 3 } }], ["specifying", { "1": { "3": 1 } }], ["specify", { "1": { "0": 1, "12": 1, "17": 1 } }], ["spin", { "1": { "8": 1 } }], ["span>", { "1": { "7": 1, "8": 6, "9": 6 } }], ["space", { "1": { "1": 1, "7": 1, "9": 1, "23": 1, "24": 1 } }], ["sse", { "1": { "1": 1, "2": 2, "3": 1, "5": 2, "6": 3, "10": 3, "11": 4, "14": 1, "19": 2, "20": 1, "22": 2, "23": 3 } }], ["slug`", { "1": { "21": 1 } }], ["slugs", { "1": { "12": 1 } }], ["slug", { "1": { "1": 1, "12": 1, "20": 2, "21": 10 } }], ["sdk`", { "1": { "2": 1, "6": 2, "19": 2 } }], ["sdk", { "1": { "0": 5, "1": 8, "2": 8, "3": 5, "4": 7, "5": 6, "6": 12, "7": 1, "8": 1, "10": 2, "11": 6, "13": 1, "14": 4, "19": 3, "20": 4, "21": 1, "23": 5, "24": 4 }, "2": { "2": 1, "3": 1, "4": 1, "5": 1, "6": 1, "7": 1, "8": 1, "9": 1, "10": 1, "11": 1 } }], ["sdks", { "1": { "0": 1, "1": 1, "19": 3 } }], ["survive", { "1": { "13": 1 } }], ["suitable", { "1": { "10": 1 } }], ["summarizing", { "1": { "16": 1 } }], ["summarize", { "1": { "14": 1, "16": 2 } }], ["summarization", { "1": { "8": 1, "16": 2 } }], ["summary>", { "1": { "7": 1 } }], ["summary", { "1": { "4": 8, "5": 2, "7": 3, "8": 1, "9": 1, "12": 4, "13": 14, "14": 1, "15": 7, "16": 30, "17": 5, "20": 1, "23": 2 } }], ["successfully", { "1": { "21": 2 } }], ["success", { "1": { "5": 1, "19": 3 } }], ["subscribe", { "1": { "6": 3 } }], ["subscription", { "1": { "4": 1, "6": 1, "14": 1, "15": 2 } }], ["submits", { "1": { "14": 1 } }], ["submit", { "1": { "1": 1, "14": 2, "23": 1, "24": 1 } }], ["submissions", { "1": { "0": 1 } }], ["supports", { "1": { "15": 1, "24": 2 } }], ["supported", { "1": { "5": 1, "13": 2, "15": 1 } }], ["support", { "1": { "0": 1, "1": 2, "3": 2, "4": 2, "9": 1, "10": 2, "12": 3, "13": 6, "14": 3, "15": 11, "16": 3, "17": 4, "18": 1, "21": 13, "22": 1, "23": 2, "24": 1 } }], ["step", { "1": { "16": 8, "17": 1, "23": 7, "24": 7 } }], ["steps", { "1": { "0": 1, "2": 1, "6": 1, "11": 1, "12": 1, "17": 1, "23": 1, "24": 1 } }], ["stock", { "1": { "15": 1 } }], ["stop", { "1": { "5": 2, "6": 6, "8": 9, "10": 5, "11": 6, "19": 1, "20": 1, "24": 7 } }], ["stores", { "1": { "13": 2 } }], ["stored", { "1": { "4": 2, "13": 1, "15": 2, "16": 1 } }], ["store", { "1": { "0": 1, "3": 1, "15": 2, "16": 3, "20": 1 } }], ["structure", { "1": { "7": 1, "9": 1, "12": 2, "14": 1, "16": 1 } }], ["structured", { "1": { "3": 1, "7": 1 } }], ["stringify", { "1": { "1": 2, "5": 1, "6": 3, "7": 2, "8": 2, "10": 3, "11": 2, "14": 1, "23": 2, "24": 3 } }], ["string", { "1": { "1": 2, "2": 14, "3": 2, "4": 7, "6": 6, "7": 17, "8": 1, "9": 4, "10": 12, "11": 3, "12": 6, "13": 8, "14": 14, "15": 10, "17": 9, "18": 4, "20": 2, "21": 8, "23": 7, "24": 8 } }], ["stream`", { "1": { "20": 1 } }], ["streamevent", { "1": { "5": 2 } }], ["streams", { "1": { "1": 1, "5": 1, "7": 1, "8": 1, "11": 1, "15": 1, "16": 1, "17": 1, "18": 1, "23": 1 } }], ["stream", { "1": { "0": 2, "1": 2, "2": 6, "3": 3, "4": 1, "5": 10, "6": 2, "7": 1, "8": 3, "10": 2, "11": 7, "14": 1, "16": 4, "19": 1, "20": 3, "23": 1 } }], ["streaming", { "0": { "5": 1, "8": 1 }, "1": { "0": 1, "1": 4, "2": 5, "5": 4, "6": 8, "7": 4, "8": 17, "10": 2, "11": 10, "16": 1, "19": 2, "20": 2, "23": 8, "24": 4 } }], ["standard", { "1": { "10": 1, "11": 2, "18": 1, "22": 1 } }], ["stable", { "1": { "1": 1, "6": 1, "10": 1, "24": 1 } }], ["static", { "1": { "24": 1 } }], ["states", { "1": { "8": 2 } }], ["state`", { "1": { "3": 2 } }], ["state", { "1": { "2": 3, "3": 10, "4": 1, "6": 5, "8": 2, "11": 2, "13": 3, "19": 1, "20": 1, "23": 1 } }], ["stateful", { "1": { "0": 2, "3": 1 } }], ["statusindicator", { "1": { "8": 1 } }], ["statusbadge", { "1": { "8": 1 } }], ["status=", { "1": { "8": 1 } }], ["status", { "1": { "1": 4, "3": 1, "4": 1, "6": 8, "7": 9, "8": 24, "9": 5, "10": 2, "11": 6, "19": 1, "20": 4, "23": 6, "24": 6 } }], ["start`", { "1": { "20": 4 } }], ["startevent", { "1": { "5": 1 } }], ["started", { "1": { "0": 1, "5": 5, "11": 1, "20": 4 }, "2": { "0": 1, "1": 1 } }], ["start", { "0": { "1": 1 }, "1": { "0": 1, "1": 2, "4": 1, "5": 5, "10": 2, "11": 2, "16": 5, "17": 2, "19": 3, "20": 4 } }], ["several", { "1": { "18": 1 } }], ["sequence", { "1": { "16": 1 } }], ["sequencediagram", { "1": { "0": 1, "4": 1 } }], ["section", { "1": { "15": 1, "17": 1, "22": 1 } }], ["sess", { "1": { "11": 1, "19": 1 } }], ["sessionattachoptions", { "1": { "2": 1 } }], ["sessionid=$", { "1": { "6": 1, "10": 1 } }], ["sessionid=", { "1": { "1": 1, "10": 1, "11": 2, "23": 1 } }], ["sessionid", { "1": { "1": 13, "2": 7, "3": 13, "4": 2, "6": 8, "7": 9, "8": 4, "10": 24, "11": 15, "13": 1, "14": 4, "15": 1, "19": 1, "20": 5, "23": 14, "24": 3 } }], ["sessions`", { "1": { "19": 1 } }], ["sessionstate", { "1": { "2": 1 } }], ["sessions", { "0": { "3": 1, "20": 1 }, "1": { "0": 2, "1": 1, "2": 4, "3": 5, "4": 1, "10": 7, "11": 2, "19": 4, "20": 8, "23": 4, "24": 3 } }], ["session", { "1": { "0": 2, "1": 7, "2": 16, "3": 23, "4": 5, "5": 1, "6": 1, "7": 4, "10": 26, "11": 9, "12": 1, "13": 5, "14": 1, "15": 1, "19": 4, "20": 6, "23": 6, "24": 7 } }], ["separate", { "1": { "8": 1, "16": 2 } }], ["separately", { "1": { "8": 1 } }], ["serializing", { "1": { "9": 1 } }], ["serialized", { "1": { "13": 2, "15": 2 } }], ["serialize", { "1": { "7": 1, "9": 2, "13": 2, "14": 1, "16": 6 } }], ["serializable", { "1": { "4": 1 } }], ["serve", { "1": { "24": 1 } }], ["server<br", { "1": { "24": 1 } }], ["serverless", { "1": { "11": 1, "22": 1 } }], ["servers", { "1": { "0": 1 } }], ["server", { "1": { "0": 4, "1": 8, "2": 9, "3": 3, "4": 5, "5": 2, "6": 1, "7": 1, "10": 24, "11": 10, "14": 2, "15": 1, "18": 4, "19": 4, "20": 2, "21": 1, "23": 7, "24": 26 }, "2": { "2": 1, "3": 1, "4": 1, "5": 1 } }], ["service", { "1": { "0": 1 } }], ["sentiment", { "1": { "14": 1 } }], ["sent", { "1": { "4": 2, "5": 1, "9": 1, "11": 1, "19": 1, "20": 1 } }], ["sensitive", { "1": { "4": 1 } }], ["sends", { "1": { "10": 1, "14": 3, "23": 1, "24": 1 } }], ["sending", { "1": { "7": 1, "23": 1 } }], ["sendmessage", { "1": { "6": 1, "10": 1, "11": 2, "24": 4 } }], ["send", { "1": { "1": 3, "6": 10, "7": 2, "8": 1, "10": 6, "11": 6, "14": 5, "20": 1, "23": 5, "24": 4 } }], ["sees", { "1": { "5": 1, "16": 2 } }], ["see", { "1": { "3": 1, "6": 1, "10": 2, "11": 1, "15": 2, "17": 1 } }], ["sets", { "1": { "17": 1 } }], ["setsessionid", { "1": { "1": 2, "10": 2, "11": 2, "23": 2 } }], ["setheader", { "1": { "11": 3 } }], ["setconnectionstatus", { "1": { "10": 1 } }], ["setonlineusers", { "1": { "10": 1 } }], ["setagenttyping", { "1": { "10": 1, "24": 1 } }], ["settings", { "1": { "12": 3, "21": 4 } }], ["setting", { "1": { "9": 1 } }], ["settimeout", { "1": { "4": 1, "10": 1 } }], ["setexpanded", { "1": { "8": 2 } }], ["set", { "1": { "6": 1, "7": 1, "9": 1, "11": 1, "13": 2, "16": 4, "24": 1 } }], ["setinputvalue", { "1": { "1": 3, "23": 3, "24": 3 } }], ["setup", { "1": { "1": 2, "10": 3, "11": 1 } }], ["search`", { "1": { "18": 2 } }], ["searching", { "1": { "17": 2, "18": 3 } }], ["search", { "1": { "0": 1, "4": 4, "14": 2, "15": 4, "17": 6, "18": 8 } }], ["self", { "1": { "0": 1 } }], ["some", { "1": { "15": 1 } }], ["something", { "1": { "5": 1, "10": 1 } }], ["sonnet", { "1": { "12": 1, "15": 1, "16": 2, "17": 8, "18": 5, "21": 2 } }], ["sound", { "1": { "7": 1, "8": 1 } }], ["source", { "1": { "4": 1 } }], ["sockserver", { "1": { "10": 4, "24": 3 } }], ["sock", { "1": { "10": 13, "24": 4 } }], ["socketlike", { "1": { "10": 3, "24": 1 } }], ["socket", { "0": { "10": 1, "24": 1 }, "1": { "6": 7, "10": 12, "11": 2, "22": 4, "24": 12 } }], ["sockets", { "1": { "5": 1 } }], ["sockjs", { "1": { "6": 4, "10": 22, "22": 1, "24": 18 } }], ["solves", { "1": { "0": 1 } }], ["so", { "1": { "0": 1 } }], ["lr", { "1": { "23": 1, "24": 1 } }], ["ll", { "1": { "20": 1 } }], ["llm", { "1": { "0": 4, "4": 8, "13": 1, "15": 5, "16": 4, "17": 8 } }], ["latest", { "1": { "18": 2 } }], ["later", { "1": { "15": 1 } }], ["lazily", { "1": { "10": 4, "24": 1 } }], ["layer", { "1": { "0": 1 } }], ["limit", { "1": { "16": 1, "17": 2 } }], ["literal", { "1": { "15": 1, "16": 1 } }], ["listen", { "1": { "24": 1 } }], ["list", { "1": { "10": 1, "11": 1, "16": 1, "17": 1, "19": 1, "21": 1 } }], ["like", { "1": { "5": 1, "7": 1, "8": 1, "9": 1, "13": 1, "14": 1, "15": 1, "17": 1, "18": 1, "24": 1 } }], ["lifecycle", { "1": { "3": 1, "5": 3, "10": 1 } }], ["library", { "1": { "10": 1 } }], ["lib", { "1": { "1": 3, "11": 1, "23": 3 } }], ["lg", { "1": { "1": 3, "7": 1, "8": 2, "23": 3, "24": 4 } }], ["level", { "1": { "14": 1, "15": 1, "16": 1, "17": 2 } }], ["left", { "1": { "7": 1, "23": 1, "24": 1 } }], ["let", { "1": { "5": 1, "10": 4, "15": 2, "18": 1, "24": 2 } }], ["lets", { "1": { "0": 1 } }], ["leaves", { "1": { "4": 1 } }], ["learn", { "1": { "0": 1, "1": 1 } }], ["length", { "1": { "3": 2, "4": 2, "5": 1, "8": 1 } }], ["low", { "1": { "15": 2, "16": 2, "17": 3 } }], ["lowercase", { "1": { "12": 1 } }], ["lower", { "1": { "10": 1 } }], ["loaded", { "1": { "18": 2 } }], ["load", { "1": { "3": 2, "11": 1 } }], ["logs", { "1": { "24": 1 } }], ["log", { "1": { "3": 4, "4": 3, "6": 2, "7": 2, "8": 1, "10": 2, "13": 1, "14": 1, "21": 2, "24": 2 } }], ["logic", { "1": { "0": 1, "4": 1, "12": 1 } }], ["loop", { "1": { "2": 1 } }], ["lookups", { "1": { "18": 1 } }], ["looking", { "1": { "5": 1, "12": 1, "15": 1, "18": 2 } }], ["look", { "1": { "1": 1, "15": 2, "17": 1, "23": 1 } }], ["localhost", { "1": { "24": 1 } }], ["local", { "1": { "23": 1 } }], ["local`", { "1": { "1": 1 } }], ["locally", { "1": { "0": 1 } }], ["tc", { "1": { "20": 1 } }], ["t1", { "1": { "20": 10 } }], ["tkt", { "1": { "15": 1, "24": 1 } }], ["tasks", { "1": { "17": 1 } }], ["talk", { "1": { "9": 1, "12": 1, "14": 1 } }], ["target", { "1": { "1": 1, "23": 1, "24": 1 } }], ["typing", { "1": { "10": 2, "22": 1, "23": 1, "24": 2 } }], ["typically", { "1": { "9": 1 } }], ["typed", { "1": { "6": 1, "7": 1, "20": 1 } }], ["types", { "1": { "5": 2, "9": 1, "10": 1, "11": 2, "12": 1, "14": 1, "15": 1, "16": 1, "18": 2, "20": 1, "24": 3 } }], ["typeof", { "1": { "4": 1, "10": 1, "24": 1 } }], ["type=", { "1": { "1": 2, "23": 2, "24": 3 } }], ["type", { "1": { "1": 6, "2": 1, "3": 1, "4": 4, "5": 28, "6": 6, "7": 11, "8": 4, "9": 6, "10": 21, "11": 8, "12": 8, "13": 19, "14": 25, "15": 13, "16": 24, "17": 14, "18": 13, "19": 9, "20": 23, "21": 6, "23": 8, "24": 14 } }], ["two", { "1": { "6": 1, "10": 2, "11": 1, "15": 1 } }], ["td", { "1": { "3": 1 } }], ["t", { "1": { "1": 1, "4": 1, "9": 1, "10": 5, "13": 1, "15": 1, "16": 5, "17": 1, "22": 1, "23": 1, "24": 2 } }], ["tier", { "1": { "14": 2 } }], ["tier2", { "1": { "14": 1 } }], ["title", { "1": { "5": 1 } }], ["tickets", { "1": { "23": 1 } }], ["ticketservice", { "1": { "4": 1, "15": 1 } }], ["ticketid", { "1": { "1": 1, "4": 1, "15": 3, "23": 1, "24": 1 } }], ["ticket", { "1": { "1": 3, "4": 6, "9": 1, "12": 1, "13": 5, "15": 23, "16": 14, "17": 4, "23": 3, "24": 1 } }], ["timeout", { "1": { "4": 2, "13": 1 } }], ["timeouts", { "1": { "4": 1 } }], ["time", { "1": { "0": 1, "2": 1, "5": 1, "6": 2, "8": 2, "10": 2, "11": 1, "18": 1, "22": 2, "23": 1, "24": 2 } }], ["tsx", { "1": { "1": 2, "11": 2, "23": 2, "24": 1 } }], ["ts", { "1": { "1": 3, "11": 1, "23": 3, "24": 4 } }], ["temperature", { "1": { "17": 3 } }], ["templates", { "1": { "12": 1 } }], ["temporary", { "1": { "12": 1 } }], ["textpart", { "1": { "7": 1, "8": 1 } }], ["textendevent", { "1": { "5": 1 } }], ["textdeltaevent", { "1": { "5": 1 } }], ["textstartevent", { "1": { "5": 1 } }], ["text", { "1": { "0": 1, "1": 6, "2": 1, "3": 1, "4": 1, "5": 16, "6": 9, "7": 21, "8": 16, "9": 10, "10": 5, "11": 7, "13": 3, "14": 3, "16": 6, "18": 4, "19": 4, "20": 18, "23": 9, "24": 9 } }], ["teams", { "1": { "0": 2 } }], ["true`", { "1": { "15": 1, "16": 1 } }], ["true", { "1": { "11": 1, "12": 2, "13": 5, "14": 4, "15": 6, "16": 3, "17": 3, "18": 2, "20": 1, "24": 1 } }], ["try", { "1": { "3": 1, "4": 1, "10": 1, "11": 1, "24": 1 } }], ["trim", { "1": { "1": 2, "23": 2, "24": 2 } }], ["trigger`", { "1": { "19": 1 } }], ["trigger1", { "1": { "14": 1 } }], ["triggered", { "1": { "14": 2 } }], ["triggering", { "1": { "2": 2, "3": 1, "6": 1 } }], ["triggerrequest", { "1": { "1": 1, "6": 3, "7": 2, "8": 1, "11": 2, "14": 1, "23": 1 } }], ["triggername", { "1": { "1": 4, "2": 1, "4": 1, "6": 8, "7": 4, "8": 2, "10": 2, "11": 8, "14": 2, "19": 1, "20": 3, "23": 4, "24": 3 } }], ["trigger", { "1": { "0": 1, "1": 6, "2": 4, "3": 6, "4": 2, "5": 3, "6": 5, "7": 4, "8": 1, "10": 8, "11": 6, "14": 16, "16": 2, "19": 3, "20": 6, "23": 8, "24": 9 } }], ["triggers", { "0": { "14": 1 }, "1": { "0": 3, "1": 1, "7": 1, "12": 6, "13": 4, "14": 17, "17": 1, "18": 1, "23": 5, "24": 1 } }], ["traditional", { "1": { "4": 1 } }], ["transports", { "1": { "24": 1 } }], ["transport", { "0": { "10": 1, "11": 1 }, "1": { "1": 4, "6": 33, "7": 5, "8": 5, "10": 15, "11": 12, "14": 2, "22": 4, "23": 4, "24": 7 } }], ["tracks", { "1": { "7": 1 } }], ["tracking", { "1": { "6": 1 } }], ["track", { "1": { "0": 1, "3": 1, "5": 1, "12": 1 } }], ["those", { "1": { "23": 1 } }], ["thought", { "1": { "8": 1 } }], ["third", { "1": { "23": 1 } }], ["thing", { "1": { "14": 2 } }], ["thinking", { "1": { "6": 1, "7": 1, "8": 1, "12": 1, "16": 2, "17": 6, "18": 1, "21": 1 } }], ["this", { "1": { "1": 1, "5": 2, "6": 1, "9": 1, "10": 3, "11": 2, "12": 1, "13": 2, "14": 1, "15": 3, "16": 2, "18": 1, "20": 1, "21": 1, "22": 1, "23": 2, "24": 3 } }], ["threw", { "1": { "5": 1 } }], ["thread`", { "1": { "9": 1 } }], ["threads", { "1": { "7": 4, "8": 2, "9": 3, "16": 1, "17": 1 } }], ["thread", { "1": { "5": 1, "7": 8, "8": 3, "9": 6, "13": 1, "14": 1, "16": 22, "17": 4 } }], ["throw", { "1": { "3": 1, "4": 3 } }], ["through", { "1": { "0": 1, "1": 1, "7": 1, "8": 2, "14": 1, "22": 1 } }], ["then", { "1": { "10": 2, "11": 2, "23": 2 } }], ["there", { "1": { "10": 1, "11": 2 } }], ["them", { "1": { "7": 1, "9": 1, "15": 2, "24": 1 } }], ["they", { "1": { "3": 2, "4": 1, "9": 1, "12": 1, "13": 1, "16": 1, "18": 1, "20": 1 } }], ["these", { "1": { "0": 1, "1": 1, "15": 1, "18": 1 } }], ["their", { "1": { "0": 1, "3": 1, "7": 1, "9": 1, "12": 2, "15": 4 } }], ["the", { "1": { "0": 6, "1": 10, "2": 4, "3": 9, "4": 6, "5": 5, "6": 7, "7": 13, "8": 7, "9": 7, "10": 25, "11": 13, "12": 3, "13": 10, "14": 5, "15": 18, "16": 4, "17": 9, "18": 18, "19": 6, "20": 12, "21": 2, "22": 1, "23": 21, "24": 9 } }], ["that", { "1": { "0": 7, "1": 4, "3": 1, "4": 2, "7": 1, "8": 1, "10": 1, "11": 1, "13": 2, "16": 3, "18": 2, "19": 1, "20": 2, "21": 1, "22": 1, "23": 1, "24": 2 } }], ["token", { "1": { "17": 1, "19": 1 } }], ["tokens", { "1": { "5": 1 } }], ["too", { "1": { "8": 1, "14": 1 } }], ["toolresults", { "1": { "20": 2 } }], ["toolrequestevent", { "1": { "5": 1 } }], ["toolcallpart", { "1": { "8": 1 } }], ["toolcallid", { "1": { "5": 7, "7": 1, "10": 1, "20": 1 } }], ["tooloutputerrorevent", { "1": { "5": 1 } }], ["tooloutputavailableevent", { "1": { "5": 1 } }], ["toolinputavailableevent", { "1": { "5": 1 } }], ["toolinputendevent", { "1": { "5": 1 } }], ["toolinputdeltaevent", { "1": { "5": 1 } }], ["toolinputstartevent", { "1": { "5": 1 } }], ["tooling", { "1": { "0": 1 } }], ["toolname", { "1": { "5": 2, "7": 2, "8": 1, "10": 1, "20": 1, "23": 1 } }], ["toolhandler>", { "1": { "4": 1 } }], ["toolhandler", { "1": { "4": 1 } }], ["toolhandlers", { "1": { "4": 3 } }], ["tool", { "1": { "0": 4, "1": 2, "2": 3, "3": 2, "4": 15, "5": 22, "6": 2, "7": 3, "8": 2, "9": 2, "10": 2, "11": 1, "12": 1, "13": 2, "15": 20, "16": 8, "17": 5, "18": 4, "19": 1, "20": 10, "23": 7, "24": 2 } }], ["tools`", { "1": { "15": 1 } }], ["tools", { "0": { "4": 1, "15": 1 }, "1": { "0": 8, "1": 1, "2": 4, "3": 2, "4": 11, "10": 2, "11": 2, "12": 8, "15": 23, "16": 2, "17": 13, "18": 19, "20": 2, "23": 4, "24": 7 } }], ["toast", { "1": { "7": 1, "8": 1, "11": 1 } }], ["toisostring", { "1": { "4": 1, "15": 1 } }], ["tossestream", { "1": { "1": 2, "2": 3, "3": 2, "4": 2, "5": 2, "11": 5, "14": 2, "23": 3 } }], ["to", { "1": { "0": 9, "1": 5, "2": 4, "3": 10, "4": 4, "5": 5, "6": 3, "7": 9, "8": 5, "9": 5, "10": 6, "11": 4, "12": 2, "13": 8, "14": 6, "15": 9, "16": 17, "17": 7, "18": 6, "19": 1, "20": 4, "21": 1, "22": 1, "23": 5, "24": 2 } }], ["our", { "1": { "19": 1 } }], ["out", { "1": { "9": 1 } }], ["outputtochat", { "1": { "20": 1 } }], ["outputs", { "1": { "13": 1 } }], ["output", { "1": { "4": 1, "5": 7, "9": 1, "13": 5, "15": 3, "16": 9, "20": 2 } }], ["o3", { "1": { "17": 2 } }], ["o1", { "1": { "17": 2 } }], ["own", { "1": { "8": 2, "24": 1 } }], ["occur", { "1": { "9": 1 } }], ["occurred", { "1": { "5": 1, "20": 1 } }], ["octavuschatoptions", { "1": { "6": 3 } }], ["octavuschat", { "1": { "6": 4 } }], ["octavusclientconfig", { "1": { "2": 2 } }], ["octavusclient", { "1": { "1": 2, "2": 4, "3": 2, "10": 2, "11": 4, "23": 2, "24": 4 } }], ["octavus", { "1": { "0": 7, "1": 23, "2": 8, "3": 5, "4": 5, "5": 4, "6": 11, "7": 4, "8": 4, "9": 2, "10": 14, "11": 10, "14": 2, "15": 1, "19": 8, "20": 3, "21": 5, "23": 25, "24": 30 } }], ["object", { "1": { "4": 1, "15": 1, "20": 2, "23": 1 } }], ["objects", { "1": { "3": 1, "10": 1, "13": 1, "15": 1, "20": 1 } }], ["observability", { "1": { "0": 1 } }], ["opens", { "1": { "23": 1 } }], ["openai", { "1": { "17": 6, "18": 3 } }], ["operation=", { "1": { "9": 1 } }], ["operationcard", { "1": { "9": 2 } }], ["operationtype", { "1": { "7": 1, "9": 1 } }], ["operationid", { "1": { "7": 1, "9": 2 } }], ["operations", { "0": { "9": 1 }, "1": { "6": 2, "7": 1, "9": 14, "18": 1, "20": 1 } }], ["operation", { "1": { "6": 1, "7": 2, "9": 15 } }], ["opus", { "1": { "17": 2 } }], ["op", { "1": { "9": 4 } }], ["option", { "1": { "3": 2, "10": 2, "11": 1, "20": 1 } }], ["optionally", { "1": { "4": 1, "15": 1 } }], ["optional", { "1": { "3": 2, "6": 2, "12": 1, "13": 5, "14": 8, "15": 5, "16": 1, "17": 1, "18": 3, "21": 1 } }], ["options", { "0": { "18": 1 }, "1": { "2": 1, "6": 4, "10": 1, "11": 1, "12": 2, "15": 2, "16": 1, "17": 7, "18": 11 } }], ["opacity", { "1": { "1": 1, "23": 1 } }], ["offer", { "1": { "17": 1 } }], ["of", { "1": { "2": 1, "3": 1, "5": 3, "10": 5, "11": 1, "13": 1, "14": 3, "17": 1, "19": 1, "20": 1, "24": 5 } }], ["ordering", { "1": { "7": 1, "20": 1 } }], ["ordered", { "1": { "6": 1, "7": 1 } }], ["orderservice", { "1": { "4": 1 } }], ["order", { "1": { "4": 1 } }], ["or", { "1": { "0": 1, "1": 1, "3": 2, "5": 1, "6": 3, "9": 2, "10": 4, "11": 1, "12": 1, "13": 1, "14": 1, "15": 1, "17": 1, "18": 5, "19": 1, "20": 1, "21": 3, "22": 2, "24": 2 } }], ["orchestration", { "1": { "0": 2 } }], ["override", { "1": { "17": 1 } }], ["overloaded", { "1": { "14": 1 } }], ["overflow", { "1": { "1": 1, "23": 1, "24": 1 } }], ["overview", { "0": { "2": 1, "6": 1, "12": 1, "19": 1, "22": 1 }, "1": { "0": 4, "1": 3, "2": 1, "6": 2, "10": 1, "12": 1, "19": 1, "23": 2, "24": 2 } }], ["over", { "1": { "0": 3, "4": 3 } }], ["overhead", { "1": { "0": 1 } }], ["otherparts", { "1": { "8": 3 } }], ["other", { "1": { "0": 2, "5": 2, "6": 2, "10": 1, "19": 1 } }], ["ongoing", { "1": { "11": 1 } }], ["onmessage", { "1": { "10": 1, "24": 1 } }], ["onopen", { "1": { "6": 1, "10": 4, "24": 1 } }], ["onresourceupdate", { "1": { "6": 1, "7": 1, "13": 1 } }], ["onfinish", { "1": { "6": 1, "7": 1, "8": 1 } }], ["only", { "1": { "5": 1, "6": 1, "9": 1, "10": 2, "13": 2, "15": 1, "18": 2, "21": 1 } }], ["onclose", { "1": { "10": 1 } }], ["onclick=", { "1": { "8": 3, "11": 1, "24": 1 } }], ["once", { "1": { "3": 1 } }], ["onchange=", { "1": { "1": 1, "23": 1, "24": 1 } }], ["onsubmit=", { "1": { "1": 1, "23": 1, "24": 1 } }], ["ones", { "1": { "9": 1 } }], ["onerror", { "1": { "6": 2, "7": 1, "8": 1, "10": 4, "11": 1, "24": 2 } }], ["one", { "1": { "1": 1, "3": 1, "6": 1, "14": 1, "23": 1 } }], ["on", { "1": { "0": 4, "1": 1, "2": 1, "3": 4, "4": 2, "6": 1, "7": 1, "10": 9, "11": 1, "15": 1, "18": 1, "20": 1, "23": 4, "24": 5 } }], ["avoid", { "1": { "14": 2, "15": 1 } }], ["available`", { "1": { "20": 2 } }], ["available", { "1": { "4": 2, "5": 4, "10": 1, "15": 3, "17": 1, "18": 2, "22": 1 } }], ["at", { "1": { "12": 1, "13": 1, "14": 1, "15": 1, "18": 1 } }], ["attempts", { "1": { "10": 1 } }], ["attached", { "1": { "3": 1 } }], ["attaching", { "1": { "3": 1, "4": 1 } }], ["attach", { "1": { "1": 2, "2": 3, "3": 4, "4": 2, "10": 2, "11": 2, "15": 1, "23": 2, "24": 2 } }], ["amber", { "1": { "7": 3, "8": 3, "9": 1 } }], ["abbreviated", { "1": { "14": 1 } }], ["abc123", { "1": { "11": 1, "19": 1 } }], ["abstraction", { "1": { "6": 1 } }], ["aborted", { "1": { "8": 1, "10": 1, "24": 1 } }], ["abort", { "1": { "4": 1, "10": 3, "24": 2 } }], ["abortcontroller", { "1": { "4": 1, "10": 10, "24": 7 } }], ["about", { "1": { "0": 1, "1": 1, "5": 1, "10": 2, "15": 1, "17": 1, "24": 1 } }], ["against", { "1": { "17": 1, "18": 1 } }], ["agnostic", { "1": { "6": 3 } }], ["agentic", { "1": { "12": 1, "15": 3, "17": 4, "18": 1 } }], ["agentid", { "1": { "2": 3, "3": 5, "11": 1, "20": 3, "21": 7, "23": 4 } }], ["agents`", { "1": { "19": 2 } }], ["agentskills", { "1": { "18": 1 } }], ["agentsession", { "1": { "2": 3, "10": 3, "24": 2 } }], ["agentsessionsapi", { "1": { "2": 3 } }], ["agentsessions", { "1": { "1": 2, "2": 4, "3": 9, "4": 2, "7": 1, "10": 3, "11": 3, "13": 1, "15": 1, "23": 3, "24": 2 } }], ["agentsapi", { "1": { "2": 1 } }], ["agentslug", { "1": { "1": 3 } }], ["agents", { "0": { "21": 1 }, "1": { "0": 8, "1": 1, "2": 2, "4": 1, "12": 3, "15": 1, "19": 5, "20": 3, "21": 16 } }], ["agent", { "0": { "17": 1 }, "1": { "0": 14, "1": 7, "2": 3, "3": 3, "6": 3, "7": 2, "8": 1, "9": 2, "10": 1, "11": 2, "12": 18, "13": 5, "14": 1, "15": 2, "17": 12, "18": 10, "19": 9, "20": 13, "21": 24, "23": 12, "24": 9 } }], ["after", { "1": { "3": 1, "10": 1 } }], ["a1", { "1": { "3": 1 } }], ["also", { "1": { "11": 1 } }], ["alongside", { "1": { "9": 1, "10": 1, "24": 2 } }], ["always", { "1": { "5": 1, "10": 1, "15": 1 } }], ["align", { "1": { "5": 1 } }], ["alive", { "1": { "1": 1, "5": 1, "11": 2, "23": 1 } }], ["already", { "1": { "3": 1 } }], ["allows", { "1": { "18": 1 } }], ["allow", { "1": { "11": 1, "12": 1, "15": 1, "17": 1 } }], ["all", { "1": { "2": 1, "3": 1, "5": 1, "9": 1, "10": 2, "19": 3, "21": 2 } }], ["advanced", { "1": { "1": 1, "23": 1, "24": 1 } }], ["adds", { "1": { "7": 1, "23": 1 } }], ["adding", { "1": { "6": 1 } }], ["add", { "1": { "1": 2, "6": 1, "7": 1, "12": 2, "14": 2, "15": 1, "16": 17, "17": 2, "18": 2, "20": 2 } }], ["authorization", { "1": { "4": 1, "19": 2, "20": 3, "21": 5 } }], ["authtoken", { "1": { "4": 2 } }], ["auth", { "1": { "4": 2 } }], ["authentication", { "1": { "0": 1, "4": 2, "19": 3 } }], ["automatically", { "1": { "6": 1, "7": 1, "10": 3, "15": 2, "18": 2, "19": 1, "20": 1, "24": 1 } }], ["auto", { "1": { "1": 1, "23": 1, "24": 1 } }], ["await", { "1": { "1": 7, "2": 3, "3": 5, "4": 10, "5": 1, "6": 4, "7": 2, "10": 3, "11": 4, "13": 1, "14": 4, "15": 2, "21": 1, "23": 8, "24": 6 } }], ["asks", { "1": { "15": 1 } }], ["asked", { "1": { "5": 1 } }], ["assistant", { "1": { "7": 2, "16": 1, "20": 1, "21": 1 } }], ["asynchronously", { "1": { "10": 1 } }], ["asynciterable<streamevent>", { "1": { "2": 1 } }], ["asyncgenerator<streamevent>", { "1": { "2": 1 } }], ["async", { "1": { "1": 6, "2": 5, "3": 1, "4": 13, "5": 2, "6": 1, "7": 1, "10": 4, "11": 5, "14": 1, "15": 2, "23": 6, "24": 6 } }], ["as", { "1": { "0": 3, "1": 2, "4": 13, "8": 1, "9": 2, "10": 6, "11": 1, "13": 3, "15": 4, "23": 6, "24": 4 } }], ["argument", { "1": { "23": 1 } }], ["arguments", { "1": { "4": 4, "5": 1, "20": 2, "23": 1 } }], ["args", { "1": { "1": 3, "2": 2, "4": 23, "7": 1, "11": 1, "15": 6, "23": 7, "24": 2 } }], ["array", { "1": { "3": 1, "4": 1, "8": 1, "9": 1, "20": 1, "21": 1 } }], ["architectures", { "1": { "22": 1 } }], ["architecture", { "1": { "0": 1, "23": 1, "24": 1 } }], ["are", { "1": { "0": 2, "4": 2, "5": 3, "6": 1, "9": 3, "10": 2, "11": 1, "12": 3, "13": 9, "15": 6, "17": 2, "18": 9, "19": 1, "21": 5, "23": 1, "24": 2 } }], ["apps", { "1": { "10": 3, "11": 1, "22": 2 } }], ["appear", { "1": { "5": 1, "9": 2 } }], ["applicable", { "1": { "5": 1 } }], ["applications", { "1": { "6": 3, "19": 1, "23": 1 } }], ["application", { "1": { "1": 4, "2": 1, "6": 3, "7": 2, "8": 1, "11": 2, "13": 1, "14": 1, "19": 1, "20": 2, "21": 2, "23": 2 } }], ["appropriate", { "1": { "8": 1 } }], ["appropriately", { "1": { "4": 1 } }], ["approach", { "1": { "0": 1, "10": 1 } }], ["app", { "1": { "0": 6, "1": 3, "3": 1, "11": 6, "23": 5, "24": 3 } }], ["api<br", { "1": { "23": 1 } }], ["apierror", { "1": { "3": 2 } }], ["apis", { "1": { "2": 1 } }], ["apikey", { "1": { "1": 1, "2": 2, "3": 1, "10": 1, "11": 2, "23": 1, "24": 2 } }], ["api", { "1": { "0": 9, "1": 11, "2": 4, "3": 3, "4": 2, "6": 4, "7": 2, "8": 1, "10": 4, "11": 9, "14": 2, "19": 19, "20": 12, "21": 17, "23": 11, "24": 8 }, "2": { "19": 1, "20": 1, "21": 1 } }], ["activities", { "1": { "9": 1 } }], ["actions", { "1": { "0": 1, "3": 3, "6": 2, "23": 1 } }], ["action", { "1": { "0": 2, "1": 1, "2": 1, "5": 1, "10": 1, "14": 7, "23": 1 } }], ["acme", { "1": { "1": 1, "2": 1, "3": 1, "10": 1, "11": 2, "13": 1, "20": 3, "23": 2, "24": 1 } }], ["accepted", { "1": { "18": 2 } }], ["accepts", { "1": { "0": 1, "15": 1 } }], ["accessing", { "1": { "4": 1 } }], ["access", { "1": { "2": 1, "4": 2, "7": 1, "8": 1, "19": 1 } }], ["account", { "1": { "1": 2, "2": 1, "4": 5, "5": 3, "11": 1, "12": 3, "15": 14, "17": 5, "18": 3, "20": 1, "23": 5, "24": 4 } }], ["across", { "1": { "0": 2, "13": 4 } }], ["a", { "1": { "0": 7, "1": 8, "2": 5, "3": 8, "4": 5, "6": 5, "7": 2, "8": 1, "9": 3, "10": 5, "11": 1, "12": 4, "13": 5, "14": 6, "15": 5, "16": 9, "17": 4, "18": 4, "19": 3, "20": 5, "21": 6, "22": 2, "23": 5, "24": 4 } }], ["ai", { "1": { "0": 3, "1": 1, "2": 1, "4": 2, "5": 2, "12": 1, "19": 3, "20": 3, "21": 5, "23": 2, "24": 1 } }], ["another", { "1": { "16": 2 } }], ["analyzing", { "1": { "18": 2 } }], ["analyze", { "1": { "5": 1, "14": 2 } }], ["analysis", { "1": { "14": 2, "17": 1, "18": 4 } }], ["anthropic", { "1": { "12": 1, "15": 2, "16": 2, "17": 17, "18": 33, "21": 2 } }], ["animate", { "1": { "1": 1, "7": 1, "8": 2, "9": 1 } }], ["any", { "1": { "1": 1, "4": 2, "6": 1, "8": 2 } }], ["and", { "1": { "0": 10, "1": 5, "2": 4, "3": 4, "4": 4, "5": 2, "6": 7, "7": 4, "8": 2, "9": 2, "11": 2, "12": 3, "13": 2, "14": 2, "15": 4, "16": 1, "17": 5, "18": 13, "19": 2, "20": 5, "21": 1, "23": 2, "24": 4 } }], ["an", { "1": { "0": 5, "1": 4, "2": 2, "3": 2, "5": 3, "6": 1, "10": 4, "11": 1, "12": 2, "14": 3, "15": 1, "18": 1, "21": 2, "23": 2 } }], ["io", { "1": { "18": 1 } }], ["immutable", { "1": { "13": 1 } }], ["immediately", { "1": { "7": 1 } }], ["implicit", { "1": { "14": 1 } }], ["implement", { "1": { "18": 1 } }], ["implemented", { "1": { "15": 3 } }], ["implementation", { "1": { "4": 2, "6": 1, "12": 1 } }], ["implementing", { "1": { "2": 1, "15": 1 } }], ["imports", { "1": { "10": 1, "24": 1 } }], ["import", { "1": { "1": 9, "2": 2, "3": 3, "4": 2, "5": 1, "6": 5, "7": 6, "8": 5, "9": 2, "10": 12, "11": 9, "14": 3, "23": 9, "24": 14 } }], ["i", { "1": { "1": 2, "3": 1, "4": 1, "5": 1, "6": 2, "7": 2, "8": 4, "9": 2, "20": 5, "23": 3, "24": 2 } }], ["if", { "1": { "1": 4, "3": 2, "4": 3, "6": 1, "7": 4, "8": 1, "9": 1, "10": 12, "11": 3, "12": 1, "13": 4, "14": 1, "15": 2, "17": 2, "18": 1, "21": 1, "23": 5, "24": 9 } }], ["id=your", { "1": { "24": 1 } }], ["id`", { "1": { "17": 1, "19": 3 } }], ["identity", { "1": { "15": 1 } }], ["identifier", { "1": { "12": 1, "17": 1, "21": 1 } }], ["identified", { "1": { "7": 1, "8": 1 } }], ["identify", { "1": { "9": 1 } }], ["idle", { "1": { "6": 2, "8": 3 } }], ["id", { "1": { "1": 5, "2": 3, "3": 4, "4": 6, "5": 11, "6": 1, "7": 2, "8": 1, "10": 8, "11": 4, "12": 1, "13": 3, "15": 3, "17": 2, "18": 4, "19": 7, "20": 16, "21": 6, "23": 9, "24": 7 } }], ["insufficient", { "1": { "19": 1 } }], ["instructions", { "1": { "17": 1, "18": 2 } }], ["instock", { "1": { "15": 1 } }], ["instead", { "1": { "10": 2, "19": 1, "24": 1 } }], ["instanceof", { "1": { "3": 1 } }], ["instance", { "1": { "1": 2, "6": 1 } }], ["installhandlers", { "1": { "10": 1, "24": 1 } }], ["install", { "1": { "1": 3, "2": 1, "6": 3, "23": 2, "24": 5 } }], ["installation", { "1": { "1": 1, "2": 1, "6": 1 } }], ["invalid", { "1": { "19": 2 } }], ["invoking", { "1": { "14": 1 } }], ["invoked", { "1": { "0": 1, "12": 2, "14": 1 } }], ["invoke", { "1": { "0": 1 } }], ["invocation", { "1": { "0": 1, "14": 1, "15": 1 } }], ["index", { "1": { "24": 1 } }], ["independent", { "1": { "16": 4 } }], ["indicators", { "1": { "9": 1, "10": 1, "22": 1 } }], ["indicator", { "1": { "1": 1, "8": 1, "10": 1, "24": 2 } }], ["information", { "1": { "13": 1, "15": 2, "17": 1, "18": 3 } }], ["infrastructure", { "1": { "0": 2, "4": 1, "10": 1, "18": 1 } }], ["initiated", { "1": { "20": 1 } }], ["initialization", { "1": { "10": 1 } }], ["initialized", { "1": { "10": 2 } }], ["initializes", { "1": { "3": 1 } }], ["initialize", { "1": { "1": 1, "10": 1 } }], ["initialmessages", { "1": { "6": 1, "7": 3 } }], ["initial", { "1": { "3": 1, "10": 1, "13": 2, "23": 1, "24": 1 } }], ["init", { "1": { "10": 8 } }], ["inconsistent", { "1": { "17": 1 } }], ["incremental", { "1": { "5": 2, "20": 1 } }], ["includes", { "1": { "3": 1, "6": 1, "20": 1 } }], ["including", { "1": { "3": 1, "6": 1, "15": 1, "20": 1, "21": 1 } }], ["inline", { "1": { "1": 1, "7": 2, "8": 1 } }], ["inputtextdelta", { "1": { "5": 1 } }], ["inputs", { "1": { "3": 1, "12": 3, "13": 3, "14": 2, "16": 1, "23": 1 } }], ["inputvalue", { "1": { "1": 4, "11": 1, "23": 4, "24": 4 } }], ["input", { "0": { "13": 1 }, "1": { "0": 1, "1": 8, "2": 3, "3": 1, "4": 4, "5": 10, "6": 8, "7": 5, "8": 2, "10": 4, "11": 9, "12": 5, "13": 13, "14": 19, "15": 4, "16": 12, "17": 5, "18": 4, "19": 1, "20": 13, "21": 3, "23": 11, "24": 5 } }], ["in", { "1": { "0": 6, "1": 5, "2": 1, "4": 8, "5": 1, "6": 2, "8": 1, "9": 4, "10": 4, "11": 1, "12": 2, "13": 5, "15": 15, "16": 8, "17": 3, "18": 10, "19": 2, "21": 1, "23": 6, "24": 1 } }], ["into", { "1": { "0": 1, "1": 1, "2": 2, "18": 2 } }], ["intended", { "1": { "3": 1 } }], ["integrating", { "1": { "1": 1, "2": 1 } }], ["integrations", { "1": { "6": 1, "10": 1 } }], ["integration", { "1": { "0": 3, "1": 1, "6": 3, "11": 1, "22": 2, "23": 1, "24": 3 } }], ["interpolate", { "1": { "16": 1, "17": 1 } }], ["interpolated", { "1": { "13": 1 } }], ["interactive", { "1": { "12": 1, "21": 5 } }], ["interacting", { "1": { "2": 1 } }], ["interactions", { "1": { "0": 1, "3": 1, "14": 1 } }], ["internally", { "1": { "24": 1 } }], ["internal", { "1": { "0": 1, "2": 3, "3": 4, "6": 1, "7": 1, "9": 1, "13": 2, "16": 2, "17": 1, "19": 1, "20": 1 } }], ["interfaces", { "1": { "0": 1 } }], ["interface", { "1": { "0": 1, "1": 1, "2": 3, "3": 2, "6": 3, "7": 6, "9": 1, "10": 1, "11": 1, "22": 1, "23": 3, "24": 2 } }], ["introduction", { "0": { "0": 1 }, "1": { "0": 1 } }], ["items", { "1": { "8": 1, "9": 3, "15": 1 } }], ["iterate", { "1": { "0": 1, "5": 1, "10": 1, "14": 1, "24": 1 } }], ["its", { "1": { "1": 1, "8": 2, "16": 1, "24": 1 } }], ["it", { "1": { "0": 1, "2": 1, "3": 1, "5": 1, "6": 1, "10": 1, "12": 1, "13": 2, "15": 2, "16": 1, "17": 1, "20": 1 } }], ["istyping", { "1": { "10": 1, "24": 2 } }], ["issue", { "1": { "14": 1 } }], ["issues", { "1": { "10": 2, "24": 1 } }], ["isstreaming", { "1": { "1": 4 } }], ["isn", { "1": { "10": 1 } }], ["isotherthread", { "1": { "7": 4, "8": 3 } }], ["isuser", { "1": { "1": 3, "7": 2 } }], ["is", { "1": { "0": 5, "4": 2, "5": 1, "7": 3, "8": 5, "9": 2, "10": 8, "11": 3, "12": 2, "13": 3, "14": 5, "15": 3, "16": 1, "18": 2, "19": 1, "21": 1, "23": 2, "24": 2 } }]], serializationVersion: 2 };
|
|
6
6
|
|
|
7
7
|
// src/search.ts
|
|
8
8
|
var searchIndex = MiniSearch.loadJSON(JSON.stringify(search_index_default), {
|