[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-pinecone-pinecone-n8n":3,"mdc-5nznea-key":39,"related-repo-pinecone-pinecone-n8n":15370,"related-org-pinecone-pinecone-n8n":15458},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":34,"sourceUrl":37,"mdContent":38},"pinecone-n8n","build RAG workflows with Pinecone and n8n","Build n8n workflows using the Pinecone Assistant node or Pinecone Vector Store node. Use when building RAG pipelines, chat-with-docs workflows, configuring Pinecone nodes in n8n, troubleshooting Pinecone n8n nodes, or asking about best practices for Pinecone in n8n.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"pinecone","Pinecone","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fpinecone.png","pinecone-io",[13,16,19,20],{"name":14,"slug":14,"type":15},"n8n","tag",{"name":17,"slug":18,"type":15},"RAG","rag",{"name":9,"slug":8,"type":15},{"name":21,"slug":22,"type":15},"Workflow Automation","workflow-automation",14,"https:\u002F\u002Fgithub.com\u002Fpinecone-io\u002Fskills","2026-07-13T06:02:34.599969",null,2,[29,30,8,31,32,33],"agent-skills","agents","retrieval-augmented-generation","semantic-search","skills-sh",{"repoUrl":24,"stars":23,"forks":27,"topics":35,"description":36},[29,30,8,31,32,33],"Pinecone's official Agent Skills library, for use with agentic IDEs such as Cursor, Github Copilot, Antigravity, Gemini CLI and more.","https:\u002F\u002Fgithub.com\u002Fpinecone-io\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Fpinecone-n8n","---\nname: pinecone-n8n\ndescription: Build n8n workflows using the Pinecone Assistant node or Pinecone Vector Store node. Use when building RAG pipelines, chat-with-docs workflows, configuring Pinecone nodes in n8n, troubleshooting Pinecone n8n nodes, or asking about best practices for Pinecone in n8n.\nallowed-tools: Write\n---\n\n# Pinecone n8n Workflow Skill\n\nThis skill helps you build n8n workflows with Pinecone nodes following best practices. It covers two Pinecone nodes:\n- **Pinecone Assistant** (`@pinecone-database\u002Fn8n-nodes-pinecone-assistant`) — recommended for most use cases\n- **Pinecone Vector Store** (`@n8n\u002Fn8n-nodes-langchain.vectorStorePinecone`) — for advanced control\n\n**Core rule:** Always use the node's built-in resources and operations. Never suggest using the HTTP node to call the Pinecone REST API directly.\n\n---\n\n## Step 1: Understand the user's scenario\n\nAsk the user what they're trying to do:\n- Build a new workflow from scratch\n- Configure or understand a specific Pinecone node\n- Debug a workflow that isn't working\n- Review an existing workflow for best practices\n\n---\n\n## Step 2: Node selection (for new workflows and configuration questions)\n\nAlways present the Pinecone Assistant node as the recommended choice first. Do NOT skip this step based on your own inference about which node fits better — even if the use case mentions specific triggers (Google Drive, webhooks, etc.) or file types (text, markdown, PDF), those details do not determine which node to use.\n\n**Only skip this step if:**\n- The user explicitly names a specific node (e.g. \"I want to use the Vector Store node\", \"help me set up pineconeAssistant\")\n- The user is debugging or configuring an existing workflow that already has a specific Pinecone node in it\n\n**If the user has not named a node, always ask or recommend the Assistant node first.** If the user said \"use defaults\" or you cannot ask, default to the Pinecone Assistant node and proceed with the Assistant path.\n\nAsk the user which node they want to use, presenting these two options:\n\n**Pinecone Assistant (Recommended)**\n- Fully managed RAG — Pinecone handles chunking, embedding, and indexing automatically\n- Built-in citations with file names and URLs\n- Simpler setup: no embedding model or text splitter needed in n8n\n- Great for: document Q&A, chat with files, knowledge base search\n\n**Pinecone Vector Store**\n- Full control over embedding model, chunking strategy, and metadata\n- Works with any embedding model (OpenAI, Cohere, HuggingFace, etc.)\n- Required when: you need custom embeddings, have an existing Pinecone index, need metadata filtering, or need fine-grained control over chunking\n\n---\n\n## Pinecone Assistant Node — Best Practices and Workflow Generation\n\n### Node package names\n- File operations (upload, list, delete): `@pinecone-database\u002Fn8n-nodes-pinecone-assistant.pineconeAssistant`\n- Chat\u002Fretrieval as AI Agent tool: `@pinecone-database\u002Fn8n-nodes-pinecone-assistant.pineconeAssistantTool`\n\n### Prerequisites\n- Create a Pinecone Assistant in the Pinecone Console at https:\u002F\u002Fapp.pinecone.io\u002Forganizations\u002F-\u002Fprojects\u002F-\u002Fassistant before running the workflow\n- Set up a Pinecone credential in n8n with your API key\n\n### Workflow architecture\nThe standard pattern is a two-phase workflow:\n\n**Phase 1 — Ingestion** (run once or on a schedule):\n```\nManual Trigger → Set file URLs → Split Out → HTTP Request (download) → Pinecone Assistant (uploadFile)\n```\n\n**Phase 2 — Chat**:\n```\nChat Trigger → AI Agent ← Pinecone Assistant Tool (connected as ai_tool)\n                        ← OpenAI Chat Model (connected as ai_languageModel)\n```\n\n### Key configuration rules\n1. **assistantData parameter**: Always include BOTH `name` and `host` fields:\n   ```json\n   {\"name\": \"your-assistant-name\", \"host\": \"https:\u002F\u002Fyour-assistant-host.pinecone.io\"}\n   ```\n   Find your assistant's host in the Pinecone Console: open the assistant detail page and copy the host URL (format: `https:\u002F\u002F\u003Cregion>-data.\u003Csubdomain>.pinecone.io`).\n2. **sourceTag**: Always include in `additionalFields`:\n   ```json\n   {\"sourceTag\": \"n8n:n8n_nodes_pinecone_assistant:pinecone_n8n_skill\"}\n   ```\n3. **Connection type**: The Assistant Tool connects to the AI Agent via the `ai_tool` connection — NOT `main`\n4. **externalFileId**: Set this to the file URL expression so Pinecone stores it as a reference for citations\n5. **Credential**: Use `pineconeApi` credential type for both node variants\n6. **File metadata on upload**: Add key-value metadata via `additionalFields.metadata.metadataValues` — an array of `{\"key\": \"...\", \"value\": \"...\"}` objects. The `externalFileId` is automatically added to metadata; do not include it manually. Example:\n   ```json\n   \"additionalFields\": {\n     \"metadata\": {\"metadataValues\": [{\"key\": \"department\", \"value\": \"legal\"}]}\n   }\n   ```\n7. **Metadata filtering on listFiles**: Use `additionalFields.metadataFilter.metadataValues` (same `{key, value}` array) for simple equality filters, or `additionalFields.advancedMetadataFilter` (a JSON string) for operators like `$or`, `$ne`, `$in`. Cannot set both at once. Example simple filter:\n   ```json\n   \"additionalFields\": {\n     \"metadataFilter\": {\"metadataValues\": [{\"key\": \"department\", \"value\": \"legal\"}]}\n   }\n   ```\n8. **Multimodal PDF upload**: Set `additionalFields.multimodalFile: true` on the `uploadFile` node when the PDF contains images or charts that should be indexed for visual retrieval. This is required for images to be retrievable later — it is not the default.\n\n### Generating workflow JSON for the Assistant path\n\nBuild the workflow to match what the user actually describes — their triggers, models, data sources, and structure. Ask about anything structurally significant they haven't mentioned. Only fall back to the defaults below when the user hasn't specified a value:\n- Assistant name: `n8n-assistant` (use `n8n-assistant-1`, `n8n-assistant-2`, etc. for multiples; must match an existing assistant in the Pinecone Console)\n- File URLs: sample Pinecone release notes PDFs\n- LLM model: `gpt-5-mini`\n- System message: generic prompt about retrieving from the assistant with citations\n\nThe JSON below is a **reference configuration** showing correct parameter values, required fields, and connection types for each node. Use it as a guide for how to configure the nodes — not as a template to copy verbatim. Placeholders to substitute:\n- `[ASSISTANT_NAME]` — assistant name\n- `[ASSISTANT_HOST]` — assistant host URL from the Pinecone Console (e.g. `https:\u002F\u002Fyour-assistant-host.pinecone.io`)\n- `[USER_FILE_URLS_ARRAY]` — JSON array of file URL strings, e.g. `[\"https:\u002F\u002Fexample.com\u002Fdoc.pdf\"]`\n- `[USER_MODEL]` — LLM model name, e.g. `gpt-5-mini`\n- `[USER_TOPIC]` — short description of what the assistant knows, for the system message\n\n```json\n{\n  \"nodes\": [\n    {\n      \"parameters\": {\n        \"options\": {\n          \"systemMessage\": \"You are a helpful assistant. Use the Pinecone Assistant Tool to retrieve data about [USER_TOPIC]. Include the file name and file url in citations wherever referenced in output.\"\n        }\n      },\n      \"type\": \"@n8n\u002Fn8n-nodes-langchain.agent\",\n      \"typeVersion\": 2.2,\n      \"position\": [2208, 784],\n      \"id\": \"e4c65881-120c-4a7c-854b-138611c8dfa3\",\n      \"name\": \"AI Agent\"\n    },\n    {\n      \"parameters\": {\n        \"model\": {\"__rl\": true, \"mode\": \"list\", \"value\": \"[USER_MODEL]\"},\n        \"options\": {}\n      },\n      \"type\": \"@n8n\u002Fn8n-nodes-langchain.lmChatOpenAi\",\n      \"typeVersion\": 1.2,\n      \"position\": [2144, 1008],\n      \"id\": \"b3ea858d-b62d-4022-8241-8872e403839a\",\n      \"name\": \"OpenAI Chat Model\"\n    },\n    {\n      \"parameters\": {\n        \"content\": \"## 1. Upload files to Pinecone Assistant\",\n        \"height\": 384,\n        \"width\": 1104,\n        \"color\": 7\n      },\n      \"type\": \"n8n-nodes-base.stickyNote\",\n      \"position\": [1616, 288],\n      \"typeVersion\": 1,\n      \"id\": \"9cfcdb71-2986-47a3-8f03-250fcab1048d\",\n      \"name\": \"Sticky Note1\"\n    },\n    {\n      \"parameters\": {\n        \"content\": \"## 2. Chat with your docs\",\n        \"height\": 512,\n        \"width\": 1104,\n        \"color\": 7\n      },\n      \"type\": \"n8n-nodes-base.stickyNote\",\n      \"position\": [1616, 688],\n      \"typeVersion\": 1,\n      \"id\": \"d7f2f4b8-2e45-4902-8949-202b8b2c699b\",\n      \"name\": \"Sticky Note2\"\n    },\n    {\n      \"parameters\": {\"options\": {}},\n      \"type\": \"@n8n\u002Fn8n-nodes-langchain.chatTrigger\",\n      \"typeVersion\": 1.3,\n      \"position\": [1840, 784],\n      \"id\": \"4d2a6aa1-ca4d-4165-a635-7ef53084636b\",\n      \"name\": \"Chat input\",\n      \"webhookId\": \"4672d1f8-d2bb-4059-8761-7aa5792814c0\"\n    },\n    {\n      \"parameters\": {},\n      \"type\": \"n8n-nodes-base.manualTrigger\",\n      \"typeVersion\": 1,\n      \"position\": [1760, 432],\n      \"id\": \"3e9529b4-d0ae-4ea8-9d27-c96e7cbd6ad9\",\n      \"name\": \"When clicking 'Execute workflow'\"\n    },\n    {\n      \"parameters\": {\n        \"assignments\": {\n          \"assignments\": [\n            {\n              \"id\": \"d0e724df-685f-4661-b2ec-3cdd3c2ba0f1\",\n              \"name\": \"urls\",\n              \"value\": \"[USER_FILE_URLS_ARRAY]\",\n              \"type\": \"array\"\n            }\n          ]\n        },\n        \"options\": {}\n      },\n      \"type\": \"n8n-nodes-base.set\",\n      \"typeVersion\": 3.4,\n      \"position\": [1920, 432],\n      \"id\": \"6b409421-2270-497e-a7fd-b382d192314c\",\n      \"name\": \"Set file urls\"\n    },\n    {\n      \"parameters\": {\"fieldToSplitOut\": \"urls\", \"options\": {}},\n      \"type\": \"n8n-nodes-base.splitOut\",\n      \"typeVersion\": 1,\n      \"position\": [2080, 432],\n      \"id\": \"e73f6f2c-4d20-48cb-b132-551ff9c3dd61\",\n      \"name\": \"Split to list\"\n    },\n    {\n      \"parameters\": {\n        \"url\": \"={{ $json.urls }}\",\n        \"options\": {\"response\": {\"response\": {\"responseFormat\": \"file\"}}}\n      },\n      \"type\": \"n8n-nodes-base.httpRequest\",\n      \"typeVersion\": 4.2,\n      \"position\": [2240, 432],\n      \"id\": \"a58f8e1c-943b-4a24-8746-477ed9912ad4\",\n      \"name\": \"Download file\"\n    },\n    {\n      \"parameters\": {\n        \"resource\": \"file\",\n        \"operation\": \"uploadFile\",\n        \"assistantData\": \"{\\\"name\\\":\\\"[ASSISTANT_NAME]\\\",\\\"host\\\":\\\"https:\u002F\u002F[ASSISTANT_HOST]\\\"}\",\n        \"externalFileId\": \"={{ $('Split to list').item.json.urls }}\",\n        \"additionalFields\": {\"sourceTag\": \"n8n:n8n_nodes_pinecone_assistant:pinecone_n8n_skill\"}\n      },\n      \"type\": \"@pinecone-database\u002Fn8n-nodes-pinecone-assistant.pineconeAssistant\",\n      \"typeVersion\": 1.2,\n      \"position\": [2416, 432],\n      \"id\": \"196122df-d2b2-43e4-9f8d-710aedb595a6\",\n      \"name\": \"Upload file to Assistant\"\n    },\n    {\n      \"parameters\": {\n        \"assistantData\": \"{\\\"name\\\":\\\"[ASSISTANT_NAME]\\\",\\\"host\\\":\\\"https:\u002F\u002F[ASSISTANT_HOST]\\\"}\",\n        \"additionalFields\": {\"sourceTag\": \"n8n:n8n_nodes_pinecone_assistant:pinecone_n8n_skill\"}\n      },\n      \"type\": \"@pinecone-database\u002Fn8n-nodes-pinecone-assistant.pineconeAssistantTool\",\n      \"typeVersion\": 1.2,\n      \"position\": [2368, 992],\n      \"id\": \"c3ba53e9-511d-47e7-b7fb-38bb093d279f\",\n      \"name\": \"Get context from Assistant\"\n    }\n  ],\n  \"connections\": {\n    \"OpenAI Chat Model\": {\n      \"ai_languageModel\": [[{\"node\": \"AI Agent\", \"type\": \"ai_languageModel\", \"index\": 0}]]\n    },\n    \"Chat input\": {\n      \"main\": [[{\"node\": \"AI Agent\", \"type\": \"main\", \"index\": 0}]]\n    },\n    \"When clicking 'Execute workflow'\": {\n      \"main\": [[{\"node\": \"Set file urls\", \"type\": \"main\", \"index\": 0}]]\n    },\n    \"Set file urls\": {\n      \"main\": [[{\"node\": \"Split to list\", \"type\": \"main\", \"index\": 0}]]\n    },\n    \"Split to list\": {\n      \"main\": [[{\"node\": \"Download file\", \"type\": \"main\", \"index\": 0}]]\n    },\n    \"Download file\": {\n      \"main\": [[{\"node\": \"Upload file to Assistant\", \"type\": \"main\", \"index\": 0}]]\n    },\n    \"Get context from Assistant\": {\n      \"ai_tool\": [[{\"node\": \"AI Agent\", \"type\": \"ai_tool\", \"index\": 0}]]\n    }\n  },\n  \"pinData\": {},\n  \"meta\": {\"templateCredsSetupCompleted\": false}\n}\n```\n\n### Other Pinecone Assistant operations\n\n#### Upload File vs Update File — choosing the right operation\n\n| Scenario | Operation to use |\n|---|---|\n| File is guaranteed to be new (never ingested before) | `uploadFile` |\n| File may already exist in the assistant (re-ingestion, scheduled refresh) | `updateFile` |\n\n`updateFile` is idempotent: it finds all files with the matching `externalFileId`, deletes them, then uploads the new version. If no file exists with that ID it behaves exactly like `uploadFile`. Use `updateFile` whenever a workflow may run more than once on the same source files.\n\nParameters for `updateFile` are identical to `uploadFile`: `assistantData`, `externalFileId`, `inputDataFieldName`, and all `additionalFields` including `metadata`, `multimodalFile`, and `sourceTag`.\n\n```json\n{\n  \"parameters\": {\n    \"resource\": \"file\",\n    \"operation\": \"updateFile\",\n    \"assistantData\": \"{\\\"name\\\":\\\"[ASSISTANT_NAME]\\\",\\\"host\\\":\\\"https:\u002F\u002F[ASSISTANT_HOST]\\\"}\",\n    \"externalFileId\": \"={{ $('Split to list').item.json.urls }}\",\n    \"additionalFields\": {\"sourceTag\": \"n8n:n8n_nodes_pinecone_assistant:pinecone_n8n_skill\"}\n  },\n  \"type\": \"@pinecone-database\u002Fn8n-nodes-pinecone-assistant.pineconeAssistant\",\n  \"typeVersion\": 1.2\n}\n```\n\n#### List Files\nUse `resource: \"file\", operation: \"listFiles\"` to retrieve files, optionally filtered by metadata.\n\n```json\n{\n  \"parameters\": {\n    \"resource\": \"file\",\n    \"operation\": \"listFiles\",\n    \"assistantData\": \"{\\\"name\\\":\\\"[ASSISTANT_NAME]\\\",\\\"host\\\":\\\"https:\u002F\u002F[ASSISTANT_HOST]\\\"}\",\n    \"additionalFields\": {\n      \"sourceTag\": \"n8n:n8n_nodes_pinecone_assistant:pinecone_n8n_skill\",\n      \"metadataFilter\": {\n        \"metadataValues\": [{\"key\": \"department\", \"value\": \"legal\"}]\n      }\n    }\n  },\n  \"type\": \"@pinecone-database\u002Fn8n-nodes-pinecone-assistant.pineconeAssistant\",\n  \"typeVersion\": 1.2\n}\n```\n\nFor complex filters, use `advancedMetadataFilter` (a JSON string) instead of `metadataFilter` — never both:\n```json\n\"additionalFields\": {\n  \"advancedMetadataFilter\": \"{\\\"department\\\": {\\\"$in\\\": [\\\"legal\\\", \\\"finance\\\"]}}\"\n}\n```\n\n#### Get Context Snippets\nUse `resource: \"contextSnippet\", operation: \"getContextSnippets\"` to retrieve relevant text or image chunks directly — useful when you need raw retrieved context as workflow data rather than a chat reply.\n\n```json\n{\n  \"parameters\": {\n    \"resource\": \"contextSnippet\",\n    \"operation\": \"getContextSnippets\",\n    \"assistantData\": \"{\\\"name\\\":\\\"[ASSISTANT_NAME]\\\",\\\"host\\\":\\\"https:\u002F\u002F[ASSISTANT_HOST]\\\"}\",\n    \"query\": \"={{ $json.chatInput }}\",\n    \"additionalFields\": {\n      \"sourceTag\": \"n8n:n8n_nodes_pinecone_assistant:pinecone_n8n_skill\",\n      \"includeMultimodalContext\": true,\n      \"includeBinaryContent\": true,\n      \"topK\": 16,\n      \"snippetSize\": 2048\n    }\n  },\n  \"type\": \"@pinecone-database\u002Fn8n-nodes-pinecone-assistant.pineconeAssistant\",\n  \"typeVersion\": 1.2\n}\n```\n\nThe same `metadataFilter` \u002F `advancedMetadataFilter` options work on `getContextSnippets` to scope retrieval to files matching specific metadata. The `includeBinaryContent` flag only applies when `includeMultimodalContext` is `true`.\n\n---\n\n## Pinecone Vector Store Node — Best Practices and Workflow Generation\n\n### Node package name\n`@n8n\u002Fn8n-nodes-langchain.vectorStorePinecone`\n\n### Prerequisites\n- Create a Pinecone index in the Pinecone Console at https:\u002F\u002Fapp.pinecone.io\u002Forganizations\u002F-\u002Fprojects\u002F-\u002Findexes with the correct name and dimensions before running the workflow\n- Set up a Pinecone credential in n8n with your API key\n- Set up an OpenAI credential in n8n\n\n### Workflow architecture\nTwo-phase workflow with two separate `vectorStorePinecone` node instances:\n\n**Phase 1 — Ingestion** (run once or on a schedule):\n```\nManual Trigger → Set file URLs → Split Out → HTTP Request (download)\n  → Pinecone Vector Store (insert mode)\n       ↑ Default Data Loader ← Recursive Character Text Splitter\n       ↑ Embeddings OpenAI\n```\n\n**Phase 2 — Chat**:\n```\nChat Trigger → AI Agent ← Pinecone Vector Store (retrieve-as-tool mode)\n                               ↑ Embeddings OpenAI (same model as insert)\n                        ← OpenAI Chat Model\n```\n\n### Key configuration rules\n1. **Two node instances**: Use one `vectorStorePinecone` in `insert` mode for ingestion and a separate one in `retrieve-as-tool` mode for chat\n2. **Embedding model consistency**: The SAME embedding model and dimensions MUST be used in both insert and retrieve-as-tool nodes — they share a single Embeddings OpenAI node via the `ai_embedding` connection\n3. **Required companion nodes for the insert node**:\n   - `@n8n\u002Fn8n-nodes-langchain.embeddingsOpenAi` — set dimensions to match your index (1536 for text-embedding-3-small)\n   - `@n8n\u002Fn8n-nodes-langchain.textSplitterRecursiveCharacterTextSplitter` — connects to the data loader\n   - `@n8n\u002Fn8n-nodes-langchain.documentDefaultDataLoader` — set `dataType: binary` and `textSplittingMode: custom`\n4. **toolDescription**: Write a clear, specific description on the retrieve-as-tool node — the AI Agent uses this to decide when to query it\n5. **topK**: Use 20 as the default; increase for broader recall, decrease to reduce token usage\n6. **Metadata for citations**: In the Default Data Loader, add `external_file_url` as a metadata field set to `={{ $json.urls }}` so the AI Agent can cite sources\n7. **Credential**: Use `pineconeApi` credential type\n\n### Chunking guidance\n- **3000 chars \u002F 500 overlap**: Good default for long documents (articles, reports, documentation)\n- **500–1000 chars \u002F 100–200 overlap**: Better for Q&A-style retrieval or short, dense content\n- Reference: https:\u002F\u002Fwww.pinecone.io\u002Flearn\u002Fchunking-strategies\u002F\n\n### Index setup instructions\nWhen generating a workflow, always tell the user to:\n1. Go to https:\u002F\u002Fapp.pinecone.io\u002Forganizations\u002F-\u002Fprojects\u002F-\u002Findexes and create an index\n2. Set the name to match the `pineconeIndex` value in the workflow\n3. Select the embedding model that matches the n8n Embeddings node (text-embedding-3-small → 1536 dimensions)\n\n### Generating workflow JSON for the Vector Store path\n\nBuild the workflow to match what the user actually describes — their triggers, embedding model, chunking strategy, data sources, and structure. Ask about anything structurally significant they haven't mentioned. Only fall back to the defaults below when the user hasn't specified a value:\n- Index name: `n8n-index` (use `n8n-index-1`, `n8n-index-2`, etc. for multiples; must match an existing Pinecone index)\n- File URLs: sample Pinecone release notes PDFs\n- LLM model: `gpt-5-mini`\n- Embedding model: `text-embedding-3-small` (1536 dimensions)\n- Chunk size: 3000 chars \u002F 500 overlap\n- System message \u002F tool description: generic prompt about retrieving from the index with citations\n\nThe JSON below is a **reference configuration** showing correct parameter values, required fields, and connection types for each node. Use it as a guide for how to configure the nodes — not as a template to copy verbatim. Placeholders to substitute:\n- `[INDEX_NAME]` — index name\n- `[USER_FILE_URLS_ARRAY]` — JSON array of file URL strings, e.g. `[\"https:\u002F\u002Fexample.com\u002Fdoc.pdf\"]`\n- `[USER_MODEL]` — LLM model name, e.g. `gpt-5-mini`\n- `[USER_TOPIC]` — short description of the data, for the AI Agent system message\n- `[USER_TOOL_DESCRIPTION]` — description of what data the vector store contains, for the tool node\n\n```json\n{\n  \"nodes\": [\n    {\n      \"parameters\": {\n        \"mode\": \"insert\",\n        \"pineconeIndex\": {\n          \"__rl\": true,\n          \"value\": \"[INDEX_NAME]\",\n          \"mode\": \"list\",\n          \"cachedResultName\": \"[INDEX_NAME]\"\n        },\n        \"options\": {}\n      },\n      \"type\": \"@n8n\u002Fn8n-nodes-langchain.vectorStorePinecone\",\n      \"typeVersion\": 1.3,\n      \"position\": [224, 0],\n      \"id\": \"163c0a37-427c-4da7-a194-203ac216c88e\",\n      \"name\": \"Pinecone Vector Store\"\n    },\n    {\n      \"parameters\": {\n        \"options\": {\"dimensions\": 1536}\n      },\n      \"type\": \"@n8n\u002Fn8n-nodes-langchain.embeddingsOpenAi\",\n      \"typeVersion\": 1.2,\n      \"position\": [336, 608],\n      \"id\": \"a034bcb9-d813-4fd0-a68a-426c1f2b2aba\",\n      \"name\": \"Embeddings OpenAI\"\n    },\n    {\n      \"parameters\": {\"options\": {}},\n      \"type\": \"@n8n\u002Fn8n-nodes-langchain.chatTrigger\",\n      \"typeVersion\": 1.3,\n      \"position\": [-512, 896],\n      \"id\": \"56182cf7-2bda-4513-a2f9-18fb70c718ec\",\n      \"name\": \"When chat message received\",\n      \"webhookId\": \"30328376-a9e3-4f11-b1eb-2bbaadbea688\"\n    },\n    {\n      \"parameters\": {\n        \"options\": {\n          \"systemMessage\": \"You are a helpful assistant. Only use the Pinecone Vector Store Tool to retrieve data about [USER_TOPIC]. Include the file name and file url in citations wherever referenced in output.\"\n        }\n      },\n      \"type\": \"@n8n\u002Fn8n-nodes-langchain.agent\",\n      \"typeVersion\": 2.2,\n      \"position\": [-336, 896],\n      \"id\": \"36bb8361-edfd-47ff-aaf1-48f3c31fb1f7\",\n      \"name\": \"AI Agent\"\n    },\n    {\n      \"parameters\": {\n        \"model\": {\n          \"__rl\": true,\n          \"value\": \"[USER_MODEL]\",\n          \"mode\": \"list\",\n          \"cachedResultName\": \"[USER_MODEL]\"\n        },\n        \"options\": {}\n      },\n      \"type\": \"@n8n\u002Fn8n-nodes-langchain.lmChatOpenAi\",\n      \"typeVersion\": 1.2,\n      \"position\": [-336, 1200],\n      \"id\": \"22d00f25-44eb-40c1-8dae-b757e4b66690\",\n      \"name\": \"OpenAI Chat Model\"\n    },\n    {\n      \"parameters\": {\n        \"mode\": \"retrieve-as-tool\",\n        \"toolDescription\": \"[USER_TOOL_DESCRIPTION]\",\n        \"pineconeIndex\": {\n          \"__rl\": true,\n          \"value\": \"[INDEX_NAME]\",\n          \"mode\": \"list\",\n          \"cachedResultName\": \"[INDEX_NAME]\"\n        },\n        \"topK\": 20,\n        \"options\": {}\n      },\n      \"type\": \"@n8n\u002Fn8n-nodes-langchain.vectorStorePinecone\",\n      \"typeVersion\": 1.3,\n      \"position\": [-16, 1104],\n      \"id\": \"15c599b7-93bb-44b7-b95c-190200de2a20\",\n      \"name\": \"Pinecone Vector Store Tool\"\n    },\n    {\n      \"parameters\": {\n        \"content\": \"## 1. Process new files, embed, and upsert to Pinecone index\",\n        \"height\": 576,\n        \"width\": 1744,\n        \"color\": 7\n      },\n      \"type\": \"n8n-nodes-base.stickyNote\",\n      \"position\": [-608, -80],\n      \"typeVersion\": 1,\n      \"id\": \"18f22d77-fb10-4fa7-b942-2fafd7ca30c3\",\n      \"name\": \"Sticky Note\"\n    },\n    {\n      \"parameters\": {\n        \"content\": \"## 2. Chat with your docs\",\n        \"height\": 640,\n        \"width\": 1744,\n        \"color\": 7\n      },\n      \"type\": \"n8n-nodes-base.stickyNote\",\n      \"position\": [-608, 784],\n      \"typeVersion\": 1,\n      \"id\": \"7b7be380-821c-4012-8f1a-1606527d2544\",\n      \"name\": \"Sticky Note1\"\n    },\n    {\n      \"parameters\": {},\n      \"type\": \"n8n-nodes-base.manualTrigger\",\n      \"typeVersion\": 1,\n      \"position\": [-512, 0],\n      \"id\": \"a0a3b917-765b-445e-9866-d3fc651ef6a8\",\n      \"name\": \"When clicking 'Execute workflow'\"\n    },\n    {\n      \"parameters\": {\n        \"assignments\": {\n          \"assignments\": [\n            {\n              \"id\": \"d0e724df-685f-4661-b2ec-3cdd3c2ba0f1\",\n              \"name\": \"urls\",\n              \"value\": \"[USER_FILE_URLS_ARRAY]\",\n              \"type\": \"array\"\n            }\n          ]\n        },\n        \"options\": {}\n      },\n      \"type\": \"n8n-nodes-base.set\",\n      \"typeVersion\": 3.4,\n      \"position\": [-352, 0],\n      \"id\": \"651439de-5525-4d0a-b055-1d722e81c0aa\",\n      \"name\": \"Set file urls\"\n    },\n    {\n      \"parameters\": {\"fieldToSplitOut\": \"urls\", \"options\": {}},\n      \"type\": \"n8n-nodes-base.splitOut\",\n      \"typeVersion\": 1,\n      \"position\": [-192, 0],\n      \"id\": \"8878265e-9e6f-4d9a-b533-53100205eb38\",\n      \"name\": \"Split to list\"\n    },\n    {\n      \"parameters\": {\n        \"chunkSize\": 3000,\n        \"chunkOverlap\": 500,\n        \"options\": {}\n      },\n      \"type\": \"@n8n\u002Fn8n-nodes-langchain.textSplitterRecursiveCharacterTextSplitter\",\n      \"typeVersion\": 1,\n      \"position\": [416, 352],\n      \"id\": \"347ba65b-9fad-4b92-a90f-6690df8e2a7e\",\n      \"name\": \"Recursive Character Text Splitter\"\n    },\n    {\n      \"parameters\": {\n        \"url\": \"={{ $json.urls }}\",\n        \"options\": {\"response\": {\"response\": {\"responseFormat\": \"file\"}}}\n      },\n      \"type\": \"n8n-nodes-base.httpRequest\",\n      \"typeVersion\": 4.2,\n      \"position\": [-32, 0],\n      \"id\": \"edf963af-18ee-4605-9b1e-49118c56b52d\",\n      \"name\": \"Download file\"\n    },\n    {\n      \"parameters\": {\n        \"dataType\": \"binary\",\n        \"textSplittingMode\": \"custom\",\n        \"options\": {\n          \"metadata\": {\n            \"metadataValues\": [\n              {\"name\": \"external_file_url\", \"value\": \"={{ $json.urls }}\"}\n            ]\n          }\n        }\n      },\n      \"type\": \"@n8n\u002Fn8n-nodes-langchain.documentDefaultDataLoader\",\n      \"typeVersion\": 1.1,\n      \"position\": [336, 192],\n      \"id\": \"e9b99301-3af1-4d19-ab78-3fd0e8946fd1\",\n      \"name\": \"Default data loader\"\n    }\n  ],\n  \"connections\": {\n    \"Embeddings OpenAI\": {\n      \"ai_embedding\": [[\n        {\"node\": \"Pinecone Vector Store\", \"type\": \"ai_embedding\", \"index\": 0},\n        {\"node\": \"Pinecone Vector Store Tool\", \"type\": \"ai_embedding\", \"index\": 0}\n      ]]\n    },\n    \"When chat message received\": {\n      \"main\": [[{\"node\": \"AI Agent\", \"type\": \"main\", \"index\": 0}]]\n    },\n    \"OpenAI Chat Model\": {\n      \"ai_languageModel\": [[{\"node\": \"AI Agent\", \"type\": \"ai_languageModel\", \"index\": 0}]]\n    },\n    \"Pinecone Vector Store Tool\": {\n      \"ai_tool\": [[{\"node\": \"AI Agent\", \"type\": \"ai_tool\", \"index\": 0}]]\n    },\n    \"When clicking 'Execute workflow'\": {\n      \"main\": [[{\"node\": \"Set file urls\", \"type\": \"main\", \"index\": 0}]]\n    },\n    \"Set file urls\": {\n      \"main\": [[{\"node\": \"Split to list\", \"type\": \"main\", \"index\": 0}]]\n    },\n    \"Split to list\": {\n      \"main\": [[{\"node\": \"Download file\", \"type\": \"main\", \"index\": 0}]]\n    },\n    \"Recursive Character Text Splitter\": {\n      \"ai_textSplitter\": [[{\"node\": \"Default data loader\", \"type\": \"ai_textSplitter\", \"index\": 0}]]\n    },\n    \"Download file\": {\n      \"main\": [[{\"node\": \"Pinecone Vector Store\", \"type\": \"main\", \"index\": 0}]]\n    },\n    \"Default data loader\": {\n      \"ai_document\": [[{\"node\": \"Pinecone Vector Store\", \"type\": \"ai_document\", \"index\": 0}]]\n    }\n  },\n  \"pinData\": {},\n  \"meta\": {\"templateCredsSetupCompleted\": false}\n}\n```\n\n---\n\n## Debugging guidance\n\nWhen a user reports a broken workflow, ask which node is failing and what error they see, then refer to these common issues:\n\n| Error \u002F Symptom | Cause | Fix |\n|---|---|---|\n| \"Assistant not found\" | `assistantData.name` doesn't match an existing assistant | Create the assistant in the Pinecone Console first, then match the name exactly |\n| \"Invalid credentials\" | Pinecone API key not set or wrong credential on the node | Re-select the `pineconeApi` credential on each Pinecone node |\n| \"Dimension mismatch\" | Embedding model dimensions don't match the index | Index and embeddings node must use the same dimensions (e.g., 1536 for text-embedding-3-small) |\n| Tool never called by Agent | `toolDescription` is vague | Make the description specific: what data is in the store, what questions it can answer |\n| No results returned | Ingestion didn't run, or topK too low | Run Phase 1 first; try increasing topK to 20+ |\n| HTTP node calling Pinecone API | Wrong pattern | Replace with `@pinecone-database\u002Fn8n-nodes-pinecone-assistant.pineconeAssistant` or `@n8n\u002Fn8n-nodes-langchain.vectorStorePinecone` |\n\n---\n\n## Best practices review checklist\n\nWhen reviewing an existing workflow:\n1. **No HTTP nodes calling Pinecone endpoints** — replace any with the proper Pinecone node\n2. **Vector Store**: same Embeddings node connected to both insert and retrieve-as-tool instances\n3. **Assistant**: `assistantData` includes both `name` and `host`; `sourceTag` is present in `additionalFields`\n4. **toolDescription** is specific and descriptive (not generic like \"a vector store\")\n5. **Vector Store metadata**: `external_file_url` stored in the Default Data Loader metadata for source citations\n6. **Assistant file metadata**: files uploaded with meaningful key-value metadata when filtering will be needed later\n7. **Metadata filter**: `listFiles` and `getContextSnippets` use a metadata filter (not both filter fields at once) when scoping to a subset of files\n8. **Multimodal upload**: `multimodalFile: true` is set on `uploadFile` when PDFs contain images or charts — this is required to index visual content and is NOT the default\n9. **Multimodal retrieval**: `includeMultimodalContext: true` and `includeBinaryContent: true` on `getContextSnippets` when the workflow needs image chunks alongside text\n10. **Chunk size** is appropriate for the content type (see chunking guidance above)\n11. **Index exists** with correct dimensions before the workflow runs\n",{"data":40,"body":42},{"name":4,"description":6,"allowed-tools":41},"Write",{"type":43,"children":44},"root",[45,54,60,102,112,116,123,128,151,154,160,165,173,186,196,201,209,232,239,257,260,266,273,298,304,327,333,338,348,360,370,379,385,1055,1061,1066,1118,1130,1206,6229,6235,6242,6303,6334,6400,6769,6775,6788,7251,7271,7407,7413,7425,7910,7957,7960,7966,7972,7980,7985,8010,8015,8028,8036,8045,8053,8062,8067,8238,8244,8278,8284,8289,8322,8328,8333,8399,8408,8471,14975,14978,14984,14989,15154,15157,15163,15168,15364],{"type":46,"tag":47,"props":48,"children":50},"element","h1",{"id":49},"pinecone-n8n-workflow-skill",[51],{"type":52,"value":53},"text","Pinecone n8n Workflow Skill",{"type":46,"tag":55,"props":56,"children":57},"p",{},[58],{"type":52,"value":59},"This skill helps you build n8n workflows with Pinecone nodes following best practices. It covers two Pinecone nodes:",{"type":46,"tag":61,"props":62,"children":63},"ul",{},[64,85],{"type":46,"tag":65,"props":66,"children":67},"li",{},[68,74,76,83],{"type":46,"tag":69,"props":70,"children":71},"strong",{},[72],{"type":52,"value":73},"Pinecone Assistant",{"type":52,"value":75}," (",{"type":46,"tag":77,"props":78,"children":80},"code",{"className":79},[],[81],{"type":52,"value":82},"@pinecone-database\u002Fn8n-nodes-pinecone-assistant",{"type":52,"value":84},") — recommended for most use cases",{"type":46,"tag":65,"props":86,"children":87},{},[88,93,94,100],{"type":46,"tag":69,"props":89,"children":90},{},[91],{"type":52,"value":92},"Pinecone Vector Store",{"type":52,"value":75},{"type":46,"tag":77,"props":95,"children":97},{"className":96},[],[98],{"type":52,"value":99},"@n8n\u002Fn8n-nodes-langchain.vectorStorePinecone",{"type":52,"value":101},") — for advanced control",{"type":46,"tag":55,"props":103,"children":104},{},[105,110],{"type":46,"tag":69,"props":106,"children":107},{},[108],{"type":52,"value":109},"Core rule:",{"type":52,"value":111}," Always use the node's built-in resources and operations. Never suggest using the HTTP node to call the Pinecone REST API directly.",{"type":46,"tag":113,"props":114,"children":115},"hr",{},[],{"type":46,"tag":117,"props":118,"children":120},"h2",{"id":119},"step-1-understand-the-users-scenario",[121],{"type":52,"value":122},"Step 1: Understand the user's scenario",{"type":46,"tag":55,"props":124,"children":125},{},[126],{"type":52,"value":127},"Ask the user what they're trying to do:",{"type":46,"tag":61,"props":129,"children":130},{},[131,136,141,146],{"type":46,"tag":65,"props":132,"children":133},{},[134],{"type":52,"value":135},"Build a new workflow from scratch",{"type":46,"tag":65,"props":137,"children":138},{},[139],{"type":52,"value":140},"Configure or understand a specific Pinecone node",{"type":46,"tag":65,"props":142,"children":143},{},[144],{"type":52,"value":145},"Debug a workflow that isn't working",{"type":46,"tag":65,"props":147,"children":148},{},[149],{"type":52,"value":150},"Review an existing workflow for best practices",{"type":46,"tag":113,"props":152,"children":153},{},[],{"type":46,"tag":117,"props":155,"children":157},{"id":156},"step-2-node-selection-for-new-workflows-and-configuration-questions",[158],{"type":52,"value":159},"Step 2: Node selection (for new workflows and configuration questions)",{"type":46,"tag":55,"props":161,"children":162},{},[163],{"type":52,"value":164},"Always present the Pinecone Assistant node as the recommended choice first. Do NOT skip this step based on your own inference about which node fits better — even if the use case mentions specific triggers (Google Drive, webhooks, etc.) or file types (text, markdown, PDF), those details do not determine which node to use.",{"type":46,"tag":55,"props":166,"children":167},{},[168],{"type":46,"tag":69,"props":169,"children":170},{},[171],{"type":52,"value":172},"Only skip this step if:",{"type":46,"tag":61,"props":174,"children":175},{},[176,181],{"type":46,"tag":65,"props":177,"children":178},{},[179],{"type":52,"value":180},"The user explicitly names a specific node (e.g. \"I want to use the Vector Store node\", \"help me set up pineconeAssistant\")",{"type":46,"tag":65,"props":182,"children":183},{},[184],{"type":52,"value":185},"The user is debugging or configuring an existing workflow that already has a specific Pinecone node in it",{"type":46,"tag":55,"props":187,"children":188},{},[189,194],{"type":46,"tag":69,"props":190,"children":191},{},[192],{"type":52,"value":193},"If the user has not named a node, always ask or recommend the Assistant node first.",{"type":52,"value":195}," If the user said \"use defaults\" or you cannot ask, default to the Pinecone Assistant node and proceed with the Assistant path.",{"type":46,"tag":55,"props":197,"children":198},{},[199],{"type":52,"value":200},"Ask the user which node they want to use, presenting these two options:",{"type":46,"tag":55,"props":202,"children":203},{},[204],{"type":46,"tag":69,"props":205,"children":206},{},[207],{"type":52,"value":208},"Pinecone Assistant (Recommended)",{"type":46,"tag":61,"props":210,"children":211},{},[212,217,222,227],{"type":46,"tag":65,"props":213,"children":214},{},[215],{"type":52,"value":216},"Fully managed RAG — Pinecone handles chunking, embedding, and indexing automatically",{"type":46,"tag":65,"props":218,"children":219},{},[220],{"type":52,"value":221},"Built-in citations with file names and URLs",{"type":46,"tag":65,"props":223,"children":224},{},[225],{"type":52,"value":226},"Simpler setup: no embedding model or text splitter needed in n8n",{"type":46,"tag":65,"props":228,"children":229},{},[230],{"type":52,"value":231},"Great for: document Q&A, chat with files, knowledge base search",{"type":46,"tag":55,"props":233,"children":234},{},[235],{"type":46,"tag":69,"props":236,"children":237},{},[238],{"type":52,"value":92},{"type":46,"tag":61,"props":240,"children":241},{},[242,247,252],{"type":46,"tag":65,"props":243,"children":244},{},[245],{"type":52,"value":246},"Full control over embedding model, chunking strategy, and metadata",{"type":46,"tag":65,"props":248,"children":249},{},[250],{"type":52,"value":251},"Works with any embedding model (OpenAI, Cohere, HuggingFace, etc.)",{"type":46,"tag":65,"props":253,"children":254},{},[255],{"type":52,"value":256},"Required when: you need custom embeddings, have an existing Pinecone index, need metadata filtering, or need fine-grained control over chunking",{"type":46,"tag":113,"props":258,"children":259},{},[],{"type":46,"tag":117,"props":261,"children":263},{"id":262},"pinecone-assistant-node-best-practices-and-workflow-generation",[264],{"type":52,"value":265},"Pinecone Assistant Node — Best Practices and Workflow Generation",{"type":46,"tag":267,"props":268,"children":270},"h3",{"id":269},"node-package-names",[271],{"type":52,"value":272},"Node package names",{"type":46,"tag":61,"props":274,"children":275},{},[276,287],{"type":46,"tag":65,"props":277,"children":278},{},[279,281],{"type":52,"value":280},"File operations (upload, list, delete): ",{"type":46,"tag":77,"props":282,"children":284},{"className":283},[],[285],{"type":52,"value":286},"@pinecone-database\u002Fn8n-nodes-pinecone-assistant.pineconeAssistant",{"type":46,"tag":65,"props":288,"children":289},{},[290,292],{"type":52,"value":291},"Chat\u002Fretrieval as AI Agent tool: ",{"type":46,"tag":77,"props":293,"children":295},{"className":294},[],[296],{"type":52,"value":297},"@pinecone-database\u002Fn8n-nodes-pinecone-assistant.pineconeAssistantTool",{"type":46,"tag":267,"props":299,"children":301},{"id":300},"prerequisites",[302],{"type":52,"value":303},"Prerequisites",{"type":46,"tag":61,"props":305,"children":306},{},[307,322],{"type":46,"tag":65,"props":308,"children":309},{},[310,312,320],{"type":52,"value":311},"Create a Pinecone Assistant in the Pinecone Console at ",{"type":46,"tag":313,"props":314,"children":318},"a",{"href":315,"rel":316},"https:\u002F\u002Fapp.pinecone.io\u002Forganizations\u002F-\u002Fprojects\u002F-\u002Fassistant",[317],"nofollow",[319],{"type":52,"value":315},{"type":52,"value":321}," before running the workflow",{"type":46,"tag":65,"props":323,"children":324},{},[325],{"type":52,"value":326},"Set up a Pinecone credential in n8n with your API key",{"type":46,"tag":267,"props":328,"children":330},{"id":329},"workflow-architecture",[331],{"type":52,"value":332},"Workflow architecture",{"type":46,"tag":55,"props":334,"children":335},{},[336],{"type":52,"value":337},"The standard pattern is a two-phase workflow:",{"type":46,"tag":55,"props":339,"children":340},{},[341,346],{"type":46,"tag":69,"props":342,"children":343},{},[344],{"type":52,"value":345},"Phase 1 — Ingestion",{"type":52,"value":347}," (run once or on a schedule):",{"type":46,"tag":349,"props":350,"children":354},"pre",{"className":351,"code":353,"language":52},[352],"language-text","Manual Trigger → Set file URLs → Split Out → HTTP Request (download) → Pinecone Assistant (uploadFile)\n",[355],{"type":46,"tag":77,"props":356,"children":358},{"__ignoreMap":357},"",[359],{"type":52,"value":353},{"type":46,"tag":55,"props":361,"children":362},{},[363,368],{"type":46,"tag":69,"props":364,"children":365},{},[366],{"type":52,"value":367},"Phase 2 — Chat",{"type":52,"value":369},":",{"type":46,"tag":349,"props":371,"children":374},{"className":372,"code":373,"language":52},[352],"Chat Trigger → AI Agent ← Pinecone Assistant Tool (connected as ai_tool)\n                        ← OpenAI Chat Model (connected as ai_languageModel)\n",[375],{"type":46,"tag":77,"props":376,"children":377},{"__ignoreMap":357},[378],{"type":52,"value":373},{"type":46,"tag":267,"props":380,"children":382},{"id":381},"key-configuration-rules",[383],{"type":52,"value":384},"Key configuration rules",{"type":46,"tag":386,"props":387,"children":388},"ol",{},[389,518,583,607,617,635,828,1029],{"type":46,"tag":65,"props":390,"children":391},{},[392,397,399,405,407,413,415,508,510,516],{"type":46,"tag":69,"props":393,"children":394},{},[395],{"type":52,"value":396},"assistantData parameter",{"type":52,"value":398},": Always include BOTH ",{"type":46,"tag":77,"props":400,"children":402},{"className":401},[],[403],{"type":52,"value":404},"name",{"type":52,"value":406}," and ",{"type":46,"tag":77,"props":408,"children":410},{"className":409},[],[411],{"type":52,"value":412},"host",{"type":52,"value":414}," fields:\n",{"type":46,"tag":349,"props":416,"children":420},{"className":417,"code":418,"language":419,"meta":357,"style":357},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\"name\": \"your-assistant-name\", \"host\": \"https:\u002F\u002Fyour-assistant-host.pinecone.io\"}\n","json",[421],{"type":46,"tag":77,"props":422,"children":423},{"__ignoreMap":357},[424],{"type":46,"tag":425,"props":426,"children":429},"span",{"class":427,"line":428},"line",1,[430,436,441,446,450,454,459,465,469,474,478,482,486,490,494,499,503],{"type":46,"tag":425,"props":431,"children":433},{"style":432},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[434],{"type":52,"value":435},"{",{"type":46,"tag":425,"props":437,"children":438},{"style":432},[439],{"type":52,"value":440},"\"",{"type":46,"tag":425,"props":442,"children":444},{"style":443},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[445],{"type":52,"value":404},{"type":46,"tag":425,"props":447,"children":448},{"style":432},[449],{"type":52,"value":440},{"type":46,"tag":425,"props":451,"children":452},{"style":432},[453],{"type":52,"value":369},{"type":46,"tag":425,"props":455,"children":456},{"style":432},[457],{"type":52,"value":458}," \"",{"type":46,"tag":425,"props":460,"children":462},{"style":461},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[463],{"type":52,"value":464},"your-assistant-name",{"type":46,"tag":425,"props":466,"children":467},{"style":432},[468],{"type":52,"value":440},{"type":46,"tag":425,"props":470,"children":471},{"style":432},[472],{"type":52,"value":473},",",{"type":46,"tag":425,"props":475,"children":476},{"style":432},[477],{"type":52,"value":458},{"type":46,"tag":425,"props":479,"children":480},{"style":443},[481],{"type":52,"value":412},{"type":46,"tag":425,"props":483,"children":484},{"style":432},[485],{"type":52,"value":440},{"type":46,"tag":425,"props":487,"children":488},{"style":432},[489],{"type":52,"value":369},{"type":46,"tag":425,"props":491,"children":492},{"style":432},[493],{"type":52,"value":458},{"type":46,"tag":425,"props":495,"children":496},{"style":461},[497],{"type":52,"value":498},"https:\u002F\u002Fyour-assistant-host.pinecone.io",{"type":46,"tag":425,"props":500,"children":501},{"style":432},[502],{"type":52,"value":440},{"type":46,"tag":425,"props":504,"children":505},{"style":432},[506],{"type":52,"value":507},"}\n",{"type":52,"value":509},"\nFind your assistant's host in the Pinecone Console: open the assistant detail page and copy the host URL (format: ",{"type":46,"tag":77,"props":511,"children":513},{"className":512},[],[514],{"type":52,"value":515},"https:\u002F\u002F\u003Cregion>-data.\u003Csubdomain>.pinecone.io",{"type":52,"value":517},").",{"type":46,"tag":65,"props":519,"children":520},{},[521,526,528,534,536],{"type":46,"tag":69,"props":522,"children":523},{},[524],{"type":52,"value":525},"sourceTag",{"type":52,"value":527},": Always include in ",{"type":46,"tag":77,"props":529,"children":531},{"className":530},[],[532],{"type":52,"value":533},"additionalFields",{"type":52,"value":535},":\n",{"type":46,"tag":349,"props":537,"children":539},{"className":417,"code":538,"language":419,"meta":357,"style":357},"{\"sourceTag\": \"n8n:n8n_nodes_pinecone_assistant:pinecone_n8n_skill\"}\n",[540],{"type":46,"tag":77,"props":541,"children":542},{"__ignoreMap":357},[543],{"type":46,"tag":425,"props":544,"children":545},{"class":427,"line":428},[546,550,554,558,562,566,570,575,579],{"type":46,"tag":425,"props":547,"children":548},{"style":432},[549],{"type":52,"value":435},{"type":46,"tag":425,"props":551,"children":552},{"style":432},[553],{"type":52,"value":440},{"type":46,"tag":425,"props":555,"children":556},{"style":443},[557],{"type":52,"value":525},{"type":46,"tag":425,"props":559,"children":560},{"style":432},[561],{"type":52,"value":440},{"type":46,"tag":425,"props":563,"children":564},{"style":432},[565],{"type":52,"value":369},{"type":46,"tag":425,"props":567,"children":568},{"style":432},[569],{"type":52,"value":458},{"type":46,"tag":425,"props":571,"children":572},{"style":461},[573],{"type":52,"value":574},"n8n:n8n_nodes_pinecone_assistant:pinecone_n8n_skill",{"type":46,"tag":425,"props":576,"children":577},{"style":432},[578],{"type":52,"value":440},{"type":46,"tag":425,"props":580,"children":581},{"style":432},[582],{"type":52,"value":507},{"type":46,"tag":65,"props":584,"children":585},{},[586,591,593,599,601],{"type":46,"tag":69,"props":587,"children":588},{},[589],{"type":52,"value":590},"Connection type",{"type":52,"value":592},": The Assistant Tool connects to the AI Agent via the ",{"type":46,"tag":77,"props":594,"children":596},{"className":595},[],[597],{"type":52,"value":598},"ai_tool",{"type":52,"value":600}," connection — NOT ",{"type":46,"tag":77,"props":602,"children":604},{"className":603},[],[605],{"type":52,"value":606},"main",{"type":46,"tag":65,"props":608,"children":609},{},[610,615],{"type":46,"tag":69,"props":611,"children":612},{},[613],{"type":52,"value":614},"externalFileId",{"type":52,"value":616},": Set this to the file URL expression so Pinecone stores it as a reference for citations",{"type":46,"tag":65,"props":618,"children":619},{},[620,625,627,633],{"type":46,"tag":69,"props":621,"children":622},{},[623],{"type":52,"value":624},"Credential",{"type":52,"value":626},": Use ",{"type":46,"tag":77,"props":628,"children":630},{"className":629},[],[631],{"type":52,"value":632},"pineconeApi",{"type":52,"value":634}," credential type for both node variants",{"type":46,"tag":65,"props":636,"children":637},{},[638,643,645,651,653,659,661,666,668],{"type":46,"tag":69,"props":639,"children":640},{},[641],{"type":52,"value":642},"File metadata on upload",{"type":52,"value":644},": Add key-value metadata via ",{"type":46,"tag":77,"props":646,"children":648},{"className":647},[],[649],{"type":52,"value":650},"additionalFields.metadata.metadataValues",{"type":52,"value":652}," — an array of ",{"type":46,"tag":77,"props":654,"children":656},{"className":655},[],[657],{"type":52,"value":658},"{\"key\": \"...\", \"value\": \"...\"}",{"type":52,"value":660}," objects. The ",{"type":46,"tag":77,"props":662,"children":664},{"className":663},[],[665],{"type":52,"value":614},{"type":52,"value":667}," is automatically added to metadata; do not include it manually. Example:\n",{"type":46,"tag":349,"props":669,"children":671},{"className":417,"code":670,"language":419,"meta":357,"style":357},"\"additionalFields\": {\n  \"metadata\": {\"metadataValues\": [{\"key\": \"department\", \"value\": \"legal\"}]}\n}\n",[672],{"type":46,"tag":77,"props":673,"children":674},{"__ignoreMap":357},[675,701,820],{"type":46,"tag":425,"props":676,"children":677},{"class":427,"line":428},[678,682,686,690,696],{"type":46,"tag":425,"props":679,"children":680},{"style":432},[681],{"type":52,"value":440},{"type":46,"tag":425,"props":683,"children":684},{"style":461},[685],{"type":52,"value":533},{"type":46,"tag":425,"props":687,"children":688},{"style":432},[689],{"type":52,"value":440},{"type":46,"tag":425,"props":691,"children":693},{"style":692},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[694],{"type":52,"value":695},": ",{"type":46,"tag":425,"props":697,"children":698},{"style":432},[699],{"type":52,"value":700},"{\n",{"type":46,"tag":425,"props":702,"children":703},{"class":427,"line":27},[704,709,714,718,722,727,731,737,741,745,750,754,760,764,768,772,777,781,785,789,794,798,802,806,811,815],{"type":46,"tag":425,"props":705,"children":706},{"style":432},[707],{"type":52,"value":708},"  \"",{"type":46,"tag":425,"props":710,"children":711},{"style":443},[712],{"type":52,"value":713},"metadata",{"type":46,"tag":425,"props":715,"children":716},{"style":432},[717],{"type":52,"value":440},{"type":46,"tag":425,"props":719,"children":720},{"style":432},[721],{"type":52,"value":369},{"type":46,"tag":425,"props":723,"children":724},{"style":432},[725],{"type":52,"value":726}," {",{"type":46,"tag":425,"props":728,"children":729},{"style":432},[730],{"type":52,"value":440},{"type":46,"tag":425,"props":732,"children":734},{"style":733},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[735],{"type":52,"value":736},"metadataValues",{"type":46,"tag":425,"props":738,"children":739},{"style":432},[740],{"type":52,"value":440},{"type":46,"tag":425,"props":742,"children":743},{"style":432},[744],{"type":52,"value":369},{"type":46,"tag":425,"props":746,"children":747},{"style":432},[748],{"type":52,"value":749}," [{",{"type":46,"tag":425,"props":751,"children":752},{"style":432},[753],{"type":52,"value":440},{"type":46,"tag":425,"props":755,"children":757},{"style":756},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[758],{"type":52,"value":759},"key",{"type":46,"tag":425,"props":761,"children":762},{"style":432},[763],{"type":52,"value":440},{"type":46,"tag":425,"props":765,"children":766},{"style":432},[767],{"type":52,"value":369},{"type":46,"tag":425,"props":769,"children":770},{"style":432},[771],{"type":52,"value":458},{"type":46,"tag":425,"props":773,"children":774},{"style":461},[775],{"type":52,"value":776},"department",{"type":46,"tag":425,"props":778,"children":779},{"style":432},[780],{"type":52,"value":440},{"type":46,"tag":425,"props":782,"children":783},{"style":432},[784],{"type":52,"value":473},{"type":46,"tag":425,"props":786,"children":787},{"style":432},[788],{"type":52,"value":458},{"type":46,"tag":425,"props":790,"children":791},{"style":756},[792],{"type":52,"value":793},"value",{"type":46,"tag":425,"props":795,"children":796},{"style":432},[797],{"type":52,"value":440},{"type":46,"tag":425,"props":799,"children":800},{"style":432},[801],{"type":52,"value":369},{"type":46,"tag":425,"props":803,"children":804},{"style":432},[805],{"type":52,"value":458},{"type":46,"tag":425,"props":807,"children":808},{"style":461},[809],{"type":52,"value":810},"legal",{"type":46,"tag":425,"props":812,"children":813},{"style":432},[814],{"type":52,"value":440},{"type":46,"tag":425,"props":816,"children":817},{"style":432},[818],{"type":52,"value":819},"}]}\n",{"type":46,"tag":425,"props":821,"children":823},{"class":427,"line":822},3,[824],{"type":46,"tag":425,"props":825,"children":826},{"style":432},[827],{"type":52,"value":507},{"type":46,"tag":65,"props":829,"children":830},{},[831,836,837,843,845,851,853,859,861,867,869,875,876,882,884],{"type":46,"tag":69,"props":832,"children":833},{},[834],{"type":52,"value":835},"Metadata filtering on listFiles",{"type":52,"value":626},{"type":46,"tag":77,"props":838,"children":840},{"className":839},[],[841],{"type":52,"value":842},"additionalFields.metadataFilter.metadataValues",{"type":52,"value":844}," (same ",{"type":46,"tag":77,"props":846,"children":848},{"className":847},[],[849],{"type":52,"value":850},"{key, value}",{"type":52,"value":852}," array) for simple equality filters, or ",{"type":46,"tag":77,"props":854,"children":856},{"className":855},[],[857],{"type":52,"value":858},"additionalFields.advancedMetadataFilter",{"type":52,"value":860}," (a JSON string) for operators like ",{"type":46,"tag":77,"props":862,"children":864},{"className":863},[],[865],{"type":52,"value":866},"$or",{"type":52,"value":868},", ",{"type":46,"tag":77,"props":870,"children":872},{"className":871},[],[873],{"type":52,"value":874},"$ne",{"type":52,"value":868},{"type":46,"tag":77,"props":877,"children":879},{"className":878},[],[880],{"type":52,"value":881},"$in",{"type":52,"value":883},". Cannot set both at once. Example simple filter:\n",{"type":46,"tag":349,"props":885,"children":887},{"className":417,"code":886,"language":419,"meta":357,"style":357},"\"additionalFields\": {\n  \"metadataFilter\": {\"metadataValues\": [{\"key\": \"department\", \"value\": \"legal\"}]}\n}\n",[888],{"type":46,"tag":77,"props":889,"children":890},{"__ignoreMap":357},[891,914,1022],{"type":46,"tag":425,"props":892,"children":893},{"class":427,"line":428},[894,898,902,906,910],{"type":46,"tag":425,"props":895,"children":896},{"style":432},[897],{"type":52,"value":440},{"type":46,"tag":425,"props":899,"children":900},{"style":461},[901],{"type":52,"value":533},{"type":46,"tag":425,"props":903,"children":904},{"style":432},[905],{"type":52,"value":440},{"type":46,"tag":425,"props":907,"children":908},{"style":692},[909],{"type":52,"value":695},{"type":46,"tag":425,"props":911,"children":912},{"style":432},[913],{"type":52,"value":700},{"type":46,"tag":425,"props":915,"children":916},{"class":427,"line":27},[917,921,926,930,934,938,942,946,950,954,958,962,966,970,974,978,982,986,990,994,998,1002,1006,1010,1014,1018],{"type":46,"tag":425,"props":918,"children":919},{"style":432},[920],{"type":52,"value":708},{"type":46,"tag":425,"props":922,"children":923},{"style":443},[924],{"type":52,"value":925},"metadataFilter",{"type":46,"tag":425,"props":927,"children":928},{"style":432},[929],{"type":52,"value":440},{"type":46,"tag":425,"props":931,"children":932},{"style":432},[933],{"type":52,"value":369},{"type":46,"tag":425,"props":935,"children":936},{"style":432},[937],{"type":52,"value":726},{"type":46,"tag":425,"props":939,"children":940},{"style":432},[941],{"type":52,"value":440},{"type":46,"tag":425,"props":943,"children":944},{"style":733},[945],{"type":52,"value":736},{"type":46,"tag":425,"props":947,"children":948},{"style":432},[949],{"type":52,"value":440},{"type":46,"tag":425,"props":951,"children":952},{"style":432},[953],{"type":52,"value":369},{"type":46,"tag":425,"props":955,"children":956},{"style":432},[957],{"type":52,"value":749},{"type":46,"tag":425,"props":959,"children":960},{"style":432},[961],{"type":52,"value":440},{"type":46,"tag":425,"props":963,"children":964},{"style":756},[965],{"type":52,"value":759},{"type":46,"tag":425,"props":967,"children":968},{"style":432},[969],{"type":52,"value":440},{"type":46,"tag":425,"props":971,"children":972},{"style":432},[973],{"type":52,"value":369},{"type":46,"tag":425,"props":975,"children":976},{"style":432},[977],{"type":52,"value":458},{"type":46,"tag":425,"props":979,"children":980},{"style":461},[981],{"type":52,"value":776},{"type":46,"tag":425,"props":983,"children":984},{"style":432},[985],{"type":52,"value":440},{"type":46,"tag":425,"props":987,"children":988},{"style":432},[989],{"type":52,"value":473},{"type":46,"tag":425,"props":991,"children":992},{"style":432},[993],{"type":52,"value":458},{"type":46,"tag":425,"props":995,"children":996},{"style":756},[997],{"type":52,"value":793},{"type":46,"tag":425,"props":999,"children":1000},{"style":432},[1001],{"type":52,"value":440},{"type":46,"tag":425,"props":1003,"children":1004},{"style":432},[1005],{"type":52,"value":369},{"type":46,"tag":425,"props":1007,"children":1008},{"style":432},[1009],{"type":52,"value":458},{"type":46,"tag":425,"props":1011,"children":1012},{"style":461},[1013],{"type":52,"value":810},{"type":46,"tag":425,"props":1015,"children":1016},{"style":432},[1017],{"type":52,"value":440},{"type":46,"tag":425,"props":1019,"children":1020},{"style":432},[1021],{"type":52,"value":819},{"type":46,"tag":425,"props":1023,"children":1024},{"class":427,"line":822},[1025],{"type":46,"tag":425,"props":1026,"children":1027},{"style":432},[1028],{"type":52,"value":507},{"type":46,"tag":65,"props":1030,"children":1031},{},[1032,1037,1039,1045,1047,1053],{"type":46,"tag":69,"props":1033,"children":1034},{},[1035],{"type":52,"value":1036},"Multimodal PDF upload",{"type":52,"value":1038},": Set ",{"type":46,"tag":77,"props":1040,"children":1042},{"className":1041},[],[1043],{"type":52,"value":1044},"additionalFields.multimodalFile: true",{"type":52,"value":1046}," on the ",{"type":46,"tag":77,"props":1048,"children":1050},{"className":1049},[],[1051],{"type":52,"value":1052},"uploadFile",{"type":52,"value":1054}," node when the PDF contains images or charts that should be indexed for visual retrieval. This is required for images to be retrievable later — it is not the default.",{"type":46,"tag":267,"props":1056,"children":1058},{"id":1057},"generating-workflow-json-for-the-assistant-path",[1059],{"type":52,"value":1060},"Generating workflow JSON for the Assistant path",{"type":46,"tag":55,"props":1062,"children":1063},{},[1064],{"type":52,"value":1065},"Build the workflow to match what the user actually describes — their triggers, models, data sources, and structure. Ask about anything structurally significant they haven't mentioned. Only fall back to the defaults below when the user hasn't specified a value:",{"type":46,"tag":61,"props":1067,"children":1068},{},[1069,1097,1102,1113],{"type":46,"tag":65,"props":1070,"children":1071},{},[1072,1074,1080,1082,1088,1089,1095],{"type":52,"value":1073},"Assistant name: ",{"type":46,"tag":77,"props":1075,"children":1077},{"className":1076},[],[1078],{"type":52,"value":1079},"n8n-assistant",{"type":52,"value":1081}," (use ",{"type":46,"tag":77,"props":1083,"children":1085},{"className":1084},[],[1086],{"type":52,"value":1087},"n8n-assistant-1",{"type":52,"value":868},{"type":46,"tag":77,"props":1090,"children":1092},{"className":1091},[],[1093],{"type":52,"value":1094},"n8n-assistant-2",{"type":52,"value":1096},", etc. for multiples; must match an existing assistant in the Pinecone Console)",{"type":46,"tag":65,"props":1098,"children":1099},{},[1100],{"type":52,"value":1101},"File URLs: sample Pinecone release notes PDFs",{"type":46,"tag":65,"props":1103,"children":1104},{},[1105,1107],{"type":52,"value":1106},"LLM model: ",{"type":46,"tag":77,"props":1108,"children":1110},{"className":1109},[],[1111],{"type":52,"value":1112},"gpt-5-mini",{"type":46,"tag":65,"props":1114,"children":1115},{},[1116],{"type":52,"value":1117},"System message: generic prompt about retrieving from the assistant with citations",{"type":46,"tag":55,"props":1119,"children":1120},{},[1121,1123,1128],{"type":52,"value":1122},"The JSON below is a ",{"type":46,"tag":69,"props":1124,"children":1125},{},[1126],{"type":52,"value":1127},"reference configuration",{"type":52,"value":1129}," showing correct parameter values, required fields, and connection types for each node. Use it as a guide for how to configure the nodes — not as a template to copy verbatim. Placeholders to substitute:",{"type":46,"tag":61,"props":1131,"children":1132},{},[1133,1144,1162,1179,1195],{"type":46,"tag":65,"props":1134,"children":1135},{},[1136,1142],{"type":46,"tag":77,"props":1137,"children":1139},{"className":1138},[],[1140],{"type":52,"value":1141},"[ASSISTANT_NAME]",{"type":52,"value":1143}," — assistant name",{"type":46,"tag":65,"props":1145,"children":1146},{},[1147,1153,1155,1160],{"type":46,"tag":77,"props":1148,"children":1150},{"className":1149},[],[1151],{"type":52,"value":1152},"[ASSISTANT_HOST]",{"type":52,"value":1154}," — assistant host URL from the Pinecone Console (e.g. ",{"type":46,"tag":77,"props":1156,"children":1158},{"className":1157},[],[1159],{"type":52,"value":498},{"type":52,"value":1161},")",{"type":46,"tag":65,"props":1163,"children":1164},{},[1165,1171,1173],{"type":46,"tag":77,"props":1166,"children":1168},{"className":1167},[],[1169],{"type":52,"value":1170},"[USER_FILE_URLS_ARRAY]",{"type":52,"value":1172}," — JSON array of file URL strings, e.g. ",{"type":46,"tag":77,"props":1174,"children":1176},{"className":1175},[],[1177],{"type":52,"value":1178},"[\"https:\u002F\u002Fexample.com\u002Fdoc.pdf\"]",{"type":46,"tag":65,"props":1180,"children":1181},{},[1182,1188,1190],{"type":46,"tag":77,"props":1183,"children":1185},{"className":1184},[],[1186],{"type":52,"value":1187},"[USER_MODEL]",{"type":52,"value":1189}," — LLM model name, e.g. ",{"type":46,"tag":77,"props":1191,"children":1193},{"className":1192},[],[1194],{"type":52,"value":1112},{"type":46,"tag":65,"props":1196,"children":1197},{},[1198,1204],{"type":46,"tag":77,"props":1199,"children":1201},{"className":1200},[],[1202],{"type":52,"value":1203},"[USER_TOPIC]",{"type":52,"value":1205}," — short description of what the assistant knows, for the system message",{"type":46,"tag":349,"props":1207,"children":1209},{"className":417,"code":1208,"language":419,"meta":357,"style":357},"{\n  \"nodes\": [\n    {\n      \"parameters\": {\n        \"options\": {\n          \"systemMessage\": \"You are a helpful assistant. Use the Pinecone Assistant Tool to retrieve data about [USER_TOPIC]. Include the file name and file url in citations wherever referenced in output.\"\n        }\n      },\n      \"type\": \"@n8n\u002Fn8n-nodes-langchain.agent\",\n      \"typeVersion\": 2.2,\n      \"position\": [2208, 784],\n      \"id\": \"e4c65881-120c-4a7c-854b-138611c8dfa3\",\n      \"name\": \"AI Agent\"\n    },\n    {\n      \"parameters\": {\n        \"model\": {\"__rl\": true, \"mode\": \"list\", \"value\": \"[USER_MODEL]\"},\n        \"options\": {}\n      },\n      \"type\": \"@n8n\u002Fn8n-nodes-langchain.lmChatOpenAi\",\n      \"typeVersion\": 1.2,\n      \"position\": [2144, 1008],\n      \"id\": \"b3ea858d-b62d-4022-8241-8872e403839a\",\n      \"name\": \"OpenAI Chat Model\"\n    },\n    {\n      \"parameters\": {\n        \"content\": \"## 1. Upload files to Pinecone Assistant\",\n        \"height\": 384,\n        \"width\": 1104,\n        \"color\": 7\n      },\n      \"type\": \"n8n-nodes-base.stickyNote\",\n      \"position\": [1616, 288],\n      \"typeVersion\": 1,\n      \"id\": \"9cfcdb71-2986-47a3-8f03-250fcab1048d\",\n      \"name\": \"Sticky Note1\"\n    },\n    {\n      \"parameters\": {\n        \"content\": \"## 2. Chat with your docs\",\n        \"height\": 512,\n        \"width\": 1104,\n        \"color\": 7\n      },\n      \"type\": \"n8n-nodes-base.stickyNote\",\n      \"position\": [1616, 688],\n      \"typeVersion\": 1,\n      \"id\": \"d7f2f4b8-2e45-4902-8949-202b8b2c699b\",\n      \"name\": \"Sticky Note2\"\n    },\n    {\n      \"parameters\": {\"options\": {}},\n      \"type\": \"@n8n\u002Fn8n-nodes-langchain.chatTrigger\",\n      \"typeVersion\": 1.3,\n      \"position\": [1840, 784],\n      \"id\": \"4d2a6aa1-ca4d-4165-a635-7ef53084636b\",\n      \"name\": \"Chat input\",\n      \"webhookId\": \"4672d1f8-d2bb-4059-8761-7aa5792814c0\"\n    },\n    {\n      \"parameters\": {},\n      \"type\": \"n8n-nodes-base.manualTrigger\",\n      \"typeVersion\": 1,\n      \"position\": [1760, 432],\n      \"id\": \"3e9529b4-d0ae-4ea8-9d27-c96e7cbd6ad9\",\n      \"name\": \"When clicking 'Execute workflow'\"\n    },\n    {\n      \"parameters\": {\n        \"assignments\": {\n          \"assignments\": [\n            {\n              \"id\": \"d0e724df-685f-4661-b2ec-3cdd3c2ba0f1\",\n              \"name\": \"urls\",\n              \"value\": \"[USER_FILE_URLS_ARRAY]\",\n              \"type\": \"array\"\n            }\n          ]\n        },\n        \"options\": {}\n      },\n      \"type\": \"n8n-nodes-base.set\",\n      \"typeVersion\": 3.4,\n      \"position\": [1920, 432],\n      \"id\": \"6b409421-2270-497e-a7fd-b382d192314c\",\n      \"name\": \"Set file urls\"\n    },\n    {\n      \"parameters\": {\"fieldToSplitOut\": \"urls\", \"options\": {}},\n      \"type\": \"n8n-nodes-base.splitOut\",\n      \"typeVersion\": 1,\n      \"position\": [2080, 432],\n      \"id\": \"e73f6f2c-4d20-48cb-b132-551ff9c3dd61\",\n      \"name\": \"Split to list\"\n    },\n    {\n      \"parameters\": {\n        \"url\": \"={{ $json.urls }}\",\n        \"options\": {\"response\": {\"response\": {\"responseFormat\": \"file\"}}}\n      },\n      \"type\": \"n8n-nodes-base.httpRequest\",\n      \"typeVersion\": 4.2,\n      \"position\": [2240, 432],\n      \"id\": \"a58f8e1c-943b-4a24-8746-477ed9912ad4\",\n      \"name\": \"Download file\"\n    },\n    {\n      \"parameters\": {\n        \"resource\": \"file\",\n        \"operation\": \"uploadFile\",\n        \"assistantData\": \"{\\\"name\\\":\\\"[ASSISTANT_NAME]\\\",\\\"host\\\":\\\"https:\u002F\u002F[ASSISTANT_HOST]\\\"}\",\n        \"externalFileId\": \"={{ $('Split to list').item.json.urls }}\",\n        \"additionalFields\": {\"sourceTag\": \"n8n:n8n_nodes_pinecone_assistant:pinecone_n8n_skill\"}\n      },\n      \"type\": \"@pinecone-database\u002Fn8n-nodes-pinecone-assistant.pineconeAssistant\",\n      \"typeVersion\": 1.2,\n      \"position\": [2416, 432],\n      \"id\": \"196122df-d2b2-43e4-9f8d-710aedb595a6\",\n      \"name\": \"Upload file to Assistant\"\n    },\n    {\n      \"parameters\": {\n        \"assistantData\": \"{\\\"name\\\":\\\"[ASSISTANT_NAME]\\\",\\\"host\\\":\\\"https:\u002F\u002F[ASSISTANT_HOST]\\\"}\",\n        \"additionalFields\": {\"sourceTag\": \"n8n:n8n_nodes_pinecone_assistant:pinecone_n8n_skill\"}\n      },\n      \"type\": \"@pinecone-database\u002Fn8n-nodes-pinecone-assistant.pineconeAssistantTool\",\n      \"typeVersion\": 1.2,\n      \"position\": [2368, 992],\n      \"id\": \"c3ba53e9-511d-47e7-b7fb-38bb093d279f\",\n      \"name\": \"Get context from Assistant\"\n    }\n  ],\n  \"connections\": {\n    \"OpenAI Chat Model\": {\n      \"ai_languageModel\": [[{\"node\": \"AI Agent\", \"type\": \"ai_languageModel\", \"index\": 0}]]\n    },\n    \"Chat input\": {\n      \"main\": [[{\"node\": \"AI Agent\", \"type\": \"main\", \"index\": 0}]]\n    },\n    \"When clicking 'Execute workflow'\": {\n      \"main\": [[{\"node\": \"Set file urls\", \"type\": \"main\", \"index\": 0}]]\n    },\n    \"Set file urls\": {\n      \"main\": [[{\"node\": \"Split to list\", \"type\": \"main\", \"index\": 0}]]\n    },\n    \"Split to list\": {\n      \"main\": [[{\"node\": \"Download file\", \"type\": \"main\", \"index\": 0}]]\n    },\n    \"Download file\": {\n      \"main\": [[{\"node\": \"Upload file to Assistant\", \"type\": \"main\", \"index\": 0}]]\n    },\n    \"Get context from Assistant\": {\n      \"ai_tool\": [[{\"node\": \"AI Agent\", \"type\": \"ai_tool\", \"index\": 0}]]\n    }\n  },\n  \"pinData\": {},\n  \"meta\": {\"templateCredsSetupCompleted\": false}\n}\n",[1210],{"type":46,"tag":77,"props":1211,"children":1212},{"__ignoreMap":357},[1213,1220,1245,1253,1280,1306,1343,1352,1361,1400,1430,1475,1513,1546,1554,1562,1586,1700,1725,1733,1770,1799,1841,1878,1911,1919,1927,1951,1989,2019,2049,2075,2083,2120,2162,2191,2228,2261,2269,2277,2301,2338,2367,2395,2419,2427,2463,2504,2532,2569,2602,2610,2618,2663,2700,2729,2770,2807,2844,2878,2886,2894,2919,2956,2984,3026,3063,3096,3104,3112,3136,3161,3185,3194,3233,3270,3306,3339,3348,3357,3366,3390,3398,3435,3464,3505,3542,3575,3583,3591,3668,3705,3733,3774,3811,3844,3852,3860,3884,3922,4023,4031,4068,4097,4138,4175,4208,4216,4224,4248,4285,4322,4426,4463,4519,4527,4563,4591,4632,4669,4702,4710,4718,4742,4842,4898,4906,4942,4970,5012,5049,5082,5091,5100,5125,5150,5268,5276,5300,5412,5420,5444,5556,5564,5588,5700,5708,5732,5844,5852,5876,5988,5996,6020,6132,6140,6149,6174,6221],{"type":46,"tag":425,"props":1214,"children":1215},{"class":427,"line":428},[1216],{"type":46,"tag":425,"props":1217,"children":1218},{"style":432},[1219],{"type":52,"value":700},{"type":46,"tag":425,"props":1221,"children":1222},{"class":427,"line":27},[1223,1227,1232,1236,1240],{"type":46,"tag":425,"props":1224,"children":1225},{"style":432},[1226],{"type":52,"value":708},{"type":46,"tag":425,"props":1228,"children":1229},{"style":443},[1230],{"type":52,"value":1231},"nodes",{"type":46,"tag":425,"props":1233,"children":1234},{"style":432},[1235],{"type":52,"value":440},{"type":46,"tag":425,"props":1237,"children":1238},{"style":432},[1239],{"type":52,"value":369},{"type":46,"tag":425,"props":1241,"children":1242},{"style":432},[1243],{"type":52,"value":1244}," [\n",{"type":46,"tag":425,"props":1246,"children":1247},{"class":427,"line":822},[1248],{"type":46,"tag":425,"props":1249,"children":1250},{"style":432},[1251],{"type":52,"value":1252},"    {\n",{"type":46,"tag":425,"props":1254,"children":1256},{"class":427,"line":1255},4,[1257,1262,1267,1271,1275],{"type":46,"tag":425,"props":1258,"children":1259},{"style":432},[1260],{"type":52,"value":1261},"      \"",{"type":46,"tag":425,"props":1263,"children":1264},{"style":733},[1265],{"type":52,"value":1266},"parameters",{"type":46,"tag":425,"props":1268,"children":1269},{"style":432},[1270],{"type":52,"value":440},{"type":46,"tag":425,"props":1272,"children":1273},{"style":432},[1274],{"type":52,"value":369},{"type":46,"tag":425,"props":1276,"children":1277},{"style":432},[1278],{"type":52,"value":1279}," {\n",{"type":46,"tag":425,"props":1281,"children":1283},{"class":427,"line":1282},5,[1284,1289,1294,1298,1302],{"type":46,"tag":425,"props":1285,"children":1286},{"style":432},[1287],{"type":52,"value":1288},"        \"",{"type":46,"tag":425,"props":1290,"children":1291},{"style":756},[1292],{"type":52,"value":1293},"options",{"type":46,"tag":425,"props":1295,"children":1296},{"style":432},[1297],{"type":52,"value":440},{"type":46,"tag":425,"props":1299,"children":1300},{"style":432},[1301],{"type":52,"value":369},{"type":46,"tag":425,"props":1303,"children":1304},{"style":432},[1305],{"type":52,"value":1279},{"type":46,"tag":425,"props":1307,"children":1309},{"class":427,"line":1308},6,[1310,1315,1321,1325,1329,1333,1338],{"type":46,"tag":425,"props":1311,"children":1312},{"style":432},[1313],{"type":52,"value":1314},"          \"",{"type":46,"tag":425,"props":1316,"children":1318},{"style":1317},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[1319],{"type":52,"value":1320},"systemMessage",{"type":46,"tag":425,"props":1322,"children":1323},{"style":432},[1324],{"type":52,"value":440},{"type":46,"tag":425,"props":1326,"children":1327},{"style":432},[1328],{"type":52,"value":369},{"type":46,"tag":425,"props":1330,"children":1331},{"style":432},[1332],{"type":52,"value":458},{"type":46,"tag":425,"props":1334,"children":1335},{"style":461},[1336],{"type":52,"value":1337},"You are a helpful assistant. Use the Pinecone Assistant Tool to retrieve data about [USER_TOPIC]. Include the file name and file url in citations wherever referenced in output.",{"type":46,"tag":425,"props":1339,"children":1340},{"style":432},[1341],{"type":52,"value":1342},"\"\n",{"type":46,"tag":425,"props":1344,"children":1346},{"class":427,"line":1345},7,[1347],{"type":46,"tag":425,"props":1348,"children":1349},{"style":432},[1350],{"type":52,"value":1351},"        }\n",{"type":46,"tag":425,"props":1353,"children":1355},{"class":427,"line":1354},8,[1356],{"type":46,"tag":425,"props":1357,"children":1358},{"style":432},[1359],{"type":52,"value":1360},"      },\n",{"type":46,"tag":425,"props":1362,"children":1364},{"class":427,"line":1363},9,[1365,1369,1374,1378,1382,1386,1391,1395],{"type":46,"tag":425,"props":1366,"children":1367},{"style":432},[1368],{"type":52,"value":1261},{"type":46,"tag":425,"props":1370,"children":1371},{"style":733},[1372],{"type":52,"value":1373},"type",{"type":46,"tag":425,"props":1375,"children":1376},{"style":432},[1377],{"type":52,"value":440},{"type":46,"tag":425,"props":1379,"children":1380},{"style":432},[1381],{"type":52,"value":369},{"type":46,"tag":425,"props":1383,"children":1384},{"style":432},[1385],{"type":52,"value":458},{"type":46,"tag":425,"props":1387,"children":1388},{"style":461},[1389],{"type":52,"value":1390},"@n8n\u002Fn8n-nodes-langchain.agent",{"type":46,"tag":425,"props":1392,"children":1393},{"style":432},[1394],{"type":52,"value":440},{"type":46,"tag":425,"props":1396,"children":1397},{"style":432},[1398],{"type":52,"value":1399},",\n",{"type":46,"tag":425,"props":1401,"children":1403},{"class":427,"line":1402},10,[1404,1408,1413,1417,1421,1426],{"type":46,"tag":425,"props":1405,"children":1406},{"style":432},[1407],{"type":52,"value":1261},{"type":46,"tag":425,"props":1409,"children":1410},{"style":733},[1411],{"type":52,"value":1412},"typeVersion",{"type":46,"tag":425,"props":1414,"children":1415},{"style":432},[1416],{"type":52,"value":440},{"type":46,"tag":425,"props":1418,"children":1419},{"style":432},[1420],{"type":52,"value":369},{"type":46,"tag":425,"props":1422,"children":1423},{"style":756},[1424],{"type":52,"value":1425}," 2.2",{"type":46,"tag":425,"props":1427,"children":1428},{"style":432},[1429],{"type":52,"value":1399},{"type":46,"tag":425,"props":1431,"children":1433},{"class":427,"line":1432},11,[1434,1438,1443,1447,1451,1456,1461,1465,1470],{"type":46,"tag":425,"props":1435,"children":1436},{"style":432},[1437],{"type":52,"value":1261},{"type":46,"tag":425,"props":1439,"children":1440},{"style":733},[1441],{"type":52,"value":1442},"position",{"type":46,"tag":425,"props":1444,"children":1445},{"style":432},[1446],{"type":52,"value":440},{"type":46,"tag":425,"props":1448,"children":1449},{"style":432},[1450],{"type":52,"value":369},{"type":46,"tag":425,"props":1452,"children":1453},{"style":432},[1454],{"type":52,"value":1455}," [",{"type":46,"tag":425,"props":1457,"children":1458},{"style":756},[1459],{"type":52,"value":1460},"2208",{"type":46,"tag":425,"props":1462,"children":1463},{"style":432},[1464],{"type":52,"value":473},{"type":46,"tag":425,"props":1466,"children":1467},{"style":756},[1468],{"type":52,"value":1469}," 784",{"type":46,"tag":425,"props":1471,"children":1472},{"style":432},[1473],{"type":52,"value":1474},"],\n",{"type":46,"tag":425,"props":1476,"children":1478},{"class":427,"line":1477},12,[1479,1483,1488,1492,1496,1500,1505,1509],{"type":46,"tag":425,"props":1480,"children":1481},{"style":432},[1482],{"type":52,"value":1261},{"type":46,"tag":425,"props":1484,"children":1485},{"style":733},[1486],{"type":52,"value":1487},"id",{"type":46,"tag":425,"props":1489,"children":1490},{"style":432},[1491],{"type":52,"value":440},{"type":46,"tag":425,"props":1493,"children":1494},{"style":432},[1495],{"type":52,"value":369},{"type":46,"tag":425,"props":1497,"children":1498},{"style":432},[1499],{"type":52,"value":458},{"type":46,"tag":425,"props":1501,"children":1502},{"style":461},[1503],{"type":52,"value":1504},"e4c65881-120c-4a7c-854b-138611c8dfa3",{"type":46,"tag":425,"props":1506,"children":1507},{"style":432},[1508],{"type":52,"value":440},{"type":46,"tag":425,"props":1510,"children":1511},{"style":432},[1512],{"type":52,"value":1399},{"type":46,"tag":425,"props":1514,"children":1516},{"class":427,"line":1515},13,[1517,1521,1525,1529,1533,1537,1542],{"type":46,"tag":425,"props":1518,"children":1519},{"style":432},[1520],{"type":52,"value":1261},{"type":46,"tag":425,"props":1522,"children":1523},{"style":733},[1524],{"type":52,"value":404},{"type":46,"tag":425,"props":1526,"children":1527},{"style":432},[1528],{"type":52,"value":440},{"type":46,"tag":425,"props":1530,"children":1531},{"style":432},[1532],{"type":52,"value":369},{"type":46,"tag":425,"props":1534,"children":1535},{"style":432},[1536],{"type":52,"value":458},{"type":46,"tag":425,"props":1538,"children":1539},{"style":461},[1540],{"type":52,"value":1541},"AI Agent",{"type":46,"tag":425,"props":1543,"children":1544},{"style":432},[1545],{"type":52,"value":1342},{"type":46,"tag":425,"props":1547,"children":1548},{"class":427,"line":23},[1549],{"type":46,"tag":425,"props":1550,"children":1551},{"style":432},[1552],{"type":52,"value":1553},"    },\n",{"type":46,"tag":425,"props":1555,"children":1557},{"class":427,"line":1556},15,[1558],{"type":46,"tag":425,"props":1559,"children":1560},{"style":432},[1561],{"type":52,"value":1252},{"type":46,"tag":425,"props":1563,"children":1565},{"class":427,"line":1564},16,[1566,1570,1574,1578,1582],{"type":46,"tag":425,"props":1567,"children":1568},{"style":432},[1569],{"type":52,"value":1261},{"type":46,"tag":425,"props":1571,"children":1572},{"style":733},[1573],{"type":52,"value":1266},{"type":46,"tag":425,"props":1575,"children":1576},{"style":432},[1577],{"type":52,"value":440},{"type":46,"tag":425,"props":1579,"children":1580},{"style":432},[1581],{"type":52,"value":369},{"type":46,"tag":425,"props":1583,"children":1584},{"style":432},[1585],{"type":52,"value":1279},{"type":46,"tag":425,"props":1587,"children":1589},{"class":427,"line":1588},17,[1590,1594,1599,1603,1607,1611,1615,1620,1624,1628,1633,1637,1642,1646,1650,1654,1659,1663,1667,1671,1675,1679,1683,1687,1691,1695],{"type":46,"tag":425,"props":1591,"children":1592},{"style":432},[1593],{"type":52,"value":1288},{"type":46,"tag":425,"props":1595,"children":1596},{"style":756},[1597],{"type":52,"value":1598},"model",{"type":46,"tag":425,"props":1600,"children":1601},{"style":432},[1602],{"type":52,"value":440},{"type":46,"tag":425,"props":1604,"children":1605},{"style":432},[1606],{"type":52,"value":369},{"type":46,"tag":425,"props":1608,"children":1609},{"style":432},[1610],{"type":52,"value":726},{"type":46,"tag":425,"props":1612,"children":1613},{"style":432},[1614],{"type":52,"value":440},{"type":46,"tag":425,"props":1616,"children":1617},{"style":1317},[1618],{"type":52,"value":1619},"__rl",{"type":46,"tag":425,"props":1621,"children":1622},{"style":432},[1623],{"type":52,"value":440},{"type":46,"tag":425,"props":1625,"children":1626},{"style":432},[1627],{"type":52,"value":369},{"type":46,"tag":425,"props":1629,"children":1630},{"style":432},[1631],{"type":52,"value":1632}," true,",{"type":46,"tag":425,"props":1634,"children":1635},{"style":432},[1636],{"type":52,"value":458},{"type":46,"tag":425,"props":1638,"children":1639},{"style":1317},[1640],{"type":52,"value":1641},"mode",{"type":46,"tag":425,"props":1643,"children":1644},{"style":432},[1645],{"type":52,"value":440},{"type":46,"tag":425,"props":1647,"children":1648},{"style":432},[1649],{"type":52,"value":369},{"type":46,"tag":425,"props":1651,"children":1652},{"style":432},[1653],{"type":52,"value":458},{"type":46,"tag":425,"props":1655,"children":1656},{"style":461},[1657],{"type":52,"value":1658},"list",{"type":46,"tag":425,"props":1660,"children":1661},{"style":432},[1662],{"type":52,"value":440},{"type":46,"tag":425,"props":1664,"children":1665},{"style":432},[1666],{"type":52,"value":473},{"type":46,"tag":425,"props":1668,"children":1669},{"style":432},[1670],{"type":52,"value":458},{"type":46,"tag":425,"props":1672,"children":1673},{"style":1317},[1674],{"type":52,"value":793},{"type":46,"tag":425,"props":1676,"children":1677},{"style":432},[1678],{"type":52,"value":440},{"type":46,"tag":425,"props":1680,"children":1681},{"style":432},[1682],{"type":52,"value":369},{"type":46,"tag":425,"props":1684,"children":1685},{"style":432},[1686],{"type":52,"value":458},{"type":46,"tag":425,"props":1688,"children":1689},{"style":461},[1690],{"type":52,"value":1187},{"type":46,"tag":425,"props":1692,"children":1693},{"style":432},[1694],{"type":52,"value":440},{"type":46,"tag":425,"props":1696,"children":1697},{"style":432},[1698],{"type":52,"value":1699},"},\n",{"type":46,"tag":425,"props":1701,"children":1703},{"class":427,"line":1702},18,[1704,1708,1712,1716,1720],{"type":46,"tag":425,"props":1705,"children":1706},{"style":432},[1707],{"type":52,"value":1288},{"type":46,"tag":425,"props":1709,"children":1710},{"style":756},[1711],{"type":52,"value":1293},{"type":46,"tag":425,"props":1713,"children":1714},{"style":432},[1715],{"type":52,"value":440},{"type":46,"tag":425,"props":1717,"children":1718},{"style":432},[1719],{"type":52,"value":369},{"type":46,"tag":425,"props":1721,"children":1722},{"style":432},[1723],{"type":52,"value":1724}," {}\n",{"type":46,"tag":425,"props":1726,"children":1728},{"class":427,"line":1727},19,[1729],{"type":46,"tag":425,"props":1730,"children":1731},{"style":432},[1732],{"type":52,"value":1360},{"type":46,"tag":425,"props":1734,"children":1736},{"class":427,"line":1735},20,[1737,1741,1745,1749,1753,1757,1762,1766],{"type":46,"tag":425,"props":1738,"children":1739},{"style":432},[1740],{"type":52,"value":1261},{"type":46,"tag":425,"props":1742,"children":1743},{"style":733},[1744],{"type":52,"value":1373},{"type":46,"tag":425,"props":1746,"children":1747},{"style":432},[1748],{"type":52,"value":440},{"type":46,"tag":425,"props":1750,"children":1751},{"style":432},[1752],{"type":52,"value":369},{"type":46,"tag":425,"props":1754,"children":1755},{"style":432},[1756],{"type":52,"value":458},{"type":46,"tag":425,"props":1758,"children":1759},{"style":461},[1760],{"type":52,"value":1761},"@n8n\u002Fn8n-nodes-langchain.lmChatOpenAi",{"type":46,"tag":425,"props":1763,"children":1764},{"style":432},[1765],{"type":52,"value":440},{"type":46,"tag":425,"props":1767,"children":1768},{"style":432},[1769],{"type":52,"value":1399},{"type":46,"tag":425,"props":1771,"children":1773},{"class":427,"line":1772},21,[1774,1778,1782,1786,1790,1795],{"type":46,"tag":425,"props":1775,"children":1776},{"style":432},[1777],{"type":52,"value":1261},{"type":46,"tag":425,"props":1779,"children":1780},{"style":733},[1781],{"type":52,"value":1412},{"type":46,"tag":425,"props":1783,"children":1784},{"style":432},[1785],{"type":52,"value":440},{"type":46,"tag":425,"props":1787,"children":1788},{"style":432},[1789],{"type":52,"value":369},{"type":46,"tag":425,"props":1791,"children":1792},{"style":756},[1793],{"type":52,"value":1794}," 1.2",{"type":46,"tag":425,"props":1796,"children":1797},{"style":432},[1798],{"type":52,"value":1399},{"type":46,"tag":425,"props":1800,"children":1802},{"class":427,"line":1801},22,[1803,1807,1811,1815,1819,1823,1828,1832,1837],{"type":46,"tag":425,"props":1804,"children":1805},{"style":432},[1806],{"type":52,"value":1261},{"type":46,"tag":425,"props":1808,"children":1809},{"style":733},[1810],{"type":52,"value":1442},{"type":46,"tag":425,"props":1812,"children":1813},{"style":432},[1814],{"type":52,"value":440},{"type":46,"tag":425,"props":1816,"children":1817},{"style":432},[1818],{"type":52,"value":369},{"type":46,"tag":425,"props":1820,"children":1821},{"style":432},[1822],{"type":52,"value":1455},{"type":46,"tag":425,"props":1824,"children":1825},{"style":756},[1826],{"type":52,"value":1827},"2144",{"type":46,"tag":425,"props":1829,"children":1830},{"style":432},[1831],{"type":52,"value":473},{"type":46,"tag":425,"props":1833,"children":1834},{"style":756},[1835],{"type":52,"value":1836}," 1008",{"type":46,"tag":425,"props":1838,"children":1839},{"style":432},[1840],{"type":52,"value":1474},{"type":46,"tag":425,"props":1842,"children":1844},{"class":427,"line":1843},23,[1845,1849,1853,1857,1861,1865,1870,1874],{"type":46,"tag":425,"props":1846,"children":1847},{"style":432},[1848],{"type":52,"value":1261},{"type":46,"tag":425,"props":1850,"children":1851},{"style":733},[1852],{"type":52,"value":1487},{"type":46,"tag":425,"props":1854,"children":1855},{"style":432},[1856],{"type":52,"value":440},{"type":46,"tag":425,"props":1858,"children":1859},{"style":432},[1860],{"type":52,"value":369},{"type":46,"tag":425,"props":1862,"children":1863},{"style":432},[1864],{"type":52,"value":458},{"type":46,"tag":425,"props":1866,"children":1867},{"style":461},[1868],{"type":52,"value":1869},"b3ea858d-b62d-4022-8241-8872e403839a",{"type":46,"tag":425,"props":1871,"children":1872},{"style":432},[1873],{"type":52,"value":440},{"type":46,"tag":425,"props":1875,"children":1876},{"style":432},[1877],{"type":52,"value":1399},{"type":46,"tag":425,"props":1879,"children":1881},{"class":427,"line":1880},24,[1882,1886,1890,1894,1898,1902,1907],{"type":46,"tag":425,"props":1883,"children":1884},{"style":432},[1885],{"type":52,"value":1261},{"type":46,"tag":425,"props":1887,"children":1888},{"style":733},[1889],{"type":52,"value":404},{"type":46,"tag":425,"props":1891,"children":1892},{"style":432},[1893],{"type":52,"value":440},{"type":46,"tag":425,"props":1895,"children":1896},{"style":432},[1897],{"type":52,"value":369},{"type":46,"tag":425,"props":1899,"children":1900},{"style":432},[1901],{"type":52,"value":458},{"type":46,"tag":425,"props":1903,"children":1904},{"style":461},[1905],{"type":52,"value":1906},"OpenAI Chat Model",{"type":46,"tag":425,"props":1908,"children":1909},{"style":432},[1910],{"type":52,"value":1342},{"type":46,"tag":425,"props":1912,"children":1914},{"class":427,"line":1913},25,[1915],{"type":46,"tag":425,"props":1916,"children":1917},{"style":432},[1918],{"type":52,"value":1553},{"type":46,"tag":425,"props":1920,"children":1922},{"class":427,"line":1921},26,[1923],{"type":46,"tag":425,"props":1924,"children":1925},{"style":432},[1926],{"type":52,"value":1252},{"type":46,"tag":425,"props":1928,"children":1930},{"class":427,"line":1929},27,[1931,1935,1939,1943,1947],{"type":46,"tag":425,"props":1932,"children":1933},{"style":432},[1934],{"type":52,"value":1261},{"type":46,"tag":425,"props":1936,"children":1937},{"style":733},[1938],{"type":52,"value":1266},{"type":46,"tag":425,"props":1940,"children":1941},{"style":432},[1942],{"type":52,"value":440},{"type":46,"tag":425,"props":1944,"children":1945},{"style":432},[1946],{"type":52,"value":369},{"type":46,"tag":425,"props":1948,"children":1949},{"style":432},[1950],{"type":52,"value":1279},{"type":46,"tag":425,"props":1952,"children":1954},{"class":427,"line":1953},28,[1955,1959,1964,1968,1972,1976,1981,1985],{"type":46,"tag":425,"props":1956,"children":1957},{"style":432},[1958],{"type":52,"value":1288},{"type":46,"tag":425,"props":1960,"children":1961},{"style":756},[1962],{"type":52,"value":1963},"content",{"type":46,"tag":425,"props":1965,"children":1966},{"style":432},[1967],{"type":52,"value":440},{"type":46,"tag":425,"props":1969,"children":1970},{"style":432},[1971],{"type":52,"value":369},{"type":46,"tag":425,"props":1973,"children":1974},{"style":432},[1975],{"type":52,"value":458},{"type":46,"tag":425,"props":1977,"children":1978},{"style":461},[1979],{"type":52,"value":1980},"## 1. Upload files to Pinecone Assistant",{"type":46,"tag":425,"props":1982,"children":1983},{"style":432},[1984],{"type":52,"value":440},{"type":46,"tag":425,"props":1986,"children":1987},{"style":432},[1988],{"type":52,"value":1399},{"type":46,"tag":425,"props":1990,"children":1992},{"class":427,"line":1991},29,[1993,1997,2002,2006,2010,2015],{"type":46,"tag":425,"props":1994,"children":1995},{"style":432},[1996],{"type":52,"value":1288},{"type":46,"tag":425,"props":1998,"children":1999},{"style":756},[2000],{"type":52,"value":2001},"height",{"type":46,"tag":425,"props":2003,"children":2004},{"style":432},[2005],{"type":52,"value":440},{"type":46,"tag":425,"props":2007,"children":2008},{"style":432},[2009],{"type":52,"value":369},{"type":46,"tag":425,"props":2011,"children":2012},{"style":756},[2013],{"type":52,"value":2014}," 384",{"type":46,"tag":425,"props":2016,"children":2017},{"style":432},[2018],{"type":52,"value":1399},{"type":46,"tag":425,"props":2020,"children":2022},{"class":427,"line":2021},30,[2023,2027,2032,2036,2040,2045],{"type":46,"tag":425,"props":2024,"children":2025},{"style":432},[2026],{"type":52,"value":1288},{"type":46,"tag":425,"props":2028,"children":2029},{"style":756},[2030],{"type":52,"value":2031},"width",{"type":46,"tag":425,"props":2033,"children":2034},{"style":432},[2035],{"type":52,"value":440},{"type":46,"tag":425,"props":2037,"children":2038},{"style":432},[2039],{"type":52,"value":369},{"type":46,"tag":425,"props":2041,"children":2042},{"style":756},[2043],{"type":52,"value":2044}," 1104",{"type":46,"tag":425,"props":2046,"children":2047},{"style":432},[2048],{"type":52,"value":1399},{"type":46,"tag":425,"props":2050,"children":2052},{"class":427,"line":2051},31,[2053,2057,2062,2066,2070],{"type":46,"tag":425,"props":2054,"children":2055},{"style":432},[2056],{"type":52,"value":1288},{"type":46,"tag":425,"props":2058,"children":2059},{"style":756},[2060],{"type":52,"value":2061},"color",{"type":46,"tag":425,"props":2063,"children":2064},{"style":432},[2065],{"type":52,"value":440},{"type":46,"tag":425,"props":2067,"children":2068},{"style":432},[2069],{"type":52,"value":369},{"type":46,"tag":425,"props":2071,"children":2072},{"style":756},[2073],{"type":52,"value":2074}," 7\n",{"type":46,"tag":425,"props":2076,"children":2078},{"class":427,"line":2077},32,[2079],{"type":46,"tag":425,"props":2080,"children":2081},{"style":432},[2082],{"type":52,"value":1360},{"type":46,"tag":425,"props":2084,"children":2086},{"class":427,"line":2085},33,[2087,2091,2095,2099,2103,2107,2112,2116],{"type":46,"tag":425,"props":2088,"children":2089},{"style":432},[2090],{"type":52,"value":1261},{"type":46,"tag":425,"props":2092,"children":2093},{"style":733},[2094],{"type":52,"value":1373},{"type":46,"tag":425,"props":2096,"children":2097},{"style":432},[2098],{"type":52,"value":440},{"type":46,"tag":425,"props":2100,"children":2101},{"style":432},[2102],{"type":52,"value":369},{"type":46,"tag":425,"props":2104,"children":2105},{"style":432},[2106],{"type":52,"value":458},{"type":46,"tag":425,"props":2108,"children":2109},{"style":461},[2110],{"type":52,"value":2111},"n8n-nodes-base.stickyNote",{"type":46,"tag":425,"props":2113,"children":2114},{"style":432},[2115],{"type":52,"value":440},{"type":46,"tag":425,"props":2117,"children":2118},{"style":432},[2119],{"type":52,"value":1399},{"type":46,"tag":425,"props":2121,"children":2123},{"class":427,"line":2122},34,[2124,2128,2132,2136,2140,2144,2149,2153,2158],{"type":46,"tag":425,"props":2125,"children":2126},{"style":432},[2127],{"type":52,"value":1261},{"type":46,"tag":425,"props":2129,"children":2130},{"style":733},[2131],{"type":52,"value":1442},{"type":46,"tag":425,"props":2133,"children":2134},{"style":432},[2135],{"type":52,"value":440},{"type":46,"tag":425,"props":2137,"children":2138},{"style":432},[2139],{"type":52,"value":369},{"type":46,"tag":425,"props":2141,"children":2142},{"style":432},[2143],{"type":52,"value":1455},{"type":46,"tag":425,"props":2145,"children":2146},{"style":756},[2147],{"type":52,"value":2148},"1616",{"type":46,"tag":425,"props":2150,"children":2151},{"style":432},[2152],{"type":52,"value":473},{"type":46,"tag":425,"props":2154,"children":2155},{"style":756},[2156],{"type":52,"value":2157}," 288",{"type":46,"tag":425,"props":2159,"children":2160},{"style":432},[2161],{"type":52,"value":1474},{"type":46,"tag":425,"props":2163,"children":2165},{"class":427,"line":2164},35,[2166,2170,2174,2178,2182,2187],{"type":46,"tag":425,"props":2167,"children":2168},{"style":432},[2169],{"type":52,"value":1261},{"type":46,"tag":425,"props":2171,"children":2172},{"style":733},[2173],{"type":52,"value":1412},{"type":46,"tag":425,"props":2175,"children":2176},{"style":432},[2177],{"type":52,"value":440},{"type":46,"tag":425,"props":2179,"children":2180},{"style":432},[2181],{"type":52,"value":369},{"type":46,"tag":425,"props":2183,"children":2184},{"style":756},[2185],{"type":52,"value":2186}," 1",{"type":46,"tag":425,"props":2188,"children":2189},{"style":432},[2190],{"type":52,"value":1399},{"type":46,"tag":425,"props":2192,"children":2194},{"class":427,"line":2193},36,[2195,2199,2203,2207,2211,2215,2220,2224],{"type":46,"tag":425,"props":2196,"children":2197},{"style":432},[2198],{"type":52,"value":1261},{"type":46,"tag":425,"props":2200,"children":2201},{"style":733},[2202],{"type":52,"value":1487},{"type":46,"tag":425,"props":2204,"children":2205},{"style":432},[2206],{"type":52,"value":440},{"type":46,"tag":425,"props":2208,"children":2209},{"style":432},[2210],{"type":52,"value":369},{"type":46,"tag":425,"props":2212,"children":2213},{"style":432},[2214],{"type":52,"value":458},{"type":46,"tag":425,"props":2216,"children":2217},{"style":461},[2218],{"type":52,"value":2219},"9cfcdb71-2986-47a3-8f03-250fcab1048d",{"type":46,"tag":425,"props":2221,"children":2222},{"style":432},[2223],{"type":52,"value":440},{"type":46,"tag":425,"props":2225,"children":2226},{"style":432},[2227],{"type":52,"value":1399},{"type":46,"tag":425,"props":2229,"children":2231},{"class":427,"line":2230},37,[2232,2236,2240,2244,2248,2252,2257],{"type":46,"tag":425,"props":2233,"children":2234},{"style":432},[2235],{"type":52,"value":1261},{"type":46,"tag":425,"props":2237,"children":2238},{"style":733},[2239],{"type":52,"value":404},{"type":46,"tag":425,"props":2241,"children":2242},{"style":432},[2243],{"type":52,"value":440},{"type":46,"tag":425,"props":2245,"children":2246},{"style":432},[2247],{"type":52,"value":369},{"type":46,"tag":425,"props":2249,"children":2250},{"style":432},[2251],{"type":52,"value":458},{"type":46,"tag":425,"props":2253,"children":2254},{"style":461},[2255],{"type":52,"value":2256},"Sticky Note1",{"type":46,"tag":425,"props":2258,"children":2259},{"style":432},[2260],{"type":52,"value":1342},{"type":46,"tag":425,"props":2262,"children":2264},{"class":427,"line":2263},38,[2265],{"type":46,"tag":425,"props":2266,"children":2267},{"style":432},[2268],{"type":52,"value":1553},{"type":46,"tag":425,"props":2270,"children":2272},{"class":427,"line":2271},39,[2273],{"type":46,"tag":425,"props":2274,"children":2275},{"style":432},[2276],{"type":52,"value":1252},{"type":46,"tag":425,"props":2278,"children":2280},{"class":427,"line":2279},40,[2281,2285,2289,2293,2297],{"type":46,"tag":425,"props":2282,"children":2283},{"style":432},[2284],{"type":52,"value":1261},{"type":46,"tag":425,"props":2286,"children":2287},{"style":733},[2288],{"type":52,"value":1266},{"type":46,"tag":425,"props":2290,"children":2291},{"style":432},[2292],{"type":52,"value":440},{"type":46,"tag":425,"props":2294,"children":2295},{"style":432},[2296],{"type":52,"value":369},{"type":46,"tag":425,"props":2298,"children":2299},{"style":432},[2300],{"type":52,"value":1279},{"type":46,"tag":425,"props":2302,"children":2304},{"class":427,"line":2303},41,[2305,2309,2313,2317,2321,2325,2330,2334],{"type":46,"tag":425,"props":2306,"children":2307},{"style":432},[2308],{"type":52,"value":1288},{"type":46,"tag":425,"props":2310,"children":2311},{"style":756},[2312],{"type":52,"value":1963},{"type":46,"tag":425,"props":2314,"children":2315},{"style":432},[2316],{"type":52,"value":440},{"type":46,"tag":425,"props":2318,"children":2319},{"style":432},[2320],{"type":52,"value":369},{"type":46,"tag":425,"props":2322,"children":2323},{"style":432},[2324],{"type":52,"value":458},{"type":46,"tag":425,"props":2326,"children":2327},{"style":461},[2328],{"type":52,"value":2329},"## 2. Chat with your docs",{"type":46,"tag":425,"props":2331,"children":2332},{"style":432},[2333],{"type":52,"value":440},{"type":46,"tag":425,"props":2335,"children":2336},{"style":432},[2337],{"type":52,"value":1399},{"type":46,"tag":425,"props":2339,"children":2341},{"class":427,"line":2340},42,[2342,2346,2350,2354,2358,2363],{"type":46,"tag":425,"props":2343,"children":2344},{"style":432},[2345],{"type":52,"value":1288},{"type":46,"tag":425,"props":2347,"children":2348},{"style":756},[2349],{"type":52,"value":2001},{"type":46,"tag":425,"props":2351,"children":2352},{"style":432},[2353],{"type":52,"value":440},{"type":46,"tag":425,"props":2355,"children":2356},{"style":432},[2357],{"type":52,"value":369},{"type":46,"tag":425,"props":2359,"children":2360},{"style":756},[2361],{"type":52,"value":2362}," 512",{"type":46,"tag":425,"props":2364,"children":2365},{"style":432},[2366],{"type":52,"value":1399},{"type":46,"tag":425,"props":2368,"children":2370},{"class":427,"line":2369},43,[2371,2375,2379,2383,2387,2391],{"type":46,"tag":425,"props":2372,"children":2373},{"style":432},[2374],{"type":52,"value":1288},{"type":46,"tag":425,"props":2376,"children":2377},{"style":756},[2378],{"type":52,"value":2031},{"type":46,"tag":425,"props":2380,"children":2381},{"style":432},[2382],{"type":52,"value":440},{"type":46,"tag":425,"props":2384,"children":2385},{"style":432},[2386],{"type":52,"value":369},{"type":46,"tag":425,"props":2388,"children":2389},{"style":756},[2390],{"type":52,"value":2044},{"type":46,"tag":425,"props":2392,"children":2393},{"style":432},[2394],{"type":52,"value":1399},{"type":46,"tag":425,"props":2396,"children":2398},{"class":427,"line":2397},44,[2399,2403,2407,2411,2415],{"type":46,"tag":425,"props":2400,"children":2401},{"style":432},[2402],{"type":52,"value":1288},{"type":46,"tag":425,"props":2404,"children":2405},{"style":756},[2406],{"type":52,"value":2061},{"type":46,"tag":425,"props":2408,"children":2409},{"style":432},[2410],{"type":52,"value":440},{"type":46,"tag":425,"props":2412,"children":2413},{"style":432},[2414],{"type":52,"value":369},{"type":46,"tag":425,"props":2416,"children":2417},{"style":756},[2418],{"type":52,"value":2074},{"type":46,"tag":425,"props":2420,"children":2422},{"class":427,"line":2421},45,[2423],{"type":46,"tag":425,"props":2424,"children":2425},{"style":432},[2426],{"type":52,"value":1360},{"type":46,"tag":425,"props":2428,"children":2430},{"class":427,"line":2429},46,[2431,2435,2439,2443,2447,2451,2455,2459],{"type":46,"tag":425,"props":2432,"children":2433},{"style":432},[2434],{"type":52,"value":1261},{"type":46,"tag":425,"props":2436,"children":2437},{"style":733},[2438],{"type":52,"value":1373},{"type":46,"tag":425,"props":2440,"children":2441},{"style":432},[2442],{"type":52,"value":440},{"type":46,"tag":425,"props":2444,"children":2445},{"style":432},[2446],{"type":52,"value":369},{"type":46,"tag":425,"props":2448,"children":2449},{"style":432},[2450],{"type":52,"value":458},{"type":46,"tag":425,"props":2452,"children":2453},{"style":461},[2454],{"type":52,"value":2111},{"type":46,"tag":425,"props":2456,"children":2457},{"style":432},[2458],{"type":52,"value":440},{"type":46,"tag":425,"props":2460,"children":2461},{"style":432},[2462],{"type":52,"value":1399},{"type":46,"tag":425,"props":2464,"children":2466},{"class":427,"line":2465},47,[2467,2471,2475,2479,2483,2487,2491,2495,2500],{"type":46,"tag":425,"props":2468,"children":2469},{"style":432},[2470],{"type":52,"value":1261},{"type":46,"tag":425,"props":2472,"children":2473},{"style":733},[2474],{"type":52,"value":1442},{"type":46,"tag":425,"props":2476,"children":2477},{"style":432},[2478],{"type":52,"value":440},{"type":46,"tag":425,"props":2480,"children":2481},{"style":432},[2482],{"type":52,"value":369},{"type":46,"tag":425,"props":2484,"children":2485},{"style":432},[2486],{"type":52,"value":1455},{"type":46,"tag":425,"props":2488,"children":2489},{"style":756},[2490],{"type":52,"value":2148},{"type":46,"tag":425,"props":2492,"children":2493},{"style":432},[2494],{"type":52,"value":473},{"type":46,"tag":425,"props":2496,"children":2497},{"style":756},[2498],{"type":52,"value":2499}," 688",{"type":46,"tag":425,"props":2501,"children":2502},{"style":432},[2503],{"type":52,"value":1474},{"type":46,"tag":425,"props":2505,"children":2507},{"class":427,"line":2506},48,[2508,2512,2516,2520,2524,2528],{"type":46,"tag":425,"props":2509,"children":2510},{"style":432},[2511],{"type":52,"value":1261},{"type":46,"tag":425,"props":2513,"children":2514},{"style":733},[2515],{"type":52,"value":1412},{"type":46,"tag":425,"props":2517,"children":2518},{"style":432},[2519],{"type":52,"value":440},{"type":46,"tag":425,"props":2521,"children":2522},{"style":432},[2523],{"type":52,"value":369},{"type":46,"tag":425,"props":2525,"children":2526},{"style":756},[2527],{"type":52,"value":2186},{"type":46,"tag":425,"props":2529,"children":2530},{"style":432},[2531],{"type":52,"value":1399},{"type":46,"tag":425,"props":2533,"children":2535},{"class":427,"line":2534},49,[2536,2540,2544,2548,2552,2556,2561,2565],{"type":46,"tag":425,"props":2537,"children":2538},{"style":432},[2539],{"type":52,"value":1261},{"type":46,"tag":425,"props":2541,"children":2542},{"style":733},[2543],{"type":52,"value":1487},{"type":46,"tag":425,"props":2545,"children":2546},{"style":432},[2547],{"type":52,"value":440},{"type":46,"tag":425,"props":2549,"children":2550},{"style":432},[2551],{"type":52,"value":369},{"type":46,"tag":425,"props":2553,"children":2554},{"style":432},[2555],{"type":52,"value":458},{"type":46,"tag":425,"props":2557,"children":2558},{"style":461},[2559],{"type":52,"value":2560},"d7f2f4b8-2e45-4902-8949-202b8b2c699b",{"type":46,"tag":425,"props":2562,"children":2563},{"style":432},[2564],{"type":52,"value":440},{"type":46,"tag":425,"props":2566,"children":2567},{"style":432},[2568],{"type":52,"value":1399},{"type":46,"tag":425,"props":2570,"children":2572},{"class":427,"line":2571},50,[2573,2577,2581,2585,2589,2593,2598],{"type":46,"tag":425,"props":2574,"children":2575},{"style":432},[2576],{"type":52,"value":1261},{"type":46,"tag":425,"props":2578,"children":2579},{"style":733},[2580],{"type":52,"value":404},{"type":46,"tag":425,"props":2582,"children":2583},{"style":432},[2584],{"type":52,"value":440},{"type":46,"tag":425,"props":2586,"children":2587},{"style":432},[2588],{"type":52,"value":369},{"type":46,"tag":425,"props":2590,"children":2591},{"style":432},[2592],{"type":52,"value":458},{"type":46,"tag":425,"props":2594,"children":2595},{"style":461},[2596],{"type":52,"value":2597},"Sticky Note2",{"type":46,"tag":425,"props":2599,"children":2600},{"style":432},[2601],{"type":52,"value":1342},{"type":46,"tag":425,"props":2603,"children":2605},{"class":427,"line":2604},51,[2606],{"type":46,"tag":425,"props":2607,"children":2608},{"style":432},[2609],{"type":52,"value":1553},{"type":46,"tag":425,"props":2611,"children":2613},{"class":427,"line":2612},52,[2614],{"type":46,"tag":425,"props":2615,"children":2616},{"style":432},[2617],{"type":52,"value":1252},{"type":46,"tag":425,"props":2619,"children":2621},{"class":427,"line":2620},53,[2622,2626,2630,2634,2638,2642,2646,2650,2654,2658],{"type":46,"tag":425,"props":2623,"children":2624},{"style":432},[2625],{"type":52,"value":1261},{"type":46,"tag":425,"props":2627,"children":2628},{"style":733},[2629],{"type":52,"value":1266},{"type":46,"tag":425,"props":2631,"children":2632},{"style":432},[2633],{"type":52,"value":440},{"type":46,"tag":425,"props":2635,"children":2636},{"style":432},[2637],{"type":52,"value":369},{"type":46,"tag":425,"props":2639,"children":2640},{"style":432},[2641],{"type":52,"value":726},{"type":46,"tag":425,"props":2643,"children":2644},{"style":432},[2645],{"type":52,"value":440},{"type":46,"tag":425,"props":2647,"children":2648},{"style":756},[2649],{"type":52,"value":1293},{"type":46,"tag":425,"props":2651,"children":2652},{"style":432},[2653],{"type":52,"value":440},{"type":46,"tag":425,"props":2655,"children":2656},{"style":432},[2657],{"type":52,"value":369},{"type":46,"tag":425,"props":2659,"children":2660},{"style":432},[2661],{"type":52,"value":2662}," {}},\n",{"type":46,"tag":425,"props":2664,"children":2666},{"class":427,"line":2665},54,[2667,2671,2675,2679,2683,2687,2692,2696],{"type":46,"tag":425,"props":2668,"children":2669},{"style":432},[2670],{"type":52,"value":1261},{"type":46,"tag":425,"props":2672,"children":2673},{"style":733},[2674],{"type":52,"value":1373},{"type":46,"tag":425,"props":2676,"children":2677},{"style":432},[2678],{"type":52,"value":440},{"type":46,"tag":425,"props":2680,"children":2681},{"style":432},[2682],{"type":52,"value":369},{"type":46,"tag":425,"props":2684,"children":2685},{"style":432},[2686],{"type":52,"value":458},{"type":46,"tag":425,"props":2688,"children":2689},{"style":461},[2690],{"type":52,"value":2691},"@n8n\u002Fn8n-nodes-langchain.chatTrigger",{"type":46,"tag":425,"props":2693,"children":2694},{"style":432},[2695],{"type":52,"value":440},{"type":46,"tag":425,"props":2697,"children":2698},{"style":432},[2699],{"type":52,"value":1399},{"type":46,"tag":425,"props":2701,"children":2703},{"class":427,"line":2702},55,[2704,2708,2712,2716,2720,2725],{"type":46,"tag":425,"props":2705,"children":2706},{"style":432},[2707],{"type":52,"value":1261},{"type":46,"tag":425,"props":2709,"children":2710},{"style":733},[2711],{"type":52,"value":1412},{"type":46,"tag":425,"props":2713,"children":2714},{"style":432},[2715],{"type":52,"value":440},{"type":46,"tag":425,"props":2717,"children":2718},{"style":432},[2719],{"type":52,"value":369},{"type":46,"tag":425,"props":2721,"children":2722},{"style":756},[2723],{"type":52,"value":2724}," 1.3",{"type":46,"tag":425,"props":2726,"children":2727},{"style":432},[2728],{"type":52,"value":1399},{"type":46,"tag":425,"props":2730,"children":2732},{"class":427,"line":2731},56,[2733,2737,2741,2745,2749,2753,2758,2762,2766],{"type":46,"tag":425,"props":2734,"children":2735},{"style":432},[2736],{"type":52,"value":1261},{"type":46,"tag":425,"props":2738,"children":2739},{"style":733},[2740],{"type":52,"value":1442},{"type":46,"tag":425,"props":2742,"children":2743},{"style":432},[2744],{"type":52,"value":440},{"type":46,"tag":425,"props":2746,"children":2747},{"style":432},[2748],{"type":52,"value":369},{"type":46,"tag":425,"props":2750,"children":2751},{"style":432},[2752],{"type":52,"value":1455},{"type":46,"tag":425,"props":2754,"children":2755},{"style":756},[2756],{"type":52,"value":2757},"1840",{"type":46,"tag":425,"props":2759,"children":2760},{"style":432},[2761],{"type":52,"value":473},{"type":46,"tag":425,"props":2763,"children":2764},{"style":756},[2765],{"type":52,"value":1469},{"type":46,"tag":425,"props":2767,"children":2768},{"style":432},[2769],{"type":52,"value":1474},{"type":46,"tag":425,"props":2771,"children":2773},{"class":427,"line":2772},57,[2774,2778,2782,2786,2790,2794,2799,2803],{"type":46,"tag":425,"props":2775,"children":2776},{"style":432},[2777],{"type":52,"value":1261},{"type":46,"tag":425,"props":2779,"children":2780},{"style":733},[2781],{"type":52,"value":1487},{"type":46,"tag":425,"props":2783,"children":2784},{"style":432},[2785],{"type":52,"value":440},{"type":46,"tag":425,"props":2787,"children":2788},{"style":432},[2789],{"type":52,"value":369},{"type":46,"tag":425,"props":2791,"children":2792},{"style":432},[2793],{"type":52,"value":458},{"type":46,"tag":425,"props":2795,"children":2796},{"style":461},[2797],{"type":52,"value":2798},"4d2a6aa1-ca4d-4165-a635-7ef53084636b",{"type":46,"tag":425,"props":2800,"children":2801},{"style":432},[2802],{"type":52,"value":440},{"type":46,"tag":425,"props":2804,"children":2805},{"style":432},[2806],{"type":52,"value":1399},{"type":46,"tag":425,"props":2808,"children":2810},{"class":427,"line":2809},58,[2811,2815,2819,2823,2827,2831,2836,2840],{"type":46,"tag":425,"props":2812,"children":2813},{"style":432},[2814],{"type":52,"value":1261},{"type":46,"tag":425,"props":2816,"children":2817},{"style":733},[2818],{"type":52,"value":404},{"type":46,"tag":425,"props":2820,"children":2821},{"style":432},[2822],{"type":52,"value":440},{"type":46,"tag":425,"props":2824,"children":2825},{"style":432},[2826],{"type":52,"value":369},{"type":46,"tag":425,"props":2828,"children":2829},{"style":432},[2830],{"type":52,"value":458},{"type":46,"tag":425,"props":2832,"children":2833},{"style":461},[2834],{"type":52,"value":2835},"Chat input",{"type":46,"tag":425,"props":2837,"children":2838},{"style":432},[2839],{"type":52,"value":440},{"type":46,"tag":425,"props":2841,"children":2842},{"style":432},[2843],{"type":52,"value":1399},{"type":46,"tag":425,"props":2845,"children":2847},{"class":427,"line":2846},59,[2848,2852,2857,2861,2865,2869,2874],{"type":46,"tag":425,"props":2849,"children":2850},{"style":432},[2851],{"type":52,"value":1261},{"type":46,"tag":425,"props":2853,"children":2854},{"style":733},[2855],{"type":52,"value":2856},"webhookId",{"type":46,"tag":425,"props":2858,"children":2859},{"style":432},[2860],{"type":52,"value":440},{"type":46,"tag":425,"props":2862,"children":2863},{"style":432},[2864],{"type":52,"value":369},{"type":46,"tag":425,"props":2866,"children":2867},{"style":432},[2868],{"type":52,"value":458},{"type":46,"tag":425,"props":2870,"children":2871},{"style":461},[2872],{"type":52,"value":2873},"4672d1f8-d2bb-4059-8761-7aa5792814c0",{"type":46,"tag":425,"props":2875,"children":2876},{"style":432},[2877],{"type":52,"value":1342},{"type":46,"tag":425,"props":2879,"children":2881},{"class":427,"line":2880},60,[2882],{"type":46,"tag":425,"props":2883,"children":2884},{"style":432},[2885],{"type":52,"value":1553},{"type":46,"tag":425,"props":2887,"children":2889},{"class":427,"line":2888},61,[2890],{"type":46,"tag":425,"props":2891,"children":2892},{"style":432},[2893],{"type":52,"value":1252},{"type":46,"tag":425,"props":2895,"children":2897},{"class":427,"line":2896},62,[2898,2902,2906,2910,2914],{"type":46,"tag":425,"props":2899,"children":2900},{"style":432},[2901],{"type":52,"value":1261},{"type":46,"tag":425,"props":2903,"children":2904},{"style":733},[2905],{"type":52,"value":1266},{"type":46,"tag":425,"props":2907,"children":2908},{"style":432},[2909],{"type":52,"value":440},{"type":46,"tag":425,"props":2911,"children":2912},{"style":432},[2913],{"type":52,"value":369},{"type":46,"tag":425,"props":2915,"children":2916},{"style":432},[2917],{"type":52,"value":2918}," {},\n",{"type":46,"tag":425,"props":2920,"children":2922},{"class":427,"line":2921},63,[2923,2927,2931,2935,2939,2943,2948,2952],{"type":46,"tag":425,"props":2924,"children":2925},{"style":432},[2926],{"type":52,"value":1261},{"type":46,"tag":425,"props":2928,"children":2929},{"style":733},[2930],{"type":52,"value":1373},{"type":46,"tag":425,"props":2932,"children":2933},{"style":432},[2934],{"type":52,"value":440},{"type":46,"tag":425,"props":2936,"children":2937},{"style":432},[2938],{"type":52,"value":369},{"type":46,"tag":425,"props":2940,"children":2941},{"style":432},[2942],{"type":52,"value":458},{"type":46,"tag":425,"props":2944,"children":2945},{"style":461},[2946],{"type":52,"value":2947},"n8n-nodes-base.manualTrigger",{"type":46,"tag":425,"props":2949,"children":2950},{"style":432},[2951],{"type":52,"value":440},{"type":46,"tag":425,"props":2953,"children":2954},{"style":432},[2955],{"type":52,"value":1399},{"type":46,"tag":425,"props":2957,"children":2959},{"class":427,"line":2958},64,[2960,2964,2968,2972,2976,2980],{"type":46,"tag":425,"props":2961,"children":2962},{"style":432},[2963],{"type":52,"value":1261},{"type":46,"tag":425,"props":2965,"children":2966},{"style":733},[2967],{"type":52,"value":1412},{"type":46,"tag":425,"props":2969,"children":2970},{"style":432},[2971],{"type":52,"value":440},{"type":46,"tag":425,"props":2973,"children":2974},{"style":432},[2975],{"type":52,"value":369},{"type":46,"tag":425,"props":2977,"children":2978},{"style":756},[2979],{"type":52,"value":2186},{"type":46,"tag":425,"props":2981,"children":2982},{"style":432},[2983],{"type":52,"value":1399},{"type":46,"tag":425,"props":2985,"children":2987},{"class":427,"line":2986},65,[2988,2992,2996,3000,3004,3008,3013,3017,3022],{"type":46,"tag":425,"props":2989,"children":2990},{"style":432},[2991],{"type":52,"value":1261},{"type":46,"tag":425,"props":2993,"children":2994},{"style":733},[2995],{"type":52,"value":1442},{"type":46,"tag":425,"props":2997,"children":2998},{"style":432},[2999],{"type":52,"value":440},{"type":46,"tag":425,"props":3001,"children":3002},{"style":432},[3003],{"type":52,"value":369},{"type":46,"tag":425,"props":3005,"children":3006},{"style":432},[3007],{"type":52,"value":1455},{"type":46,"tag":425,"props":3009,"children":3010},{"style":756},[3011],{"type":52,"value":3012},"1760",{"type":46,"tag":425,"props":3014,"children":3015},{"style":432},[3016],{"type":52,"value":473},{"type":46,"tag":425,"props":3018,"children":3019},{"style":756},[3020],{"type":52,"value":3021}," 432",{"type":46,"tag":425,"props":3023,"children":3024},{"style":432},[3025],{"type":52,"value":1474},{"type":46,"tag":425,"props":3027,"children":3029},{"class":427,"line":3028},66,[3030,3034,3038,3042,3046,3050,3055,3059],{"type":46,"tag":425,"props":3031,"children":3032},{"style":432},[3033],{"type":52,"value":1261},{"type":46,"tag":425,"props":3035,"children":3036},{"style":733},[3037],{"type":52,"value":1487},{"type":46,"tag":425,"props":3039,"children":3040},{"style":432},[3041],{"type":52,"value":440},{"type":46,"tag":425,"props":3043,"children":3044},{"style":432},[3045],{"type":52,"value":369},{"type":46,"tag":425,"props":3047,"children":3048},{"style":432},[3049],{"type":52,"value":458},{"type":46,"tag":425,"props":3051,"children":3052},{"style":461},[3053],{"type":52,"value":3054},"3e9529b4-d0ae-4ea8-9d27-c96e7cbd6ad9",{"type":46,"tag":425,"props":3056,"children":3057},{"style":432},[3058],{"type":52,"value":440},{"type":46,"tag":425,"props":3060,"children":3061},{"style":432},[3062],{"type":52,"value":1399},{"type":46,"tag":425,"props":3064,"children":3066},{"class":427,"line":3065},67,[3067,3071,3075,3079,3083,3087,3092],{"type":46,"tag":425,"props":3068,"children":3069},{"style":432},[3070],{"type":52,"value":1261},{"type":46,"tag":425,"props":3072,"children":3073},{"style":733},[3074],{"type":52,"value":404},{"type":46,"tag":425,"props":3076,"children":3077},{"style":432},[3078],{"type":52,"value":440},{"type":46,"tag":425,"props":3080,"children":3081},{"style":432},[3082],{"type":52,"value":369},{"type":46,"tag":425,"props":3084,"children":3085},{"style":432},[3086],{"type":52,"value":458},{"type":46,"tag":425,"props":3088,"children":3089},{"style":461},[3090],{"type":52,"value":3091},"When clicking 'Execute workflow'",{"type":46,"tag":425,"props":3093,"children":3094},{"style":432},[3095],{"type":52,"value":1342},{"type":46,"tag":425,"props":3097,"children":3099},{"class":427,"line":3098},68,[3100],{"type":46,"tag":425,"props":3101,"children":3102},{"style":432},[3103],{"type":52,"value":1553},{"type":46,"tag":425,"props":3105,"children":3107},{"class":427,"line":3106},69,[3108],{"type":46,"tag":425,"props":3109,"children":3110},{"style":432},[3111],{"type":52,"value":1252},{"type":46,"tag":425,"props":3113,"children":3115},{"class":427,"line":3114},70,[3116,3120,3124,3128,3132],{"type":46,"tag":425,"props":3117,"children":3118},{"style":432},[3119],{"type":52,"value":1261},{"type":46,"tag":425,"props":3121,"children":3122},{"style":733},[3123],{"type":52,"value":1266},{"type":46,"tag":425,"props":3125,"children":3126},{"style":432},[3127],{"type":52,"value":440},{"type":46,"tag":425,"props":3129,"children":3130},{"style":432},[3131],{"type":52,"value":369},{"type":46,"tag":425,"props":3133,"children":3134},{"style":432},[3135],{"type":52,"value":1279},{"type":46,"tag":425,"props":3137,"children":3139},{"class":427,"line":3138},71,[3140,3144,3149,3153,3157],{"type":46,"tag":425,"props":3141,"children":3142},{"style":432},[3143],{"type":52,"value":1288},{"type":46,"tag":425,"props":3145,"children":3146},{"style":756},[3147],{"type":52,"value":3148},"assignments",{"type":46,"tag":425,"props":3150,"children":3151},{"style":432},[3152],{"type":52,"value":440},{"type":46,"tag":425,"props":3154,"children":3155},{"style":432},[3156],{"type":52,"value":369},{"type":46,"tag":425,"props":3158,"children":3159},{"style":432},[3160],{"type":52,"value":1279},{"type":46,"tag":425,"props":3162,"children":3164},{"class":427,"line":3163},72,[3165,3169,3173,3177,3181],{"type":46,"tag":425,"props":3166,"children":3167},{"style":432},[3168],{"type":52,"value":1314},{"type":46,"tag":425,"props":3170,"children":3171},{"style":1317},[3172],{"type":52,"value":3148},{"type":46,"tag":425,"props":3174,"children":3175},{"style":432},[3176],{"type":52,"value":440},{"type":46,"tag":425,"props":3178,"children":3179},{"style":432},[3180],{"type":52,"value":369},{"type":46,"tag":425,"props":3182,"children":3183},{"style":432},[3184],{"type":52,"value":1244},{"type":46,"tag":425,"props":3186,"children":3188},{"class":427,"line":3187},73,[3189],{"type":46,"tag":425,"props":3190,"children":3191},{"style":432},[3192],{"type":52,"value":3193},"            {\n",{"type":46,"tag":425,"props":3195,"children":3197},{"class":427,"line":3196},74,[3198,3203,3208,3212,3216,3220,3225,3229],{"type":46,"tag":425,"props":3199,"children":3200},{"style":432},[3201],{"type":52,"value":3202},"              \"",{"type":46,"tag":425,"props":3204,"children":3206},{"style":3205},"--shiki-light:#916B53;--shiki-default:#916B53;--shiki-dark:#916B53",[3207],{"type":52,"value":1487},{"type":46,"tag":425,"props":3209,"children":3210},{"style":432},[3211],{"type":52,"value":440},{"type":46,"tag":425,"props":3213,"children":3214},{"style":432},[3215],{"type":52,"value":369},{"type":46,"tag":425,"props":3217,"children":3218},{"style":432},[3219],{"type":52,"value":458},{"type":46,"tag":425,"props":3221,"children":3222},{"style":461},[3223],{"type":52,"value":3224},"d0e724df-685f-4661-b2ec-3cdd3c2ba0f1",{"type":46,"tag":425,"props":3226,"children":3227},{"style":432},[3228],{"type":52,"value":440},{"type":46,"tag":425,"props":3230,"children":3231},{"style":432},[3232],{"type":52,"value":1399},{"type":46,"tag":425,"props":3234,"children":3236},{"class":427,"line":3235},75,[3237,3241,3245,3249,3253,3257,3262,3266],{"type":46,"tag":425,"props":3238,"children":3239},{"style":432},[3240],{"type":52,"value":3202},{"type":46,"tag":425,"props":3242,"children":3243},{"style":3205},[3244],{"type":52,"value":404},{"type":46,"tag":425,"props":3246,"children":3247},{"style":432},[3248],{"type":52,"value":440},{"type":46,"tag":425,"props":3250,"children":3251},{"style":432},[3252],{"type":52,"value":369},{"type":46,"tag":425,"props":3254,"children":3255},{"style":432},[3256],{"type":52,"value":458},{"type":46,"tag":425,"props":3258,"children":3259},{"style":461},[3260],{"type":52,"value":3261},"urls",{"type":46,"tag":425,"props":3263,"children":3264},{"style":432},[3265],{"type":52,"value":440},{"type":46,"tag":425,"props":3267,"children":3268},{"style":432},[3269],{"type":52,"value":1399},{"type":46,"tag":425,"props":3271,"children":3273},{"class":427,"line":3272},76,[3274,3278,3282,3286,3290,3294,3298,3302],{"type":46,"tag":425,"props":3275,"children":3276},{"style":432},[3277],{"type":52,"value":3202},{"type":46,"tag":425,"props":3279,"children":3280},{"style":3205},[3281],{"type":52,"value":793},{"type":46,"tag":425,"props":3283,"children":3284},{"style":432},[3285],{"type":52,"value":440},{"type":46,"tag":425,"props":3287,"children":3288},{"style":432},[3289],{"type":52,"value":369},{"type":46,"tag":425,"props":3291,"children":3292},{"style":432},[3293],{"type":52,"value":458},{"type":46,"tag":425,"props":3295,"children":3296},{"style":461},[3297],{"type":52,"value":1170},{"type":46,"tag":425,"props":3299,"children":3300},{"style":432},[3301],{"type":52,"value":440},{"type":46,"tag":425,"props":3303,"children":3304},{"style":432},[3305],{"type":52,"value":1399},{"type":46,"tag":425,"props":3307,"children":3309},{"class":427,"line":3308},77,[3310,3314,3318,3322,3326,3330,3335],{"type":46,"tag":425,"props":3311,"children":3312},{"style":432},[3313],{"type":52,"value":3202},{"type":46,"tag":425,"props":3315,"children":3316},{"style":3205},[3317],{"type":52,"value":1373},{"type":46,"tag":425,"props":3319,"children":3320},{"style":432},[3321],{"type":52,"value":440},{"type":46,"tag":425,"props":3323,"children":3324},{"style":432},[3325],{"type":52,"value":369},{"type":46,"tag":425,"props":3327,"children":3328},{"style":432},[3329],{"type":52,"value":458},{"type":46,"tag":425,"props":3331,"children":3332},{"style":461},[3333],{"type":52,"value":3334},"array",{"type":46,"tag":425,"props":3336,"children":3337},{"style":432},[3338],{"type":52,"value":1342},{"type":46,"tag":425,"props":3340,"children":3342},{"class":427,"line":3341},78,[3343],{"type":46,"tag":425,"props":3344,"children":3345},{"style":432},[3346],{"type":52,"value":3347},"            }\n",{"type":46,"tag":425,"props":3349,"children":3351},{"class":427,"line":3350},79,[3352],{"type":46,"tag":425,"props":3353,"children":3354},{"style":432},[3355],{"type":52,"value":3356},"          ]\n",{"type":46,"tag":425,"props":3358,"children":3360},{"class":427,"line":3359},80,[3361],{"type":46,"tag":425,"props":3362,"children":3363},{"style":432},[3364],{"type":52,"value":3365},"        },\n",{"type":46,"tag":425,"props":3367,"children":3369},{"class":427,"line":3368},81,[3370,3374,3378,3382,3386],{"type":46,"tag":425,"props":3371,"children":3372},{"style":432},[3373],{"type":52,"value":1288},{"type":46,"tag":425,"props":3375,"children":3376},{"style":756},[3377],{"type":52,"value":1293},{"type":46,"tag":425,"props":3379,"children":3380},{"style":432},[3381],{"type":52,"value":440},{"type":46,"tag":425,"props":3383,"children":3384},{"style":432},[3385],{"type":52,"value":369},{"type":46,"tag":425,"props":3387,"children":3388},{"style":432},[3389],{"type":52,"value":1724},{"type":46,"tag":425,"props":3391,"children":3393},{"class":427,"line":3392},82,[3394],{"type":46,"tag":425,"props":3395,"children":3396},{"style":432},[3397],{"type":52,"value":1360},{"type":46,"tag":425,"props":3399,"children":3401},{"class":427,"line":3400},83,[3402,3406,3410,3414,3418,3422,3427,3431],{"type":46,"tag":425,"props":3403,"children":3404},{"style":432},[3405],{"type":52,"value":1261},{"type":46,"tag":425,"props":3407,"children":3408},{"style":733},[3409],{"type":52,"value":1373},{"type":46,"tag":425,"props":3411,"children":3412},{"style":432},[3413],{"type":52,"value":440},{"type":46,"tag":425,"props":3415,"children":3416},{"style":432},[3417],{"type":52,"value":369},{"type":46,"tag":425,"props":3419,"children":3420},{"style":432},[3421],{"type":52,"value":458},{"type":46,"tag":425,"props":3423,"children":3424},{"style":461},[3425],{"type":52,"value":3426},"n8n-nodes-base.set",{"type":46,"tag":425,"props":3428,"children":3429},{"style":432},[3430],{"type":52,"value":440},{"type":46,"tag":425,"props":3432,"children":3433},{"style":432},[3434],{"type":52,"value":1399},{"type":46,"tag":425,"props":3436,"children":3438},{"class":427,"line":3437},84,[3439,3443,3447,3451,3455,3460],{"type":46,"tag":425,"props":3440,"children":3441},{"style":432},[3442],{"type":52,"value":1261},{"type":46,"tag":425,"props":3444,"children":3445},{"style":733},[3446],{"type":52,"value":1412},{"type":46,"tag":425,"props":3448,"children":3449},{"style":432},[3450],{"type":52,"value":440},{"type":46,"tag":425,"props":3452,"children":3453},{"style":432},[3454],{"type":52,"value":369},{"type":46,"tag":425,"props":3456,"children":3457},{"style":756},[3458],{"type":52,"value":3459}," 3.4",{"type":46,"tag":425,"props":3461,"children":3462},{"style":432},[3463],{"type":52,"value":1399},{"type":46,"tag":425,"props":3465,"children":3467},{"class":427,"line":3466},85,[3468,3472,3476,3480,3484,3488,3493,3497,3501],{"type":46,"tag":425,"props":3469,"children":3470},{"style":432},[3471],{"type":52,"value":1261},{"type":46,"tag":425,"props":3473,"children":3474},{"style":733},[3475],{"type":52,"value":1442},{"type":46,"tag":425,"props":3477,"children":3478},{"style":432},[3479],{"type":52,"value":440},{"type":46,"tag":425,"props":3481,"children":3482},{"style":432},[3483],{"type":52,"value":369},{"type":46,"tag":425,"props":3485,"children":3486},{"style":432},[3487],{"type":52,"value":1455},{"type":46,"tag":425,"props":3489,"children":3490},{"style":756},[3491],{"type":52,"value":3492},"1920",{"type":46,"tag":425,"props":3494,"children":3495},{"style":432},[3496],{"type":52,"value":473},{"type":46,"tag":425,"props":3498,"children":3499},{"style":756},[3500],{"type":52,"value":3021},{"type":46,"tag":425,"props":3502,"children":3503},{"style":432},[3504],{"type":52,"value":1474},{"type":46,"tag":425,"props":3506,"children":3508},{"class":427,"line":3507},86,[3509,3513,3517,3521,3525,3529,3534,3538],{"type":46,"tag":425,"props":3510,"children":3511},{"style":432},[3512],{"type":52,"value":1261},{"type":46,"tag":425,"props":3514,"children":3515},{"style":733},[3516],{"type":52,"value":1487},{"type":46,"tag":425,"props":3518,"children":3519},{"style":432},[3520],{"type":52,"value":440},{"type":46,"tag":425,"props":3522,"children":3523},{"style":432},[3524],{"type":52,"value":369},{"type":46,"tag":425,"props":3526,"children":3527},{"style":432},[3528],{"type":52,"value":458},{"type":46,"tag":425,"props":3530,"children":3531},{"style":461},[3532],{"type":52,"value":3533},"6b409421-2270-497e-a7fd-b382d192314c",{"type":46,"tag":425,"props":3535,"children":3536},{"style":432},[3537],{"type":52,"value":440},{"type":46,"tag":425,"props":3539,"children":3540},{"style":432},[3541],{"type":52,"value":1399},{"type":46,"tag":425,"props":3543,"children":3545},{"class":427,"line":3544},87,[3546,3550,3554,3558,3562,3566,3571],{"type":46,"tag":425,"props":3547,"children":3548},{"style":432},[3549],{"type":52,"value":1261},{"type":46,"tag":425,"props":3551,"children":3552},{"style":733},[3553],{"type":52,"value":404},{"type":46,"tag":425,"props":3555,"children":3556},{"style":432},[3557],{"type":52,"value":440},{"type":46,"tag":425,"props":3559,"children":3560},{"style":432},[3561],{"type":52,"value":369},{"type":46,"tag":425,"props":3563,"children":3564},{"style":432},[3565],{"type":52,"value":458},{"type":46,"tag":425,"props":3567,"children":3568},{"style":461},[3569],{"type":52,"value":3570},"Set file urls",{"type":46,"tag":425,"props":3572,"children":3573},{"style":432},[3574],{"type":52,"value":1342},{"type":46,"tag":425,"props":3576,"children":3578},{"class":427,"line":3577},88,[3579],{"type":46,"tag":425,"props":3580,"children":3581},{"style":432},[3582],{"type":52,"value":1553},{"type":46,"tag":425,"props":3584,"children":3586},{"class":427,"line":3585},89,[3587],{"type":46,"tag":425,"props":3588,"children":3589},{"style":432},[3590],{"type":52,"value":1252},{"type":46,"tag":425,"props":3592,"children":3594},{"class":427,"line":3593},90,[3595,3599,3603,3607,3611,3615,3619,3624,3628,3632,3636,3640,3644,3648,3652,3656,3660,3664],{"type":46,"tag":425,"props":3596,"children":3597},{"style":432},[3598],{"type":52,"value":1261},{"type":46,"tag":425,"props":3600,"children":3601},{"style":733},[3602],{"type":52,"value":1266},{"type":46,"tag":425,"props":3604,"children":3605},{"style":432},[3606],{"type":52,"value":440},{"type":46,"tag":425,"props":3608,"children":3609},{"style":432},[3610],{"type":52,"value":369},{"type":46,"tag":425,"props":3612,"children":3613},{"style":432},[3614],{"type":52,"value":726},{"type":46,"tag":425,"props":3616,"children":3617},{"style":432},[3618],{"type":52,"value":440},{"type":46,"tag":425,"props":3620,"children":3621},{"style":756},[3622],{"type":52,"value":3623},"fieldToSplitOut",{"type":46,"tag":425,"props":3625,"children":3626},{"style":432},[3627],{"type":52,"value":440},{"type":46,"tag":425,"props":3629,"children":3630},{"style":432},[3631],{"type":52,"value":369},{"type":46,"tag":425,"props":3633,"children":3634},{"style":432},[3635],{"type":52,"value":458},{"type":46,"tag":425,"props":3637,"children":3638},{"style":461},[3639],{"type":52,"value":3261},{"type":46,"tag":425,"props":3641,"children":3642},{"style":432},[3643],{"type":52,"value":440},{"type":46,"tag":425,"props":3645,"children":3646},{"style":432},[3647],{"type":52,"value":473},{"type":46,"tag":425,"props":3649,"children":3650},{"style":432},[3651],{"type":52,"value":458},{"type":46,"tag":425,"props":3653,"children":3654},{"style":756},[3655],{"type":52,"value":1293},{"type":46,"tag":425,"props":3657,"children":3658},{"style":432},[3659],{"type":52,"value":440},{"type":46,"tag":425,"props":3661,"children":3662},{"style":432},[3663],{"type":52,"value":369},{"type":46,"tag":425,"props":3665,"children":3666},{"style":432},[3667],{"type":52,"value":2662},{"type":46,"tag":425,"props":3669,"children":3671},{"class":427,"line":3670},91,[3672,3676,3680,3684,3688,3692,3697,3701],{"type":46,"tag":425,"props":3673,"children":3674},{"style":432},[3675],{"type":52,"value":1261},{"type":46,"tag":425,"props":3677,"children":3678},{"style":733},[3679],{"type":52,"value":1373},{"type":46,"tag":425,"props":3681,"children":3682},{"style":432},[3683],{"type":52,"value":440},{"type":46,"tag":425,"props":3685,"children":3686},{"style":432},[3687],{"type":52,"value":369},{"type":46,"tag":425,"props":3689,"children":3690},{"style":432},[3691],{"type":52,"value":458},{"type":46,"tag":425,"props":3693,"children":3694},{"style":461},[3695],{"type":52,"value":3696},"n8n-nodes-base.splitOut",{"type":46,"tag":425,"props":3698,"children":3699},{"style":432},[3700],{"type":52,"value":440},{"type":46,"tag":425,"props":3702,"children":3703},{"style":432},[3704],{"type":52,"value":1399},{"type":46,"tag":425,"props":3706,"children":3708},{"class":427,"line":3707},92,[3709,3713,3717,3721,3725,3729],{"type":46,"tag":425,"props":3710,"children":3711},{"style":432},[3712],{"type":52,"value":1261},{"type":46,"tag":425,"props":3714,"children":3715},{"style":733},[3716],{"type":52,"value":1412},{"type":46,"tag":425,"props":3718,"children":3719},{"style":432},[3720],{"type":52,"value":440},{"type":46,"tag":425,"props":3722,"children":3723},{"style":432},[3724],{"type":52,"value":369},{"type":46,"tag":425,"props":3726,"children":3727},{"style":756},[3728],{"type":52,"value":2186},{"type":46,"tag":425,"props":3730,"children":3731},{"style":432},[3732],{"type":52,"value":1399},{"type":46,"tag":425,"props":3734,"children":3736},{"class":427,"line":3735},93,[3737,3741,3745,3749,3753,3757,3762,3766,3770],{"type":46,"tag":425,"props":3738,"children":3739},{"style":432},[3740],{"type":52,"value":1261},{"type":46,"tag":425,"props":3742,"children":3743},{"style":733},[3744],{"type":52,"value":1442},{"type":46,"tag":425,"props":3746,"children":3747},{"style":432},[3748],{"type":52,"value":440},{"type":46,"tag":425,"props":3750,"children":3751},{"style":432},[3752],{"type":52,"value":369},{"type":46,"tag":425,"props":3754,"children":3755},{"style":432},[3756],{"type":52,"value":1455},{"type":46,"tag":425,"props":3758,"children":3759},{"style":756},[3760],{"type":52,"value":3761},"2080",{"type":46,"tag":425,"props":3763,"children":3764},{"style":432},[3765],{"type":52,"value":473},{"type":46,"tag":425,"props":3767,"children":3768},{"style":756},[3769],{"type":52,"value":3021},{"type":46,"tag":425,"props":3771,"children":3772},{"style":432},[3773],{"type":52,"value":1474},{"type":46,"tag":425,"props":3775,"children":3777},{"class":427,"line":3776},94,[3778,3782,3786,3790,3794,3798,3803,3807],{"type":46,"tag":425,"props":3779,"children":3780},{"style":432},[3781],{"type":52,"value":1261},{"type":46,"tag":425,"props":3783,"children":3784},{"style":733},[3785],{"type":52,"value":1487},{"type":46,"tag":425,"props":3787,"children":3788},{"style":432},[3789],{"type":52,"value":440},{"type":46,"tag":425,"props":3791,"children":3792},{"style":432},[3793],{"type":52,"value":369},{"type":46,"tag":425,"props":3795,"children":3796},{"style":432},[3797],{"type":52,"value":458},{"type":46,"tag":425,"props":3799,"children":3800},{"style":461},[3801],{"type":52,"value":3802},"e73f6f2c-4d20-48cb-b132-551ff9c3dd61",{"type":46,"tag":425,"props":3804,"children":3805},{"style":432},[3806],{"type":52,"value":440},{"type":46,"tag":425,"props":3808,"children":3809},{"style":432},[3810],{"type":52,"value":1399},{"type":46,"tag":425,"props":3812,"children":3814},{"class":427,"line":3813},95,[3815,3819,3823,3827,3831,3835,3840],{"type":46,"tag":425,"props":3816,"children":3817},{"style":432},[3818],{"type":52,"value":1261},{"type":46,"tag":425,"props":3820,"children":3821},{"style":733},[3822],{"type":52,"value":404},{"type":46,"tag":425,"props":3824,"children":3825},{"style":432},[3826],{"type":52,"value":440},{"type":46,"tag":425,"props":3828,"children":3829},{"style":432},[3830],{"type":52,"value":369},{"type":46,"tag":425,"props":3832,"children":3833},{"style":432},[3834],{"type":52,"value":458},{"type":46,"tag":425,"props":3836,"children":3837},{"style":461},[3838],{"type":52,"value":3839},"Split to list",{"type":46,"tag":425,"props":3841,"children":3842},{"style":432},[3843],{"type":52,"value":1342},{"type":46,"tag":425,"props":3845,"children":3847},{"class":427,"line":3846},96,[3848],{"type":46,"tag":425,"props":3849,"children":3850},{"style":432},[3851],{"type":52,"value":1553},{"type":46,"tag":425,"props":3853,"children":3855},{"class":427,"line":3854},97,[3856],{"type":46,"tag":425,"props":3857,"children":3858},{"style":432},[3859],{"type":52,"value":1252},{"type":46,"tag":425,"props":3861,"children":3863},{"class":427,"line":3862},98,[3864,3868,3872,3876,3880],{"type":46,"tag":425,"props":3865,"children":3866},{"style":432},[3867],{"type":52,"value":1261},{"type":46,"tag":425,"props":3869,"children":3870},{"style":733},[3871],{"type":52,"value":1266},{"type":46,"tag":425,"props":3873,"children":3874},{"style":432},[3875],{"type":52,"value":440},{"type":46,"tag":425,"props":3877,"children":3878},{"style":432},[3879],{"type":52,"value":369},{"type":46,"tag":425,"props":3881,"children":3882},{"style":432},[3883],{"type":52,"value":1279},{"type":46,"tag":425,"props":3885,"children":3887},{"class":427,"line":3886},99,[3888,3892,3897,3901,3905,3909,3914,3918],{"type":46,"tag":425,"props":3889,"children":3890},{"style":432},[3891],{"type":52,"value":1288},{"type":46,"tag":425,"props":3893,"children":3894},{"style":756},[3895],{"type":52,"value":3896},"url",{"type":46,"tag":425,"props":3898,"children":3899},{"style":432},[3900],{"type":52,"value":440},{"type":46,"tag":425,"props":3902,"children":3903},{"style":432},[3904],{"type":52,"value":369},{"type":46,"tag":425,"props":3906,"children":3907},{"style":432},[3908],{"type":52,"value":458},{"type":46,"tag":425,"props":3910,"children":3911},{"style":461},[3912],{"type":52,"value":3913},"={{ $json.urls }}",{"type":46,"tag":425,"props":3915,"children":3916},{"style":432},[3917],{"type":52,"value":440},{"type":46,"tag":425,"props":3919,"children":3920},{"style":432},[3921],{"type":52,"value":1399},{"type":46,"tag":425,"props":3923,"children":3925},{"class":427,"line":3924},100,[3926,3930,3934,3938,3942,3946,3950,3955,3959,3963,3967,3971,3975,3979,3983,3987,3991,3997,4001,4005,4009,4014,4018],{"type":46,"tag":425,"props":3927,"children":3928},{"style":432},[3929],{"type":52,"value":1288},{"type":46,"tag":425,"props":3931,"children":3932},{"style":756},[3933],{"type":52,"value":1293},{"type":46,"tag":425,"props":3935,"children":3936},{"style":432},[3937],{"type":52,"value":440},{"type":46,"tag":425,"props":3939,"children":3940},{"style":432},[3941],{"type":52,"value":369},{"type":46,"tag":425,"props":3943,"children":3944},{"style":432},[3945],{"type":52,"value":726},{"type":46,"tag":425,"props":3947,"children":3948},{"style":432},[3949],{"type":52,"value":440},{"type":46,"tag":425,"props":3951,"children":3952},{"style":1317},[3953],{"type":52,"value":3954},"response",{"type":46,"tag":425,"props":3956,"children":3957},{"style":432},[3958],{"type":52,"value":440},{"type":46,"tag":425,"props":3960,"children":3961},{"style":432},[3962],{"type":52,"value":369},{"type":46,"tag":425,"props":3964,"children":3965},{"style":432},[3966],{"type":52,"value":726},{"type":46,"tag":425,"props":3968,"children":3969},{"style":432},[3970],{"type":52,"value":440},{"type":46,"tag":425,"props":3972,"children":3973},{"style":3205},[3974],{"type":52,"value":3954},{"type":46,"tag":425,"props":3976,"children":3977},{"style":432},[3978],{"type":52,"value":440},{"type":46,"tag":425,"props":3980,"children":3981},{"style":432},[3982],{"type":52,"value":369},{"type":46,"tag":425,"props":3984,"children":3985},{"style":432},[3986],{"type":52,"value":726},{"type":46,"tag":425,"props":3988,"children":3989},{"style":432},[3990],{"type":52,"value":440},{"type":46,"tag":425,"props":3992,"children":3994},{"style":3993},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[3995],{"type":52,"value":3996},"responseFormat",{"type":46,"tag":425,"props":3998,"children":3999},{"style":432},[4000],{"type":52,"value":440},{"type":46,"tag":425,"props":4002,"children":4003},{"style":432},[4004],{"type":52,"value":369},{"type":46,"tag":425,"props":4006,"children":4007},{"style":432},[4008],{"type":52,"value":458},{"type":46,"tag":425,"props":4010,"children":4011},{"style":461},[4012],{"type":52,"value":4013},"file",{"type":46,"tag":425,"props":4015,"children":4016},{"style":432},[4017],{"type":52,"value":440},{"type":46,"tag":425,"props":4019,"children":4020},{"style":432},[4021],{"type":52,"value":4022},"}}}\n",{"type":46,"tag":425,"props":4024,"children":4026},{"class":427,"line":4025},101,[4027],{"type":46,"tag":425,"props":4028,"children":4029},{"style":432},[4030],{"type":52,"value":1360},{"type":46,"tag":425,"props":4032,"children":4034},{"class":427,"line":4033},102,[4035,4039,4043,4047,4051,4055,4060,4064],{"type":46,"tag":425,"props":4036,"children":4037},{"style":432},[4038],{"type":52,"value":1261},{"type":46,"tag":425,"props":4040,"children":4041},{"style":733},[4042],{"type":52,"value":1373},{"type":46,"tag":425,"props":4044,"children":4045},{"style":432},[4046],{"type":52,"value":440},{"type":46,"tag":425,"props":4048,"children":4049},{"style":432},[4050],{"type":52,"value":369},{"type":46,"tag":425,"props":4052,"children":4053},{"style":432},[4054],{"type":52,"value":458},{"type":46,"tag":425,"props":4056,"children":4057},{"style":461},[4058],{"type":52,"value":4059},"n8n-nodes-base.httpRequest",{"type":46,"tag":425,"props":4061,"children":4062},{"style":432},[4063],{"type":52,"value":440},{"type":46,"tag":425,"props":4065,"children":4066},{"style":432},[4067],{"type":52,"value":1399},{"type":46,"tag":425,"props":4069,"children":4071},{"class":427,"line":4070},103,[4072,4076,4080,4084,4088,4093],{"type":46,"tag":425,"props":4073,"children":4074},{"style":432},[4075],{"type":52,"value":1261},{"type":46,"tag":425,"props":4077,"children":4078},{"style":733},[4079],{"type":52,"value":1412},{"type":46,"tag":425,"props":4081,"children":4082},{"style":432},[4083],{"type":52,"value":440},{"type":46,"tag":425,"props":4085,"children":4086},{"style":432},[4087],{"type":52,"value":369},{"type":46,"tag":425,"props":4089,"children":4090},{"style":756},[4091],{"type":52,"value":4092}," 4.2",{"type":46,"tag":425,"props":4094,"children":4095},{"style":432},[4096],{"type":52,"value":1399},{"type":46,"tag":425,"props":4098,"children":4100},{"class":427,"line":4099},104,[4101,4105,4109,4113,4117,4121,4126,4130,4134],{"type":46,"tag":425,"props":4102,"children":4103},{"style":432},[4104],{"type":52,"value":1261},{"type":46,"tag":425,"props":4106,"children":4107},{"style":733},[4108],{"type":52,"value":1442},{"type":46,"tag":425,"props":4110,"children":4111},{"style":432},[4112],{"type":52,"value":440},{"type":46,"tag":425,"props":4114,"children":4115},{"style":432},[4116],{"type":52,"value":369},{"type":46,"tag":425,"props":4118,"children":4119},{"style":432},[4120],{"type":52,"value":1455},{"type":46,"tag":425,"props":4122,"children":4123},{"style":756},[4124],{"type":52,"value":4125},"2240",{"type":46,"tag":425,"props":4127,"children":4128},{"style":432},[4129],{"type":52,"value":473},{"type":46,"tag":425,"props":4131,"children":4132},{"style":756},[4133],{"type":52,"value":3021},{"type":46,"tag":425,"props":4135,"children":4136},{"style":432},[4137],{"type":52,"value":1474},{"type":46,"tag":425,"props":4139,"children":4141},{"class":427,"line":4140},105,[4142,4146,4150,4154,4158,4162,4167,4171],{"type":46,"tag":425,"props":4143,"children":4144},{"style":432},[4145],{"type":52,"value":1261},{"type":46,"tag":425,"props":4147,"children":4148},{"style":733},[4149],{"type":52,"value":1487},{"type":46,"tag":425,"props":4151,"children":4152},{"style":432},[4153],{"type":52,"value":440},{"type":46,"tag":425,"props":4155,"children":4156},{"style":432},[4157],{"type":52,"value":369},{"type":46,"tag":425,"props":4159,"children":4160},{"style":432},[4161],{"type":52,"value":458},{"type":46,"tag":425,"props":4163,"children":4164},{"style":461},[4165],{"type":52,"value":4166},"a58f8e1c-943b-4a24-8746-477ed9912ad4",{"type":46,"tag":425,"props":4168,"children":4169},{"style":432},[4170],{"type":52,"value":440},{"type":46,"tag":425,"props":4172,"children":4173},{"style":432},[4174],{"type":52,"value":1399},{"type":46,"tag":425,"props":4176,"children":4178},{"class":427,"line":4177},106,[4179,4183,4187,4191,4195,4199,4204],{"type":46,"tag":425,"props":4180,"children":4181},{"style":432},[4182],{"type":52,"value":1261},{"type":46,"tag":425,"props":4184,"children":4185},{"style":733},[4186],{"type":52,"value":404},{"type":46,"tag":425,"props":4188,"children":4189},{"style":432},[4190],{"type":52,"value":440},{"type":46,"tag":425,"props":4192,"children":4193},{"style":432},[4194],{"type":52,"value":369},{"type":46,"tag":425,"props":4196,"children":4197},{"style":432},[4198],{"type":52,"value":458},{"type":46,"tag":425,"props":4200,"children":4201},{"style":461},[4202],{"type":52,"value":4203},"Download file",{"type":46,"tag":425,"props":4205,"children":4206},{"style":432},[4207],{"type":52,"value":1342},{"type":46,"tag":425,"props":4209,"children":4211},{"class":427,"line":4210},107,[4212],{"type":46,"tag":425,"props":4213,"children":4214},{"style":432},[4215],{"type":52,"value":1553},{"type":46,"tag":425,"props":4217,"children":4219},{"class":427,"line":4218},108,[4220],{"type":46,"tag":425,"props":4221,"children":4222},{"style":432},[4223],{"type":52,"value":1252},{"type":46,"tag":425,"props":4225,"children":4227},{"class":427,"line":4226},109,[4228,4232,4236,4240,4244],{"type":46,"tag":425,"props":4229,"children":4230},{"style":432},[4231],{"type":52,"value":1261},{"type":46,"tag":425,"props":4233,"children":4234},{"style":733},[4235],{"type":52,"value":1266},{"type":46,"tag":425,"props":4237,"children":4238},{"style":432},[4239],{"type":52,"value":440},{"type":46,"tag":425,"props":4241,"children":4242},{"style":432},[4243],{"type":52,"value":369},{"type":46,"tag":425,"props":4245,"children":4246},{"style":432},[4247],{"type":52,"value":1279},{"type":46,"tag":425,"props":4249,"children":4251},{"class":427,"line":4250},110,[4252,4256,4261,4265,4269,4273,4277,4281],{"type":46,"tag":425,"props":4253,"children":4254},{"style":432},[4255],{"type":52,"value":1288},{"type":46,"tag":425,"props":4257,"children":4258},{"style":756},[4259],{"type":52,"value":4260},"resource",{"type":46,"tag":425,"props":4262,"children":4263},{"style":432},[4264],{"type":52,"value":440},{"type":46,"tag":425,"props":4266,"children":4267},{"style":432},[4268],{"type":52,"value":369},{"type":46,"tag":425,"props":4270,"children":4271},{"style":432},[4272],{"type":52,"value":458},{"type":46,"tag":425,"props":4274,"children":4275},{"style":461},[4276],{"type":52,"value":4013},{"type":46,"tag":425,"props":4278,"children":4279},{"style":432},[4280],{"type":52,"value":440},{"type":46,"tag":425,"props":4282,"children":4283},{"style":432},[4284],{"type":52,"value":1399},{"type":46,"tag":425,"props":4286,"children":4288},{"class":427,"line":4287},111,[4289,4293,4298,4302,4306,4310,4314,4318],{"type":46,"tag":425,"props":4290,"children":4291},{"style":432},[4292],{"type":52,"value":1288},{"type":46,"tag":425,"props":4294,"children":4295},{"style":756},[4296],{"type":52,"value":4297},"operation",{"type":46,"tag":425,"props":4299,"children":4300},{"style":432},[4301],{"type":52,"value":440},{"type":46,"tag":425,"props":4303,"children":4304},{"style":432},[4305],{"type":52,"value":369},{"type":46,"tag":425,"props":4307,"children":4308},{"style":432},[4309],{"type":52,"value":458},{"type":46,"tag":425,"props":4311,"children":4312},{"style":461},[4313],{"type":52,"value":1052},{"type":46,"tag":425,"props":4315,"children":4316},{"style":432},[4317],{"type":52,"value":440},{"type":46,"tag":425,"props":4319,"children":4320},{"style":432},[4321],{"type":52,"value":1399},{"type":46,"tag":425,"props":4323,"children":4325},{"class":427,"line":4324},112,[4326,4330,4335,4339,4343,4347,4351,4356,4360,4364,4368,4372,4376,4380,4384,4388,4392,4396,4400,4404,4409,4413,4418,4422],{"type":46,"tag":425,"props":4327,"children":4328},{"style":432},[4329],{"type":52,"value":1288},{"type":46,"tag":425,"props":4331,"children":4332},{"style":756},[4333],{"type":52,"value":4334},"assistantData",{"type":46,"tag":425,"props":4336,"children":4337},{"style":432},[4338],{"type":52,"value":440},{"type":46,"tag":425,"props":4340,"children":4341},{"style":432},[4342],{"type":52,"value":369},{"type":46,"tag":425,"props":4344,"children":4345},{"style":432},[4346],{"type":52,"value":458},{"type":46,"tag":425,"props":4348,"children":4349},{"style":461},[4350],{"type":52,"value":435},{"type":46,"tag":425,"props":4352,"children":4353},{"style":692},[4354],{"type":52,"value":4355},"\\\"",{"type":46,"tag":425,"props":4357,"children":4358},{"style":461},[4359],{"type":52,"value":404},{"type":46,"tag":425,"props":4361,"children":4362},{"style":692},[4363],{"type":52,"value":4355},{"type":46,"tag":425,"props":4365,"children":4366},{"style":461},[4367],{"type":52,"value":369},{"type":46,"tag":425,"props":4369,"children":4370},{"style":692},[4371],{"type":52,"value":4355},{"type":46,"tag":425,"props":4373,"children":4374},{"style":461},[4375],{"type":52,"value":1141},{"type":46,"tag":425,"props":4377,"children":4378},{"style":692},[4379],{"type":52,"value":4355},{"type":46,"tag":425,"props":4381,"children":4382},{"style":461},[4383],{"type":52,"value":473},{"type":46,"tag":425,"props":4385,"children":4386},{"style":692},[4387],{"type":52,"value":4355},{"type":46,"tag":425,"props":4389,"children":4390},{"style":461},[4391],{"type":52,"value":412},{"type":46,"tag":425,"props":4393,"children":4394},{"style":692},[4395],{"type":52,"value":4355},{"type":46,"tag":425,"props":4397,"children":4398},{"style":461},[4399],{"type":52,"value":369},{"type":46,"tag":425,"props":4401,"children":4402},{"style":692},[4403],{"type":52,"value":4355},{"type":46,"tag":425,"props":4405,"children":4406},{"style":461},[4407],{"type":52,"value":4408},"https:\u002F\u002F[ASSISTANT_HOST]",{"type":46,"tag":425,"props":4410,"children":4411},{"style":692},[4412],{"type":52,"value":4355},{"type":46,"tag":425,"props":4414,"children":4415},{"style":461},[4416],{"type":52,"value":4417},"}",{"type":46,"tag":425,"props":4419,"children":4420},{"style":432},[4421],{"type":52,"value":440},{"type":46,"tag":425,"props":4423,"children":4424},{"style":432},[4425],{"type":52,"value":1399},{"type":46,"tag":425,"props":4427,"children":4429},{"class":427,"line":4428},113,[4430,4434,4438,4442,4446,4450,4455,4459],{"type":46,"tag":425,"props":4431,"children":4432},{"style":432},[4433],{"type":52,"value":1288},{"type":46,"tag":425,"props":4435,"children":4436},{"style":756},[4437],{"type":52,"value":614},{"type":46,"tag":425,"props":4439,"children":4440},{"style":432},[4441],{"type":52,"value":440},{"type":46,"tag":425,"props":4443,"children":4444},{"style":432},[4445],{"type":52,"value":369},{"type":46,"tag":425,"props":4447,"children":4448},{"style":432},[4449],{"type":52,"value":458},{"type":46,"tag":425,"props":4451,"children":4452},{"style":461},[4453],{"type":52,"value":4454},"={{ $('Split to list').item.json.urls }}",{"type":46,"tag":425,"props":4456,"children":4457},{"style":432},[4458],{"type":52,"value":440},{"type":46,"tag":425,"props":4460,"children":4461},{"style":432},[4462],{"type":52,"value":1399},{"type":46,"tag":425,"props":4464,"children":4466},{"class":427,"line":4465},114,[4467,4471,4475,4479,4483,4487,4491,4495,4499,4503,4507,4511,4515],{"type":46,"tag":425,"props":4468,"children":4469},{"style":432},[4470],{"type":52,"value":1288},{"type":46,"tag":425,"props":4472,"children":4473},{"style":756},[4474],{"type":52,"value":533},{"type":46,"tag":425,"props":4476,"children":4477},{"style":432},[4478],{"type":52,"value":440},{"type":46,"tag":425,"props":4480,"children":4481},{"style":432},[4482],{"type":52,"value":369},{"type":46,"tag":425,"props":4484,"children":4485},{"style":432},[4486],{"type":52,"value":726},{"type":46,"tag":425,"props":4488,"children":4489},{"style":432},[4490],{"type":52,"value":440},{"type":46,"tag":425,"props":4492,"children":4493},{"style":1317},[4494],{"type":52,"value":525},{"type":46,"tag":425,"props":4496,"children":4497},{"style":432},[4498],{"type":52,"value":440},{"type":46,"tag":425,"props":4500,"children":4501},{"style":432},[4502],{"type":52,"value":369},{"type":46,"tag":425,"props":4504,"children":4505},{"style":432},[4506],{"type":52,"value":458},{"type":46,"tag":425,"props":4508,"children":4509},{"style":461},[4510],{"type":52,"value":574},{"type":46,"tag":425,"props":4512,"children":4513},{"style":432},[4514],{"type":52,"value":440},{"type":46,"tag":425,"props":4516,"children":4517},{"style":432},[4518],{"type":52,"value":507},{"type":46,"tag":425,"props":4520,"children":4522},{"class":427,"line":4521},115,[4523],{"type":46,"tag":425,"props":4524,"children":4525},{"style":432},[4526],{"type":52,"value":1360},{"type":46,"tag":425,"props":4528,"children":4530},{"class":427,"line":4529},116,[4531,4535,4539,4543,4547,4551,4555,4559],{"type":46,"tag":425,"props":4532,"children":4533},{"style":432},[4534],{"type":52,"value":1261},{"type":46,"tag":425,"props":4536,"children":4537},{"style":733},[4538],{"type":52,"value":1373},{"type":46,"tag":425,"props":4540,"children":4541},{"style":432},[4542],{"type":52,"value":440},{"type":46,"tag":425,"props":4544,"children":4545},{"style":432},[4546],{"type":52,"value":369},{"type":46,"tag":425,"props":4548,"children":4549},{"style":432},[4550],{"type":52,"value":458},{"type":46,"tag":425,"props":4552,"children":4553},{"style":461},[4554],{"type":52,"value":286},{"type":46,"tag":425,"props":4556,"children":4557},{"style":432},[4558],{"type":52,"value":440},{"type":46,"tag":425,"props":4560,"children":4561},{"style":432},[4562],{"type":52,"value":1399},{"type":46,"tag":425,"props":4564,"children":4566},{"class":427,"line":4565},117,[4567,4571,4575,4579,4583,4587],{"type":46,"tag":425,"props":4568,"children":4569},{"style":432},[4570],{"type":52,"value":1261},{"type":46,"tag":425,"props":4572,"children":4573},{"style":733},[4574],{"type":52,"value":1412},{"type":46,"tag":425,"props":4576,"children":4577},{"style":432},[4578],{"type":52,"value":440},{"type":46,"tag":425,"props":4580,"children":4581},{"style":432},[4582],{"type":52,"value":369},{"type":46,"tag":425,"props":4584,"children":4585},{"style":756},[4586],{"type":52,"value":1794},{"type":46,"tag":425,"props":4588,"children":4589},{"style":432},[4590],{"type":52,"value":1399},{"type":46,"tag":425,"props":4592,"children":4594},{"class":427,"line":4593},118,[4595,4599,4603,4607,4611,4615,4620,4624,4628],{"type":46,"tag":425,"props":4596,"children":4597},{"style":432},[4598],{"type":52,"value":1261},{"type":46,"tag":425,"props":4600,"children":4601},{"style":733},[4602],{"type":52,"value":1442},{"type":46,"tag":425,"props":4604,"children":4605},{"style":432},[4606],{"type":52,"value":440},{"type":46,"tag":425,"props":4608,"children":4609},{"style":432},[4610],{"type":52,"value":369},{"type":46,"tag":425,"props":4612,"children":4613},{"style":432},[4614],{"type":52,"value":1455},{"type":46,"tag":425,"props":4616,"children":4617},{"style":756},[4618],{"type":52,"value":4619},"2416",{"type":46,"tag":425,"props":4621,"children":4622},{"style":432},[4623],{"type":52,"value":473},{"type":46,"tag":425,"props":4625,"children":4626},{"style":756},[4627],{"type":52,"value":3021},{"type":46,"tag":425,"props":4629,"children":4630},{"style":432},[4631],{"type":52,"value":1474},{"type":46,"tag":425,"props":4633,"children":4635},{"class":427,"line":4634},119,[4636,4640,4644,4648,4652,4656,4661,4665],{"type":46,"tag":425,"props":4637,"children":4638},{"style":432},[4639],{"type":52,"value":1261},{"type":46,"tag":425,"props":4641,"children":4642},{"style":733},[4643],{"type":52,"value":1487},{"type":46,"tag":425,"props":4645,"children":4646},{"style":432},[4647],{"type":52,"value":440},{"type":46,"tag":425,"props":4649,"children":4650},{"style":432},[4651],{"type":52,"value":369},{"type":46,"tag":425,"props":4653,"children":4654},{"style":432},[4655],{"type":52,"value":458},{"type":46,"tag":425,"props":4657,"children":4658},{"style":461},[4659],{"type":52,"value":4660},"196122df-d2b2-43e4-9f8d-710aedb595a6",{"type":46,"tag":425,"props":4662,"children":4663},{"style":432},[4664],{"type":52,"value":440},{"type":46,"tag":425,"props":4666,"children":4667},{"style":432},[4668],{"type":52,"value":1399},{"type":46,"tag":425,"props":4670,"children":4672},{"class":427,"line":4671},120,[4673,4677,4681,4685,4689,4693,4698],{"type":46,"tag":425,"props":4674,"children":4675},{"style":432},[4676],{"type":52,"value":1261},{"type":46,"tag":425,"props":4678,"children":4679},{"style":733},[4680],{"type":52,"value":404},{"type":46,"tag":425,"props":4682,"children":4683},{"style":432},[4684],{"type":52,"value":440},{"type":46,"tag":425,"props":4686,"children":4687},{"style":432},[4688],{"type":52,"value":369},{"type":46,"tag":425,"props":4690,"children":4691},{"style":432},[4692],{"type":52,"value":458},{"type":46,"tag":425,"props":4694,"children":4695},{"style":461},[4696],{"type":52,"value":4697},"Upload file to Assistant",{"type":46,"tag":425,"props":4699,"children":4700},{"style":432},[4701],{"type":52,"value":1342},{"type":46,"tag":425,"props":4703,"children":4705},{"class":427,"line":4704},121,[4706],{"type":46,"tag":425,"props":4707,"children":4708},{"style":432},[4709],{"type":52,"value":1553},{"type":46,"tag":425,"props":4711,"children":4713},{"class":427,"line":4712},122,[4714],{"type":46,"tag":425,"props":4715,"children":4716},{"style":432},[4717],{"type":52,"value":1252},{"type":46,"tag":425,"props":4719,"children":4721},{"class":427,"line":4720},123,[4722,4726,4730,4734,4738],{"type":46,"tag":425,"props":4723,"children":4724},{"style":432},[4725],{"type":52,"value":1261},{"type":46,"tag":425,"props":4727,"children":4728},{"style":733},[4729],{"type":52,"value":1266},{"type":46,"tag":425,"props":4731,"children":4732},{"style":432},[4733],{"type":52,"value":440},{"type":46,"tag":425,"props":4735,"children":4736},{"style":432},[4737],{"type":52,"value":369},{"type":46,"tag":425,"props":4739,"children":4740},{"style":432},[4741],{"type":52,"value":1279},{"type":46,"tag":425,"props":4743,"children":4745},{"class":427,"line":4744},124,[4746,4750,4754,4758,4762,4766,4770,4774,4778,4782,4786,4790,4794,4798,4802,4806,4810,4814,4818,4822,4826,4830,4834,4838],{"type":46,"tag":425,"props":4747,"children":4748},{"style":432},[4749],{"type":52,"value":1288},{"type":46,"tag":425,"props":4751,"children":4752},{"style":756},[4753],{"type":52,"value":4334},{"type":46,"tag":425,"props":4755,"children":4756},{"style":432},[4757],{"type":52,"value":440},{"type":46,"tag":425,"props":4759,"children":4760},{"style":432},[4761],{"type":52,"value":369},{"type":46,"tag":425,"props":4763,"children":4764},{"style":432},[4765],{"type":52,"value":458},{"type":46,"tag":425,"props":4767,"children":4768},{"style":461},[4769],{"type":52,"value":435},{"type":46,"tag":425,"props":4771,"children":4772},{"style":692},[4773],{"type":52,"value":4355},{"type":46,"tag":425,"props":4775,"children":4776},{"style":461},[4777],{"type":52,"value":404},{"type":46,"tag":425,"props":4779,"children":4780},{"style":692},[4781],{"type":52,"value":4355},{"type":46,"tag":425,"props":4783,"children":4784},{"style":461},[4785],{"type":52,"value":369},{"type":46,"tag":425,"props":4787,"children":4788},{"style":692},[4789],{"type":52,"value":4355},{"type":46,"tag":425,"props":4791,"children":4792},{"style":461},[4793],{"type":52,"value":1141},{"type":46,"tag":425,"props":4795,"children":4796},{"style":692},[4797],{"type":52,"value":4355},{"type":46,"tag":425,"props":4799,"children":4800},{"style":461},[4801],{"type":52,"value":473},{"type":46,"tag":425,"props":4803,"children":4804},{"style":692},[4805],{"type":52,"value":4355},{"type":46,"tag":425,"props":4807,"children":4808},{"style":461},[4809],{"type":52,"value":412},{"type":46,"tag":425,"props":4811,"children":4812},{"style":692},[4813],{"type":52,"value":4355},{"type":46,"tag":425,"props":4815,"children":4816},{"style":461},[4817],{"type":52,"value":369},{"type":46,"tag":425,"props":4819,"children":4820},{"style":692},[4821],{"type":52,"value":4355},{"type":46,"tag":425,"props":4823,"children":4824},{"style":461},[4825],{"type":52,"value":4408},{"type":46,"tag":425,"props":4827,"children":4828},{"style":692},[4829],{"type":52,"value":4355},{"type":46,"tag":425,"props":4831,"children":4832},{"style":461},[4833],{"type":52,"value":4417},{"type":46,"tag":425,"props":4835,"children":4836},{"style":432},[4837],{"type":52,"value":440},{"type":46,"tag":425,"props":4839,"children":4840},{"style":432},[4841],{"type":52,"value":1399},{"type":46,"tag":425,"props":4843,"children":4845},{"class":427,"line":4844},125,[4846,4850,4854,4858,4862,4866,4870,4874,4878,4882,4886,4890,4894],{"type":46,"tag":425,"props":4847,"children":4848},{"style":432},[4849],{"type":52,"value":1288},{"type":46,"tag":425,"props":4851,"children":4852},{"style":756},[4853],{"type":52,"value":533},{"type":46,"tag":425,"props":4855,"children":4856},{"style":432},[4857],{"type":52,"value":440},{"type":46,"tag":425,"props":4859,"children":4860},{"style":432},[4861],{"type":52,"value":369},{"type":46,"tag":425,"props":4863,"children":4864},{"style":432},[4865],{"type":52,"value":726},{"type":46,"tag":425,"props":4867,"children":4868},{"style":432},[4869],{"type":52,"value":440},{"type":46,"tag":425,"props":4871,"children":4872},{"style":1317},[4873],{"type":52,"value":525},{"type":46,"tag":425,"props":4875,"children":4876},{"style":432},[4877],{"type":52,"value":440},{"type":46,"tag":425,"props":4879,"children":4880},{"style":432},[4881],{"type":52,"value":369},{"type":46,"tag":425,"props":4883,"children":4884},{"style":432},[4885],{"type":52,"value":458},{"type":46,"tag":425,"props":4887,"children":4888},{"style":461},[4889],{"type":52,"value":574},{"type":46,"tag":425,"props":4891,"children":4892},{"style":432},[4893],{"type":52,"value":440},{"type":46,"tag":425,"props":4895,"children":4896},{"style":432},[4897],{"type":52,"value":507},{"type":46,"tag":425,"props":4899,"children":4901},{"class":427,"line":4900},126,[4902],{"type":46,"tag":425,"props":4903,"children":4904},{"style":432},[4905],{"type":52,"value":1360},{"type":46,"tag":425,"props":4907,"children":4909},{"class":427,"line":4908},127,[4910,4914,4918,4922,4926,4930,4934,4938],{"type":46,"tag":425,"props":4911,"children":4912},{"style":432},[4913],{"type":52,"value":1261},{"type":46,"tag":425,"props":4915,"children":4916},{"style":733},[4917],{"type":52,"value":1373},{"type":46,"tag":425,"props":4919,"children":4920},{"style":432},[4921],{"type":52,"value":440},{"type":46,"tag":425,"props":4923,"children":4924},{"style":432},[4925],{"type":52,"value":369},{"type":46,"tag":425,"props":4927,"children":4928},{"style":432},[4929],{"type":52,"value":458},{"type":46,"tag":425,"props":4931,"children":4932},{"style":461},[4933],{"type":52,"value":297},{"type":46,"tag":425,"props":4935,"children":4936},{"style":432},[4937],{"type":52,"value":440},{"type":46,"tag":425,"props":4939,"children":4940},{"style":432},[4941],{"type":52,"value":1399},{"type":46,"tag":425,"props":4943,"children":4945},{"class":427,"line":4944},128,[4946,4950,4954,4958,4962,4966],{"type":46,"tag":425,"props":4947,"children":4948},{"style":432},[4949],{"type":52,"value":1261},{"type":46,"tag":425,"props":4951,"children":4952},{"style":733},[4953],{"type":52,"value":1412},{"type":46,"tag":425,"props":4955,"children":4956},{"style":432},[4957],{"type":52,"value":440},{"type":46,"tag":425,"props":4959,"children":4960},{"style":432},[4961],{"type":52,"value":369},{"type":46,"tag":425,"props":4963,"children":4964},{"style":756},[4965],{"type":52,"value":1794},{"type":46,"tag":425,"props":4967,"children":4968},{"style":432},[4969],{"type":52,"value":1399},{"type":46,"tag":425,"props":4971,"children":4973},{"class":427,"line":4972},129,[4974,4978,4982,4986,4990,4994,4999,5003,5008],{"type":46,"tag":425,"props":4975,"children":4976},{"style":432},[4977],{"type":52,"value":1261},{"type":46,"tag":425,"props":4979,"children":4980},{"style":733},[4981],{"type":52,"value":1442},{"type":46,"tag":425,"props":4983,"children":4984},{"style":432},[4985],{"type":52,"value":440},{"type":46,"tag":425,"props":4987,"children":4988},{"style":432},[4989],{"type":52,"value":369},{"type":46,"tag":425,"props":4991,"children":4992},{"style":432},[4993],{"type":52,"value":1455},{"type":46,"tag":425,"props":4995,"children":4996},{"style":756},[4997],{"type":52,"value":4998},"2368",{"type":46,"tag":425,"props":5000,"children":5001},{"style":432},[5002],{"type":52,"value":473},{"type":46,"tag":425,"props":5004,"children":5005},{"style":756},[5006],{"type":52,"value":5007}," 992",{"type":46,"tag":425,"props":5009,"children":5010},{"style":432},[5011],{"type":52,"value":1474},{"type":46,"tag":425,"props":5013,"children":5015},{"class":427,"line":5014},130,[5016,5020,5024,5028,5032,5036,5041,5045],{"type":46,"tag":425,"props":5017,"children":5018},{"style":432},[5019],{"type":52,"value":1261},{"type":46,"tag":425,"props":5021,"children":5022},{"style":733},[5023],{"type":52,"value":1487},{"type":46,"tag":425,"props":5025,"children":5026},{"style":432},[5027],{"type":52,"value":440},{"type":46,"tag":425,"props":5029,"children":5030},{"style":432},[5031],{"type":52,"value":369},{"type":46,"tag":425,"props":5033,"children":5034},{"style":432},[5035],{"type":52,"value":458},{"type":46,"tag":425,"props":5037,"children":5038},{"style":461},[5039],{"type":52,"value":5040},"c3ba53e9-511d-47e7-b7fb-38bb093d279f",{"type":46,"tag":425,"props":5042,"children":5043},{"style":432},[5044],{"type":52,"value":440},{"type":46,"tag":425,"props":5046,"children":5047},{"style":432},[5048],{"type":52,"value":1399},{"type":46,"tag":425,"props":5050,"children":5052},{"class":427,"line":5051},131,[5053,5057,5061,5065,5069,5073,5078],{"type":46,"tag":425,"props":5054,"children":5055},{"style":432},[5056],{"type":52,"value":1261},{"type":46,"tag":425,"props":5058,"children":5059},{"style":733},[5060],{"type":52,"value":404},{"type":46,"tag":425,"props":5062,"children":5063},{"style":432},[5064],{"type":52,"value":440},{"type":46,"tag":425,"props":5066,"children":5067},{"style":432},[5068],{"type":52,"value":369},{"type":46,"tag":425,"props":5070,"children":5071},{"style":432},[5072],{"type":52,"value":458},{"type":46,"tag":425,"props":5074,"children":5075},{"style":461},[5076],{"type":52,"value":5077},"Get context from Assistant",{"type":46,"tag":425,"props":5079,"children":5080},{"style":432},[5081],{"type":52,"value":1342},{"type":46,"tag":425,"props":5083,"children":5085},{"class":427,"line":5084},132,[5086],{"type":46,"tag":425,"props":5087,"children":5088},{"style":432},[5089],{"type":52,"value":5090},"    }\n",{"type":46,"tag":425,"props":5092,"children":5094},{"class":427,"line":5093},133,[5095],{"type":46,"tag":425,"props":5096,"children":5097},{"style":432},[5098],{"type":52,"value":5099},"  ],\n",{"type":46,"tag":425,"props":5101,"children":5103},{"class":427,"line":5102},134,[5104,5108,5113,5117,5121],{"type":46,"tag":425,"props":5105,"children":5106},{"style":432},[5107],{"type":52,"value":708},{"type":46,"tag":425,"props":5109,"children":5110},{"style":443},[5111],{"type":52,"value":5112},"connections",{"type":46,"tag":425,"props":5114,"children":5115},{"style":432},[5116],{"type":52,"value":440},{"type":46,"tag":425,"props":5118,"children":5119},{"style":432},[5120],{"type":52,"value":369},{"type":46,"tag":425,"props":5122,"children":5123},{"style":432},[5124],{"type":52,"value":1279},{"type":46,"tag":425,"props":5126,"children":5128},{"class":427,"line":5127},135,[5129,5134,5138,5142,5146],{"type":46,"tag":425,"props":5130,"children":5131},{"style":432},[5132],{"type":52,"value":5133},"    \"",{"type":46,"tag":425,"props":5135,"children":5136},{"style":733},[5137],{"type":52,"value":1906},{"type":46,"tag":425,"props":5139,"children":5140},{"style":432},[5141],{"type":52,"value":440},{"type":46,"tag":425,"props":5143,"children":5144},{"style":432},[5145],{"type":52,"value":369},{"type":46,"tag":425,"props":5147,"children":5148},{"style":432},[5149],{"type":52,"value":1279},{"type":46,"tag":425,"props":5151,"children":5153},{"class":427,"line":5152},136,[5154,5158,5163,5167,5171,5176,5180,5185,5189,5193,5197,5201,5205,5209,5213,5217,5221,5225,5229,5233,5237,5241,5245,5250,5254,5258,5263],{"type":46,"tag":425,"props":5155,"children":5156},{"style":432},[5157],{"type":52,"value":1261},{"type":46,"tag":425,"props":5159,"children":5160},{"style":756},[5161],{"type":52,"value":5162},"ai_languageModel",{"type":46,"tag":425,"props":5164,"children":5165},{"style":432},[5166],{"type":52,"value":440},{"type":46,"tag":425,"props":5168,"children":5169},{"style":432},[5170],{"type":52,"value":369},{"type":46,"tag":425,"props":5172,"children":5173},{"style":432},[5174],{"type":52,"value":5175}," [[{",{"type":46,"tag":425,"props":5177,"children":5178},{"style":432},[5179],{"type":52,"value":440},{"type":46,"tag":425,"props":5181,"children":5182},{"style":1317},[5183],{"type":52,"value":5184},"node",{"type":46,"tag":425,"props":5186,"children":5187},{"style":432},[5188],{"type":52,"value":440},{"type":46,"tag":425,"props":5190,"children":5191},{"style":432},[5192],{"type":52,"value":369},{"type":46,"tag":425,"props":5194,"children":5195},{"style":432},[5196],{"type":52,"value":458},{"type":46,"tag":425,"props":5198,"children":5199},{"style":461},[5200],{"type":52,"value":1541},{"type":46,"tag":425,"props":5202,"children":5203},{"style":432},[5204],{"type":52,"value":440},{"type":46,"tag":425,"props":5206,"children":5207},{"style":432},[5208],{"type":52,"value":473},{"type":46,"tag":425,"props":5210,"children":5211},{"style":432},[5212],{"type":52,"value":458},{"type":46,"tag":425,"props":5214,"children":5215},{"style":1317},[5216],{"type":52,"value":1373},{"type":46,"tag":425,"props":5218,"children":5219},{"style":432},[5220],{"type":52,"value":440},{"type":46,"tag":425,"props":5222,"children":5223},{"style":432},[5224],{"type":52,"value":369},{"type":46,"tag":425,"props":5226,"children":5227},{"style":432},[5228],{"type":52,"value":458},{"type":46,"tag":425,"props":5230,"children":5231},{"style":461},[5232],{"type":52,"value":5162},{"type":46,"tag":425,"props":5234,"children":5235},{"style":432},[5236],{"type":52,"value":440},{"type":46,"tag":425,"props":5238,"children":5239},{"style":432},[5240],{"type":52,"value":473},{"type":46,"tag":425,"props":5242,"children":5243},{"style":432},[5244],{"type":52,"value":458},{"type":46,"tag":425,"props":5246,"children":5247},{"style":1317},[5248],{"type":52,"value":5249},"index",{"type":46,"tag":425,"props":5251,"children":5252},{"style":432},[5253],{"type":52,"value":440},{"type":46,"tag":425,"props":5255,"children":5256},{"style":432},[5257],{"type":52,"value":369},{"type":46,"tag":425,"props":5259,"children":5260},{"style":756},[5261],{"type":52,"value":5262}," 0",{"type":46,"tag":425,"props":5264,"children":5265},{"style":432},[5266],{"type":52,"value":5267},"}]]\n",{"type":46,"tag":425,"props":5269,"children":5271},{"class":427,"line":5270},137,[5272],{"type":46,"tag":425,"props":5273,"children":5274},{"style":432},[5275],{"type":52,"value":1553},{"type":46,"tag":425,"props":5277,"children":5279},{"class":427,"line":5278},138,[5280,5284,5288,5292,5296],{"type":46,"tag":425,"props":5281,"children":5282},{"style":432},[5283],{"type":52,"value":5133},{"type":46,"tag":425,"props":5285,"children":5286},{"style":733},[5287],{"type":52,"value":2835},{"type":46,"tag":425,"props":5289,"children":5290},{"style":432},[5291],{"type":52,"value":440},{"type":46,"tag":425,"props":5293,"children":5294},{"style":432},[5295],{"type":52,"value":369},{"type":46,"tag":425,"props":5297,"children":5298},{"style":432},[5299],{"type":52,"value":1279},{"type":46,"tag":425,"props":5301,"children":5303},{"class":427,"line":5302},139,[5304,5308,5312,5316,5320,5324,5328,5332,5336,5340,5344,5348,5352,5356,5360,5364,5368,5372,5376,5380,5384,5388,5392,5396,5400,5404,5408],{"type":46,"tag":425,"props":5305,"children":5306},{"style":432},[5307],{"type":52,"value":1261},{"type":46,"tag":425,"props":5309,"children":5310},{"style":756},[5311],{"type":52,"value":606},{"type":46,"tag":425,"props":5313,"children":5314},{"style":432},[5315],{"type":52,"value":440},{"type":46,"tag":425,"props":5317,"children":5318},{"style":432},[5319],{"type":52,"value":369},{"type":46,"tag":425,"props":5321,"children":5322},{"style":432},[5323],{"type":52,"value":5175},{"type":46,"tag":425,"props":5325,"children":5326},{"style":432},[5327],{"type":52,"value":440},{"type":46,"tag":425,"props":5329,"children":5330},{"style":1317},[5331],{"type":52,"value":5184},{"type":46,"tag":425,"props":5333,"children":5334},{"style":432},[5335],{"type":52,"value":440},{"type":46,"tag":425,"props":5337,"children":5338},{"style":432},[5339],{"type":52,"value":369},{"type":46,"tag":425,"props":5341,"children":5342},{"style":432},[5343],{"type":52,"value":458},{"type":46,"tag":425,"props":5345,"children":5346},{"style":461},[5347],{"type":52,"value":1541},{"type":46,"tag":425,"props":5349,"children":5350},{"style":432},[5351],{"type":52,"value":440},{"type":46,"tag":425,"props":5353,"children":5354},{"style":432},[5355],{"type":52,"value":473},{"type":46,"tag":425,"props":5357,"children":5358},{"style":432},[5359],{"type":52,"value":458},{"type":46,"tag":425,"props":5361,"children":5362},{"style":1317},[5363],{"type":52,"value":1373},{"type":46,"tag":425,"props":5365,"children":5366},{"style":432},[5367],{"type":52,"value":440},{"type":46,"tag":425,"props":5369,"children":5370},{"style":432},[5371],{"type":52,"value":369},{"type":46,"tag":425,"props":5373,"children":5374},{"style":432},[5375],{"type":52,"value":458},{"type":46,"tag":425,"props":5377,"children":5378},{"style":461},[5379],{"type":52,"value":606},{"type":46,"tag":425,"props":5381,"children":5382},{"style":432},[5383],{"type":52,"value":440},{"type":46,"tag":425,"props":5385,"children":5386},{"style":432},[5387],{"type":52,"value":473},{"type":46,"tag":425,"props":5389,"children":5390},{"style":432},[5391],{"type":52,"value":458},{"type":46,"tag":425,"props":5393,"children":5394},{"style":1317},[5395],{"type":52,"value":5249},{"type":46,"tag":425,"props":5397,"children":5398},{"style":432},[5399],{"type":52,"value":440},{"type":46,"tag":425,"props":5401,"children":5402},{"style":432},[5403],{"type":52,"value":369},{"type":46,"tag":425,"props":5405,"children":5406},{"style":756},[5407],{"type":52,"value":5262},{"type":46,"tag":425,"props":5409,"children":5410},{"style":432},[5411],{"type":52,"value":5267},{"type":46,"tag":425,"props":5413,"children":5415},{"class":427,"line":5414},140,[5416],{"type":46,"tag":425,"props":5417,"children":5418},{"style":432},[5419],{"type":52,"value":1553},{"type":46,"tag":425,"props":5421,"children":5423},{"class":427,"line":5422},141,[5424,5428,5432,5436,5440],{"type":46,"tag":425,"props":5425,"children":5426},{"style":432},[5427],{"type":52,"value":5133},{"type":46,"tag":425,"props":5429,"children":5430},{"style":733},[5431],{"type":52,"value":3091},{"type":46,"tag":425,"props":5433,"children":5434},{"style":432},[5435],{"type":52,"value":440},{"type":46,"tag":425,"props":5437,"children":5438},{"style":432},[5439],{"type":52,"value":369},{"type":46,"tag":425,"props":5441,"children":5442},{"style":432},[5443],{"type":52,"value":1279},{"type":46,"tag":425,"props":5445,"children":5447},{"class":427,"line":5446},142,[5448,5452,5456,5460,5464,5468,5472,5476,5480,5484,5488,5492,5496,5500,5504,5508,5512,5516,5520,5524,5528,5532,5536,5540,5544,5548,5552],{"type":46,"tag":425,"props":5449,"children":5450},{"style":432},[5451],{"type":52,"value":1261},{"type":46,"tag":425,"props":5453,"children":5454},{"style":756},[5455],{"type":52,"value":606},{"type":46,"tag":425,"props":5457,"children":5458},{"style":432},[5459],{"type":52,"value":440},{"type":46,"tag":425,"props":5461,"children":5462},{"style":432},[5463],{"type":52,"value":369},{"type":46,"tag":425,"props":5465,"children":5466},{"style":432},[5467],{"type":52,"value":5175},{"type":46,"tag":425,"props":5469,"children":5470},{"style":432},[5471],{"type":52,"value":440},{"type":46,"tag":425,"props":5473,"children":5474},{"style":1317},[5475],{"type":52,"value":5184},{"type":46,"tag":425,"props":5477,"children":5478},{"style":432},[5479],{"type":52,"value":440},{"type":46,"tag":425,"props":5481,"children":5482},{"style":432},[5483],{"type":52,"value":369},{"type":46,"tag":425,"props":5485,"children":5486},{"style":432},[5487],{"type":52,"value":458},{"type":46,"tag":425,"props":5489,"children":5490},{"style":461},[5491],{"type":52,"value":3570},{"type":46,"tag":425,"props":5493,"children":5494},{"style":432},[5495],{"type":52,"value":440},{"type":46,"tag":425,"props":5497,"children":5498},{"style":432},[5499],{"type":52,"value":473},{"type":46,"tag":425,"props":5501,"children":5502},{"style":432},[5503],{"type":52,"value":458},{"type":46,"tag":425,"props":5505,"children":5506},{"style":1317},[5507],{"type":52,"value":1373},{"type":46,"tag":425,"props":5509,"children":5510},{"style":432},[5511],{"type":52,"value":440},{"type":46,"tag":425,"props":5513,"children":5514},{"style":432},[5515],{"type":52,"value":369},{"type":46,"tag":425,"props":5517,"children":5518},{"style":432},[5519],{"type":52,"value":458},{"type":46,"tag":425,"props":5521,"children":5522},{"style":461},[5523],{"type":52,"value":606},{"type":46,"tag":425,"props":5525,"children":5526},{"style":432},[5527],{"type":52,"value":440},{"type":46,"tag":425,"props":5529,"children":5530},{"style":432},[5531],{"type":52,"value":473},{"type":46,"tag":425,"props":5533,"children":5534},{"style":432},[5535],{"type":52,"value":458},{"type":46,"tag":425,"props":5537,"children":5538},{"style":1317},[5539],{"type":52,"value":5249},{"type":46,"tag":425,"props":5541,"children":5542},{"style":432},[5543],{"type":52,"value":440},{"type":46,"tag":425,"props":5545,"children":5546},{"style":432},[5547],{"type":52,"value":369},{"type":46,"tag":425,"props":5549,"children":5550},{"style":756},[5551],{"type":52,"value":5262},{"type":46,"tag":425,"props":5553,"children":5554},{"style":432},[5555],{"type":52,"value":5267},{"type":46,"tag":425,"props":5557,"children":5559},{"class":427,"line":5558},143,[5560],{"type":46,"tag":425,"props":5561,"children":5562},{"style":432},[5563],{"type":52,"value":1553},{"type":46,"tag":425,"props":5565,"children":5567},{"class":427,"line":5566},144,[5568,5572,5576,5580,5584],{"type":46,"tag":425,"props":5569,"children":5570},{"style":432},[5571],{"type":52,"value":5133},{"type":46,"tag":425,"props":5573,"children":5574},{"style":733},[5575],{"type":52,"value":3570},{"type":46,"tag":425,"props":5577,"children":5578},{"style":432},[5579],{"type":52,"value":440},{"type":46,"tag":425,"props":5581,"children":5582},{"style":432},[5583],{"type":52,"value":369},{"type":46,"tag":425,"props":5585,"children":5586},{"style":432},[5587],{"type":52,"value":1279},{"type":46,"tag":425,"props":5589,"children":5591},{"class":427,"line":5590},145,[5592,5596,5600,5604,5608,5612,5616,5620,5624,5628,5632,5636,5640,5644,5648,5652,5656,5660,5664,5668,5672,5676,5680,5684,5688,5692,5696],{"type":46,"tag":425,"props":5593,"children":5594},{"style":432},[5595],{"type":52,"value":1261},{"type":46,"tag":425,"props":5597,"children":5598},{"style":756},[5599],{"type":52,"value":606},{"type":46,"tag":425,"props":5601,"children":5602},{"style":432},[5603],{"type":52,"value":440},{"type":46,"tag":425,"props":5605,"children":5606},{"style":432},[5607],{"type":52,"value":369},{"type":46,"tag":425,"props":5609,"children":5610},{"style":432},[5611],{"type":52,"value":5175},{"type":46,"tag":425,"props":5613,"children":5614},{"style":432},[5615],{"type":52,"value":440},{"type":46,"tag":425,"props":5617,"children":5618},{"style":1317},[5619],{"type":52,"value":5184},{"type":46,"tag":425,"props":5621,"children":5622},{"style":432},[5623],{"type":52,"value":440},{"type":46,"tag":425,"props":5625,"children":5626},{"style":432},[5627],{"type":52,"value":369},{"type":46,"tag":425,"props":5629,"children":5630},{"style":432},[5631],{"type":52,"value":458},{"type":46,"tag":425,"props":5633,"children":5634},{"style":461},[5635],{"type":52,"value":3839},{"type":46,"tag":425,"props":5637,"children":5638},{"style":432},[5639],{"type":52,"value":440},{"type":46,"tag":425,"props":5641,"children":5642},{"style":432},[5643],{"type":52,"value":473},{"type":46,"tag":425,"props":5645,"children":5646},{"style":432},[5647],{"type":52,"value":458},{"type":46,"tag":425,"props":5649,"children":5650},{"style":1317},[5651],{"type":52,"value":1373},{"type":46,"tag":425,"props":5653,"children":5654},{"style":432},[5655],{"type":52,"value":440},{"type":46,"tag":425,"props":5657,"children":5658},{"style":432},[5659],{"type":52,"value":369},{"type":46,"tag":425,"props":5661,"children":5662},{"style":432},[5663],{"type":52,"value":458},{"type":46,"tag":425,"props":5665,"children":5666},{"style":461},[5667],{"type":52,"value":606},{"type":46,"tag":425,"props":5669,"children":5670},{"style":432},[5671],{"type":52,"value":440},{"type":46,"tag":425,"props":5673,"children":5674},{"style":432},[5675],{"type":52,"value":473},{"type":46,"tag":425,"props":5677,"children":5678},{"style":432},[5679],{"type":52,"value":458},{"type":46,"tag":425,"props":5681,"children":5682},{"style":1317},[5683],{"type":52,"value":5249},{"type":46,"tag":425,"props":5685,"children":5686},{"style":432},[5687],{"type":52,"value":440},{"type":46,"tag":425,"props":5689,"children":5690},{"style":432},[5691],{"type":52,"value":369},{"type":46,"tag":425,"props":5693,"children":5694},{"style":756},[5695],{"type":52,"value":5262},{"type":46,"tag":425,"props":5697,"children":5698},{"style":432},[5699],{"type":52,"value":5267},{"type":46,"tag":425,"props":5701,"children":5703},{"class":427,"line":5702},146,[5704],{"type":46,"tag":425,"props":5705,"children":5706},{"style":432},[5707],{"type":52,"value":1553},{"type":46,"tag":425,"props":5709,"children":5711},{"class":427,"line":5710},147,[5712,5716,5720,5724,5728],{"type":46,"tag":425,"props":5713,"children":5714},{"style":432},[5715],{"type":52,"value":5133},{"type":46,"tag":425,"props":5717,"children":5718},{"style":733},[5719],{"type":52,"value":3839},{"type":46,"tag":425,"props":5721,"children":5722},{"style":432},[5723],{"type":52,"value":440},{"type":46,"tag":425,"props":5725,"children":5726},{"style":432},[5727],{"type":52,"value":369},{"type":46,"tag":425,"props":5729,"children":5730},{"style":432},[5731],{"type":52,"value":1279},{"type":46,"tag":425,"props":5733,"children":5735},{"class":427,"line":5734},148,[5736,5740,5744,5748,5752,5756,5760,5764,5768,5772,5776,5780,5784,5788,5792,5796,5800,5804,5808,5812,5816,5820,5824,5828,5832,5836,5840],{"type":46,"tag":425,"props":5737,"children":5738},{"style":432},[5739],{"type":52,"value":1261},{"type":46,"tag":425,"props":5741,"children":5742},{"style":756},[5743],{"type":52,"value":606},{"type":46,"tag":425,"props":5745,"children":5746},{"style":432},[5747],{"type":52,"value":440},{"type":46,"tag":425,"props":5749,"children":5750},{"style":432},[5751],{"type":52,"value":369},{"type":46,"tag":425,"props":5753,"children":5754},{"style":432},[5755],{"type":52,"value":5175},{"type":46,"tag":425,"props":5757,"children":5758},{"style":432},[5759],{"type":52,"value":440},{"type":46,"tag":425,"props":5761,"children":5762},{"style":1317},[5763],{"type":52,"value":5184},{"type":46,"tag":425,"props":5765,"children":5766},{"style":432},[5767],{"type":52,"value":440},{"type":46,"tag":425,"props":5769,"children":5770},{"style":432},[5771],{"type":52,"value":369},{"type":46,"tag":425,"props":5773,"children":5774},{"style":432},[5775],{"type":52,"value":458},{"type":46,"tag":425,"props":5777,"children":5778},{"style":461},[5779],{"type":52,"value":4203},{"type":46,"tag":425,"props":5781,"children":5782},{"style":432},[5783],{"type":52,"value":440},{"type":46,"tag":425,"props":5785,"children":5786},{"style":432},[5787],{"type":52,"value":473},{"type":46,"tag":425,"props":5789,"children":5790},{"style":432},[5791],{"type":52,"value":458},{"type":46,"tag":425,"props":5793,"children":5794},{"style":1317},[5795],{"type":52,"value":1373},{"type":46,"tag":425,"props":5797,"children":5798},{"style":432},[5799],{"type":52,"value":440},{"type":46,"tag":425,"props":5801,"children":5802},{"style":432},[5803],{"type":52,"value":369},{"type":46,"tag":425,"props":5805,"children":5806},{"style":432},[5807],{"type":52,"value":458},{"type":46,"tag":425,"props":5809,"children":5810},{"style":461},[5811],{"type":52,"value":606},{"type":46,"tag":425,"props":5813,"children":5814},{"style":432},[5815],{"type":52,"value":440},{"type":46,"tag":425,"props":5817,"children":5818},{"style":432},[5819],{"type":52,"value":473},{"type":46,"tag":425,"props":5821,"children":5822},{"style":432},[5823],{"type":52,"value":458},{"type":46,"tag":425,"props":5825,"children":5826},{"style":1317},[5827],{"type":52,"value":5249},{"type":46,"tag":425,"props":5829,"children":5830},{"style":432},[5831],{"type":52,"value":440},{"type":46,"tag":425,"props":5833,"children":5834},{"style":432},[5835],{"type":52,"value":369},{"type":46,"tag":425,"props":5837,"children":5838},{"style":756},[5839],{"type":52,"value":5262},{"type":46,"tag":425,"props":5841,"children":5842},{"style":432},[5843],{"type":52,"value":5267},{"type":46,"tag":425,"props":5845,"children":5847},{"class":427,"line":5846},149,[5848],{"type":46,"tag":425,"props":5849,"children":5850},{"style":432},[5851],{"type":52,"value":1553},{"type":46,"tag":425,"props":5853,"children":5855},{"class":427,"line":5854},150,[5856,5860,5864,5868,5872],{"type":46,"tag":425,"props":5857,"children":5858},{"style":432},[5859],{"type":52,"value":5133},{"type":46,"tag":425,"props":5861,"children":5862},{"style":733},[5863],{"type":52,"value":4203},{"type":46,"tag":425,"props":5865,"children":5866},{"style":432},[5867],{"type":52,"value":440},{"type":46,"tag":425,"props":5869,"children":5870},{"style":432},[5871],{"type":52,"value":369},{"type":46,"tag":425,"props":5873,"children":5874},{"style":432},[5875],{"type":52,"value":1279},{"type":46,"tag":425,"props":5877,"children":5879},{"class":427,"line":5878},151,[5880,5884,5888,5892,5896,5900,5904,5908,5912,5916,5920,5924,5928,5932,5936,5940,5944,5948,5952,5956,5960,5964,5968,5972,5976,5980,5984],{"type":46,"tag":425,"props":5881,"children":5882},{"style":432},[5883],{"type":52,"value":1261},{"type":46,"tag":425,"props":5885,"children":5886},{"style":756},[5887],{"type":52,"value":606},{"type":46,"tag":425,"props":5889,"children":5890},{"style":432},[5891],{"type":52,"value":440},{"type":46,"tag":425,"props":5893,"children":5894},{"style":432},[5895],{"type":52,"value":369},{"type":46,"tag":425,"props":5897,"children":5898},{"style":432},[5899],{"type":52,"value":5175},{"type":46,"tag":425,"props":5901,"children":5902},{"style":432},[5903],{"type":52,"value":440},{"type":46,"tag":425,"props":5905,"children":5906},{"style":1317},[5907],{"type":52,"value":5184},{"type":46,"tag":425,"props":5909,"children":5910},{"style":432},[5911],{"type":52,"value":440},{"type":46,"tag":425,"props":5913,"children":5914},{"style":432},[5915],{"type":52,"value":369},{"type":46,"tag":425,"props":5917,"children":5918},{"style":432},[5919],{"type":52,"value":458},{"type":46,"tag":425,"props":5921,"children":5922},{"style":461},[5923],{"type":52,"value":4697},{"type":46,"tag":425,"props":5925,"children":5926},{"style":432},[5927],{"type":52,"value":440},{"type":46,"tag":425,"props":5929,"children":5930},{"style":432},[5931],{"type":52,"value":473},{"type":46,"tag":425,"props":5933,"children":5934},{"style":432},[5935],{"type":52,"value":458},{"type":46,"tag":425,"props":5937,"children":5938},{"style":1317},[5939],{"type":52,"value":1373},{"type":46,"tag":425,"props":5941,"children":5942},{"style":432},[5943],{"type":52,"value":440},{"type":46,"tag":425,"props":5945,"children":5946},{"style":432},[5947],{"type":52,"value":369},{"type":46,"tag":425,"props":5949,"children":5950},{"style":432},[5951],{"type":52,"value":458},{"type":46,"tag":425,"props":5953,"children":5954},{"style":461},[5955],{"type":52,"value":606},{"type":46,"tag":425,"props":5957,"children":5958},{"style":432},[5959],{"type":52,"value":440},{"type":46,"tag":425,"props":5961,"children":5962},{"style":432},[5963],{"type":52,"value":473},{"type":46,"tag":425,"props":5965,"children":5966},{"style":432},[5967],{"type":52,"value":458},{"type":46,"tag":425,"props":5969,"children":5970},{"style":1317},[5971],{"type":52,"value":5249},{"type":46,"tag":425,"props":5973,"children":5974},{"style":432},[5975],{"type":52,"value":440},{"type":46,"tag":425,"props":5977,"children":5978},{"style":432},[5979],{"type":52,"value":369},{"type":46,"tag":425,"props":5981,"children":5982},{"style":756},[5983],{"type":52,"value":5262},{"type":46,"tag":425,"props":5985,"children":5986},{"style":432},[5987],{"type":52,"value":5267},{"type":46,"tag":425,"props":5989,"children":5991},{"class":427,"line":5990},152,[5992],{"type":46,"tag":425,"props":5993,"children":5994},{"style":432},[5995],{"type":52,"value":1553},{"type":46,"tag":425,"props":5997,"children":5999},{"class":427,"line":5998},153,[6000,6004,6008,6012,6016],{"type":46,"tag":425,"props":6001,"children":6002},{"style":432},[6003],{"type":52,"value":5133},{"type":46,"tag":425,"props":6005,"children":6006},{"style":733},[6007],{"type":52,"value":5077},{"type":46,"tag":425,"props":6009,"children":6010},{"style":432},[6011],{"type":52,"value":440},{"type":46,"tag":425,"props":6013,"children":6014},{"style":432},[6015],{"type":52,"value":369},{"type":46,"tag":425,"props":6017,"children":6018},{"style":432},[6019],{"type":52,"value":1279},{"type":46,"tag":425,"props":6021,"children":6023},{"class":427,"line":6022},154,[6024,6028,6032,6036,6040,6044,6048,6052,6056,6060,6064,6068,6072,6076,6080,6084,6088,6092,6096,6100,6104,6108,6112,6116,6120,6124,6128],{"type":46,"tag":425,"props":6025,"children":6026},{"style":432},[6027],{"type":52,"value":1261},{"type":46,"tag":425,"props":6029,"children":6030},{"style":756},[6031],{"type":52,"value":598},{"type":46,"tag":425,"props":6033,"children":6034},{"style":432},[6035],{"type":52,"value":440},{"type":46,"tag":425,"props":6037,"children":6038},{"style":432},[6039],{"type":52,"value":369},{"type":46,"tag":425,"props":6041,"children":6042},{"style":432},[6043],{"type":52,"value":5175},{"type":46,"tag":425,"props":6045,"children":6046},{"style":432},[6047],{"type":52,"value":440},{"type":46,"tag":425,"props":6049,"children":6050},{"style":1317},[6051],{"type":52,"value":5184},{"type":46,"tag":425,"props":6053,"children":6054},{"style":432},[6055],{"type":52,"value":440},{"type":46,"tag":425,"props":6057,"children":6058},{"style":432},[6059],{"type":52,"value":369},{"type":46,"tag":425,"props":6061,"children":6062},{"style":432},[6063],{"type":52,"value":458},{"type":46,"tag":425,"props":6065,"children":6066},{"style":461},[6067],{"type":52,"value":1541},{"type":46,"tag":425,"props":6069,"children":6070},{"style":432},[6071],{"type":52,"value":440},{"type":46,"tag":425,"props":6073,"children":6074},{"style":432},[6075],{"type":52,"value":473},{"type":46,"tag":425,"props":6077,"children":6078},{"style":432},[6079],{"type":52,"value":458},{"type":46,"tag":425,"props":6081,"children":6082},{"style":1317},[6083],{"type":52,"value":1373},{"type":46,"tag":425,"props":6085,"children":6086},{"style":432},[6087],{"type":52,"value":440},{"type":46,"tag":425,"props":6089,"children":6090},{"style":432},[6091],{"type":52,"value":369},{"type":46,"tag":425,"props":6093,"children":6094},{"style":432},[6095],{"type":52,"value":458},{"type":46,"tag":425,"props":6097,"children":6098},{"style":461},[6099],{"type":52,"value":598},{"type":46,"tag":425,"props":6101,"children":6102},{"style":432},[6103],{"type":52,"value":440},{"type":46,"tag":425,"props":6105,"children":6106},{"style":432},[6107],{"type":52,"value":473},{"type":46,"tag":425,"props":6109,"children":6110},{"style":432},[6111],{"type":52,"value":458},{"type":46,"tag":425,"props":6113,"children":6114},{"style":1317},[6115],{"type":52,"value":5249},{"type":46,"tag":425,"props":6117,"children":6118},{"style":432},[6119],{"type":52,"value":440},{"type":46,"tag":425,"props":6121,"children":6122},{"style":432},[6123],{"type":52,"value":369},{"type":46,"tag":425,"props":6125,"children":6126},{"style":756},[6127],{"type":52,"value":5262},{"type":46,"tag":425,"props":6129,"children":6130},{"style":432},[6131],{"type":52,"value":5267},{"type":46,"tag":425,"props":6133,"children":6135},{"class":427,"line":6134},155,[6136],{"type":46,"tag":425,"props":6137,"children":6138},{"style":432},[6139],{"type":52,"value":5090},{"type":46,"tag":425,"props":6141,"children":6143},{"class":427,"line":6142},156,[6144],{"type":46,"tag":425,"props":6145,"children":6146},{"style":432},[6147],{"type":52,"value":6148},"  },\n",{"type":46,"tag":425,"props":6150,"children":6152},{"class":427,"line":6151},157,[6153,6157,6162,6166,6170],{"type":46,"tag":425,"props":6154,"children":6155},{"style":432},[6156],{"type":52,"value":708},{"type":46,"tag":425,"props":6158,"children":6159},{"style":443},[6160],{"type":52,"value":6161},"pinData",{"type":46,"tag":425,"props":6163,"children":6164},{"style":432},[6165],{"type":52,"value":440},{"type":46,"tag":425,"props":6167,"children":6168},{"style":432},[6169],{"type":52,"value":369},{"type":46,"tag":425,"props":6171,"children":6172},{"style":432},[6173],{"type":52,"value":2918},{"type":46,"tag":425,"props":6175,"children":6177},{"class":427,"line":6176},158,[6178,6182,6187,6191,6195,6199,6203,6208,6212,6216],{"type":46,"tag":425,"props":6179,"children":6180},{"style":432},[6181],{"type":52,"value":708},{"type":46,"tag":425,"props":6183,"children":6184},{"style":443},[6185],{"type":52,"value":6186},"meta",{"type":46,"tag":425,"props":6188,"children":6189},{"style":432},[6190],{"type":52,"value":440},{"type":46,"tag":425,"props":6192,"children":6193},{"style":432},[6194],{"type":52,"value":369},{"type":46,"tag":425,"props":6196,"children":6197},{"style":432},[6198],{"type":52,"value":726},{"type":46,"tag":425,"props":6200,"children":6201},{"style":432},[6202],{"type":52,"value":440},{"type":46,"tag":425,"props":6204,"children":6205},{"style":733},[6206],{"type":52,"value":6207},"templateCredsSetupCompleted",{"type":46,"tag":425,"props":6209,"children":6210},{"style":432},[6211],{"type":52,"value":440},{"type":46,"tag":425,"props":6213,"children":6214},{"style":432},[6215],{"type":52,"value":369},{"type":46,"tag":425,"props":6217,"children":6218},{"style":432},[6219],{"type":52,"value":6220}," false}\n",{"type":46,"tag":425,"props":6222,"children":6224},{"class":427,"line":6223},159,[6225],{"type":46,"tag":425,"props":6226,"children":6227},{"style":432},[6228],{"type":52,"value":507},{"type":46,"tag":267,"props":6230,"children":6232},{"id":6231},"other-pinecone-assistant-operations",[6233],{"type":52,"value":6234},"Other Pinecone Assistant operations",{"type":46,"tag":6236,"props":6237,"children":6239},"h4",{"id":6238},"upload-file-vs-update-file-choosing-the-right-operation",[6240],{"type":52,"value":6241},"Upload File vs Update File — choosing the right operation",{"type":46,"tag":6243,"props":6244,"children":6245},"table",{},[6246,6265],{"type":46,"tag":6247,"props":6248,"children":6249},"thead",{},[6250],{"type":46,"tag":6251,"props":6252,"children":6253},"tr",{},[6254,6260],{"type":46,"tag":6255,"props":6256,"children":6257},"th",{},[6258],{"type":52,"value":6259},"Scenario",{"type":46,"tag":6255,"props":6261,"children":6262},{},[6263],{"type":52,"value":6264},"Operation to use",{"type":46,"tag":6266,"props":6267,"children":6268},"tbody",{},[6269,6286],{"type":46,"tag":6251,"props":6270,"children":6271},{},[6272,6278],{"type":46,"tag":6273,"props":6274,"children":6275},"td",{},[6276],{"type":52,"value":6277},"File is guaranteed to be new (never ingested before)",{"type":46,"tag":6273,"props":6279,"children":6280},{},[6281],{"type":46,"tag":77,"props":6282,"children":6284},{"className":6283},[],[6285],{"type":52,"value":1052},{"type":46,"tag":6251,"props":6287,"children":6288},{},[6289,6294],{"type":46,"tag":6273,"props":6290,"children":6291},{},[6292],{"type":52,"value":6293},"File may already exist in the assistant (re-ingestion, scheduled refresh)",{"type":46,"tag":6273,"props":6295,"children":6296},{},[6297],{"type":46,"tag":77,"props":6298,"children":6300},{"className":6299},[],[6301],{"type":52,"value":6302},"updateFile",{"type":46,"tag":55,"props":6304,"children":6305},{},[6306,6311,6313,6318,6320,6325,6327,6332],{"type":46,"tag":77,"props":6307,"children":6309},{"className":6308},[],[6310],{"type":52,"value":6302},{"type":52,"value":6312}," is idempotent: it finds all files with the matching ",{"type":46,"tag":77,"props":6314,"children":6316},{"className":6315},[],[6317],{"type":52,"value":614},{"type":52,"value":6319},", deletes them, then uploads the new version. If no file exists with that ID it behaves exactly like ",{"type":46,"tag":77,"props":6321,"children":6323},{"className":6322},[],[6324],{"type":52,"value":1052},{"type":52,"value":6326},". Use ",{"type":46,"tag":77,"props":6328,"children":6330},{"className":6329},[],[6331],{"type":52,"value":6302},{"type":52,"value":6333}," whenever a workflow may run more than once on the same source files.",{"type":46,"tag":55,"props":6335,"children":6336},{},[6337,6339,6344,6346,6351,6352,6357,6358,6363,6364,6370,6372,6377,6379,6384,6385,6391,6393,6398],{"type":52,"value":6338},"Parameters for ",{"type":46,"tag":77,"props":6340,"children":6342},{"className":6341},[],[6343],{"type":52,"value":6302},{"type":52,"value":6345}," are identical to ",{"type":46,"tag":77,"props":6347,"children":6349},{"className":6348},[],[6350],{"type":52,"value":1052},{"type":52,"value":695},{"type":46,"tag":77,"props":6353,"children":6355},{"className":6354},[],[6356],{"type":52,"value":4334},{"type":52,"value":868},{"type":46,"tag":77,"props":6359,"children":6361},{"className":6360},[],[6362],{"type":52,"value":614},{"type":52,"value":868},{"type":46,"tag":77,"props":6365,"children":6367},{"className":6366},[],[6368],{"type":52,"value":6369},"inputDataFieldName",{"type":52,"value":6371},", and all ",{"type":46,"tag":77,"props":6373,"children":6375},{"className":6374},[],[6376],{"type":52,"value":533},{"type":52,"value":6378}," including ",{"type":46,"tag":77,"props":6380,"children":6382},{"className":6381},[],[6383],{"type":52,"value":713},{"type":52,"value":868},{"type":46,"tag":77,"props":6386,"children":6388},{"className":6387},[],[6389],{"type":52,"value":6390},"multimodalFile",{"type":52,"value":6392},", and ",{"type":46,"tag":77,"props":6394,"children":6396},{"className":6395},[],[6397],{"type":52,"value":525},{"type":52,"value":6399},".",{"type":46,"tag":349,"props":6401,"children":6403},{"className":417,"code":6402,"language":419,"meta":357,"style":357},"{\n  \"parameters\": {\n    \"resource\": \"file\",\n    \"operation\": \"updateFile\",\n    \"assistantData\": \"{\\\"name\\\":\\\"[ASSISTANT_NAME]\\\",\\\"host\\\":\\\"https:\u002F\u002F[ASSISTANT_HOST]\\\"}\",\n    \"externalFileId\": \"={{ $('Split to list').item.json.urls }}\",\n    \"additionalFields\": {\"sourceTag\": \"n8n:n8n_nodes_pinecone_assistant:pinecone_n8n_skill\"}\n  },\n  \"type\": \"@pinecone-database\u002Fn8n-nodes-pinecone-assistant.pineconeAssistant\",\n  \"typeVersion\": 1.2\n}\n",[6404],{"type":46,"tag":77,"props":6405,"children":6406},{"__ignoreMap":357},[6407,6414,6437,6472,6507,6606,6641,6696,6703,6738,6762],{"type":46,"tag":425,"props":6408,"children":6409},{"class":427,"line":428},[6410],{"type":46,"tag":425,"props":6411,"children":6412},{"style":432},[6413],{"type":52,"value":700},{"type":46,"tag":425,"props":6415,"children":6416},{"class":427,"line":27},[6417,6421,6425,6429,6433],{"type":46,"tag":425,"props":6418,"children":6419},{"style":432},[6420],{"type":52,"value":708},{"type":46,"tag":425,"props":6422,"children":6423},{"style":443},[6424],{"type":52,"value":1266},{"type":46,"tag":425,"props":6426,"children":6427},{"style":432},[6428],{"type":52,"value":440},{"type":46,"tag":425,"props":6430,"children":6431},{"style":432},[6432],{"type":52,"value":369},{"type":46,"tag":425,"props":6434,"children":6435},{"style":432},[6436],{"type":52,"value":1279},{"type":46,"tag":425,"props":6438,"children":6439},{"class":427,"line":822},[6440,6444,6448,6452,6456,6460,6464,6468],{"type":46,"tag":425,"props":6441,"children":6442},{"style":432},[6443],{"type":52,"value":5133},{"type":46,"tag":425,"props":6445,"children":6446},{"style":733},[6447],{"type":52,"value":4260},{"type":46,"tag":425,"props":6449,"children":6450},{"style":432},[6451],{"type":52,"value":440},{"type":46,"tag":425,"props":6453,"children":6454},{"style":432},[6455],{"type":52,"value":369},{"type":46,"tag":425,"props":6457,"children":6458},{"style":432},[6459],{"type":52,"value":458},{"type":46,"tag":425,"props":6461,"children":6462},{"style":461},[6463],{"type":52,"value":4013},{"type":46,"tag":425,"props":6465,"children":6466},{"style":432},[6467],{"type":52,"value":440},{"type":46,"tag":425,"props":6469,"children":6470},{"style":432},[6471],{"type":52,"value":1399},{"type":46,"tag":425,"props":6473,"children":6474},{"class":427,"line":1255},[6475,6479,6483,6487,6491,6495,6499,6503],{"type":46,"tag":425,"props":6476,"children":6477},{"style":432},[6478],{"type":52,"value":5133},{"type":46,"tag":425,"props":6480,"children":6481},{"style":733},[6482],{"type":52,"value":4297},{"type":46,"tag":425,"props":6484,"children":6485},{"style":432},[6486],{"type":52,"value":440},{"type":46,"tag":425,"props":6488,"children":6489},{"style":432},[6490],{"type":52,"value":369},{"type":46,"tag":425,"props":6492,"children":6493},{"style":432},[6494],{"type":52,"value":458},{"type":46,"tag":425,"props":6496,"children":6497},{"style":461},[6498],{"type":52,"value":6302},{"type":46,"tag":425,"props":6500,"children":6501},{"style":432},[6502],{"type":52,"value":440},{"type":46,"tag":425,"props":6504,"children":6505},{"style":432},[6506],{"type":52,"value":1399},{"type":46,"tag":425,"props":6508,"children":6509},{"class":427,"line":1282},[6510,6514,6518,6522,6526,6530,6534,6538,6542,6546,6550,6554,6558,6562,6566,6570,6574,6578,6582,6586,6590,6594,6598,6602],{"type":46,"tag":425,"props":6511,"children":6512},{"style":432},[6513],{"type":52,"value":5133},{"type":46,"tag":425,"props":6515,"children":6516},{"style":733},[6517],{"type":52,"value":4334},{"type":46,"tag":425,"props":6519,"children":6520},{"style":432},[6521],{"type":52,"value":440},{"type":46,"tag":425,"props":6523,"children":6524},{"style":432},[6525],{"type":52,"value":369},{"type":46,"tag":425,"props":6527,"children":6528},{"style":432},[6529],{"type":52,"value":458},{"type":46,"tag":425,"props":6531,"children":6532},{"style":461},[6533],{"type":52,"value":435},{"type":46,"tag":425,"props":6535,"children":6536},{"style":692},[6537],{"type":52,"value":4355},{"type":46,"tag":425,"props":6539,"children":6540},{"style":461},[6541],{"type":52,"value":404},{"type":46,"tag":425,"props":6543,"children":6544},{"style":692},[6545],{"type":52,"value":4355},{"type":46,"tag":425,"props":6547,"children":6548},{"style":461},[6549],{"type":52,"value":369},{"type":46,"tag":425,"props":6551,"children":6552},{"style":692},[6553],{"type":52,"value":4355},{"type":46,"tag":425,"props":6555,"children":6556},{"style":461},[6557],{"type":52,"value":1141},{"type":46,"tag":425,"props":6559,"children":6560},{"style":692},[6561],{"type":52,"value":4355},{"type":46,"tag":425,"props":6563,"children":6564},{"style":461},[6565],{"type":52,"value":473},{"type":46,"tag":425,"props":6567,"children":6568},{"style":692},[6569],{"type":52,"value":4355},{"type":46,"tag":425,"props":6571,"children":6572},{"style":461},[6573],{"type":52,"value":412},{"type":46,"tag":425,"props":6575,"children":6576},{"style":692},[6577],{"type":52,"value":4355},{"type":46,"tag":425,"props":6579,"children":6580},{"style":461},[6581],{"type":52,"value":369},{"type":46,"tag":425,"props":6583,"children":6584},{"style":692},[6585],{"type":52,"value":4355},{"type":46,"tag":425,"props":6587,"children":6588},{"style":461},[6589],{"type":52,"value":4408},{"type":46,"tag":425,"props":6591,"children":6592},{"style":692},[6593],{"type":52,"value":4355},{"type":46,"tag":425,"props":6595,"children":6596},{"style":461},[6597],{"type":52,"value":4417},{"type":46,"tag":425,"props":6599,"children":6600},{"style":432},[6601],{"type":52,"value":440},{"type":46,"tag":425,"props":6603,"children":6604},{"style":432},[6605],{"type":52,"value":1399},{"type":46,"tag":425,"props":6607,"children":6608},{"class":427,"line":1308},[6609,6613,6617,6621,6625,6629,6633,6637],{"type":46,"tag":425,"props":6610,"children":6611},{"style":432},[6612],{"type":52,"value":5133},{"type":46,"tag":425,"props":6614,"children":6615},{"style":733},[6616],{"type":52,"value":614},{"type":46,"tag":425,"props":6618,"children":6619},{"style":432},[6620],{"type":52,"value":440},{"type":46,"tag":425,"props":6622,"children":6623},{"style":432},[6624],{"type":52,"value":369},{"type":46,"tag":425,"props":6626,"children":6627},{"style":432},[6628],{"type":52,"value":458},{"type":46,"tag":425,"props":6630,"children":6631},{"style":461},[6632],{"type":52,"value":4454},{"type":46,"tag":425,"props":6634,"children":6635},{"style":432},[6636],{"type":52,"value":440},{"type":46,"tag":425,"props":6638,"children":6639},{"style":432},[6640],{"type":52,"value":1399},{"type":46,"tag":425,"props":6642,"children":6643},{"class":427,"line":1345},[6644,6648,6652,6656,6660,6664,6668,6672,6676,6680,6684,6688,6692],{"type":46,"tag":425,"props":6645,"children":6646},{"style":432},[6647],{"type":52,"value":5133},{"type":46,"tag":425,"props":6649,"children":6650},{"style":733},[6651],{"type":52,"value":533},{"type":46,"tag":425,"props":6653,"children":6654},{"style":432},[6655],{"type":52,"value":440},{"type":46,"tag":425,"props":6657,"children":6658},{"style":432},[6659],{"type":52,"value":369},{"type":46,"tag":425,"props":6661,"children":6662},{"style":432},[6663],{"type":52,"value":726},{"type":46,"tag":425,"props":6665,"children":6666},{"style":432},[6667],{"type":52,"value":440},{"type":46,"tag":425,"props":6669,"children":6670},{"style":756},[6671],{"type":52,"value":525},{"type":46,"tag":425,"props":6673,"children":6674},{"style":432},[6675],{"type":52,"value":440},{"type":46,"tag":425,"props":6677,"children":6678},{"style":432},[6679],{"type":52,"value":369},{"type":46,"tag":425,"props":6681,"children":6682},{"style":432},[6683],{"type":52,"value":458},{"type":46,"tag":425,"props":6685,"children":6686},{"style":461},[6687],{"type":52,"value":574},{"type":46,"tag":425,"props":6689,"children":6690},{"style":432},[6691],{"type":52,"value":440},{"type":46,"tag":425,"props":6693,"children":6694},{"style":432},[6695],{"type":52,"value":507},{"type":46,"tag":425,"props":6697,"children":6698},{"class":427,"line":1354},[6699],{"type":46,"tag":425,"props":6700,"children":6701},{"style":432},[6702],{"type":52,"value":6148},{"type":46,"tag":425,"props":6704,"children":6705},{"class":427,"line":1363},[6706,6710,6714,6718,6722,6726,6730,6734],{"type":46,"tag":425,"props":6707,"children":6708},{"style":432},[6709],{"type":52,"value":708},{"type":46,"tag":425,"props":6711,"children":6712},{"style":443},[6713],{"type":52,"value":1373},{"type":46,"tag":425,"props":6715,"children":6716},{"style":432},[6717],{"type":52,"value":440},{"type":46,"tag":425,"props":6719,"children":6720},{"style":432},[6721],{"type":52,"value":369},{"type":46,"tag":425,"props":6723,"children":6724},{"style":432},[6725],{"type":52,"value":458},{"type":46,"tag":425,"props":6727,"children":6728},{"style":461},[6729],{"type":52,"value":286},{"type":46,"tag":425,"props":6731,"children":6732},{"style":432},[6733],{"type":52,"value":440},{"type":46,"tag":425,"props":6735,"children":6736},{"style":432},[6737],{"type":52,"value":1399},{"type":46,"tag":425,"props":6739,"children":6740},{"class":427,"line":1402},[6741,6745,6749,6753,6757],{"type":46,"tag":425,"props":6742,"children":6743},{"style":432},[6744],{"type":52,"value":708},{"type":46,"tag":425,"props":6746,"children":6747},{"style":443},[6748],{"type":52,"value":1412},{"type":46,"tag":425,"props":6750,"children":6751},{"style":432},[6752],{"type":52,"value":440},{"type":46,"tag":425,"props":6754,"children":6755},{"style":432},[6756],{"type":52,"value":369},{"type":46,"tag":425,"props":6758,"children":6759},{"style":756},[6760],{"type":52,"value":6761}," 1.2\n",{"type":46,"tag":425,"props":6763,"children":6764},{"class":427,"line":1432},[6765],{"type":46,"tag":425,"props":6766,"children":6767},{"style":432},[6768],{"type":52,"value":507},{"type":46,"tag":6236,"props":6770,"children":6772},{"id":6771},"list-files",[6773],{"type":52,"value":6774},"List Files",{"type":46,"tag":55,"props":6776,"children":6777},{},[6778,6780,6786],{"type":52,"value":6779},"Use ",{"type":46,"tag":77,"props":6781,"children":6783},{"className":6782},[],[6784],{"type":52,"value":6785},"resource: \"file\", operation: \"listFiles\"",{"type":52,"value":6787}," to retrieve files, optionally filtered by metadata.",{"type":46,"tag":349,"props":6789,"children":6791},{"className":417,"code":6790,"language":419,"meta":357,"style":357},"{\n  \"parameters\": {\n    \"resource\": \"file\",\n    \"operation\": \"listFiles\",\n    \"assistantData\": \"{\\\"name\\\":\\\"[ASSISTANT_NAME]\\\",\\\"host\\\":\\\"https:\u002F\u002F[ASSISTANT_HOST]\\\"}\",\n    \"additionalFields\": {\n      \"sourceTag\": \"n8n:n8n_nodes_pinecone_assistant:pinecone_n8n_skill\",\n      \"metadataFilter\": {\n        \"metadataValues\": [{\"key\": \"department\", \"value\": \"legal\"}]\n      }\n    }\n  },\n  \"type\": \"@pinecone-database\u002Fn8n-nodes-pinecone-assistant.pineconeAssistant\",\n  \"typeVersion\": 1.2\n}\n",[6792],{"type":46,"tag":77,"props":6793,"children":6794},{"__ignoreMap":357},[6795,6802,6825,6860,6896,6995,7018,7053,7076,7164,7172,7179,7186,7221,7244],{"type":46,"tag":425,"props":6796,"children":6797},{"class":427,"line":428},[6798],{"type":46,"tag":425,"props":6799,"children":6800},{"style":432},[6801],{"type":52,"value":700},{"type":46,"tag":425,"props":6803,"children":6804},{"class":427,"line":27},[6805,6809,6813,6817,6821],{"type":46,"tag":425,"props":6806,"children":6807},{"style":432},[6808],{"type":52,"value":708},{"type":46,"tag":425,"props":6810,"children":6811},{"style":443},[6812],{"type":52,"value":1266},{"type":46,"tag":425,"props":6814,"children":6815},{"style":432},[6816],{"type":52,"value":440},{"type":46,"tag":425,"props":6818,"children":6819},{"style":432},[6820],{"type":52,"value":369},{"type":46,"tag":425,"props":6822,"children":6823},{"style":432},[6824],{"type":52,"value":1279},{"type":46,"tag":425,"props":6826,"children":6827},{"class":427,"line":822},[6828,6832,6836,6840,6844,6848,6852,6856],{"type":46,"tag":425,"props":6829,"children":6830},{"style":432},[6831],{"type":52,"value":5133},{"type":46,"tag":425,"props":6833,"children":6834},{"style":733},[6835],{"type":52,"value":4260},{"type":46,"tag":425,"props":6837,"children":6838},{"style":432},[6839],{"type":52,"value":440},{"type":46,"tag":425,"props":6841,"children":6842},{"style":432},[6843],{"type":52,"value":369},{"type":46,"tag":425,"props":6845,"children":6846},{"style":432},[6847],{"type":52,"value":458},{"type":46,"tag":425,"props":6849,"children":6850},{"style":461},[6851],{"type":52,"value":4013},{"type":46,"tag":425,"props":6853,"children":6854},{"style":432},[6855],{"type":52,"value":440},{"type":46,"tag":425,"props":6857,"children":6858},{"style":432},[6859],{"type":52,"value":1399},{"type":46,"tag":425,"props":6861,"children":6862},{"class":427,"line":1255},[6863,6867,6871,6875,6879,6883,6888,6892],{"type":46,"tag":425,"props":6864,"children":6865},{"style":432},[6866],{"type":52,"value":5133},{"type":46,"tag":425,"props":6868,"children":6869},{"style":733},[6870],{"type":52,"value":4297},{"type":46,"tag":425,"props":6872,"children":6873},{"style":432},[6874],{"type":52,"value":440},{"type":46,"tag":425,"props":6876,"children":6877},{"style":432},[6878],{"type":52,"value":369},{"type":46,"tag":425,"props":6880,"children":6881},{"style":432},[6882],{"type":52,"value":458},{"type":46,"tag":425,"props":6884,"children":6885},{"style":461},[6886],{"type":52,"value":6887},"listFiles",{"type":46,"tag":425,"props":6889,"children":6890},{"style":432},[6891],{"type":52,"value":440},{"type":46,"tag":425,"props":6893,"children":6894},{"style":432},[6895],{"type":52,"value":1399},{"type":46,"tag":425,"props":6897,"children":6898},{"class":427,"line":1282},[6899,6903,6907,6911,6915,6919,6923,6927,6931,6935,6939,6943,6947,6951,6955,6959,6963,6967,6971,6975,6979,6983,6987,6991],{"type":46,"tag":425,"props":6900,"children":6901},{"style":432},[6902],{"type":52,"value":5133},{"type":46,"tag":425,"props":6904,"children":6905},{"style":733},[6906],{"type":52,"value":4334},{"type":46,"tag":425,"props":6908,"children":6909},{"style":432},[6910],{"type":52,"value":440},{"type":46,"tag":425,"props":6912,"children":6913},{"style":432},[6914],{"type":52,"value":369},{"type":46,"tag":425,"props":6916,"children":6917},{"style":432},[6918],{"type":52,"value":458},{"type":46,"tag":425,"props":6920,"children":6921},{"style":461},[6922],{"type":52,"value":435},{"type":46,"tag":425,"props":6924,"children":6925},{"style":692},[6926],{"type":52,"value":4355},{"type":46,"tag":425,"props":6928,"children":6929},{"style":461},[6930],{"type":52,"value":404},{"type":46,"tag":425,"props":6932,"children":6933},{"style":692},[6934],{"type":52,"value":4355},{"type":46,"tag":425,"props":6936,"children":6937},{"style":461},[6938],{"type":52,"value":369},{"type":46,"tag":425,"props":6940,"children":6941},{"style":692},[6942],{"type":52,"value":4355},{"type":46,"tag":425,"props":6944,"children":6945},{"style":461},[6946],{"type":52,"value":1141},{"type":46,"tag":425,"props":6948,"children":6949},{"style":692},[6950],{"type":52,"value":4355},{"type":46,"tag":425,"props":6952,"children":6953},{"style":461},[6954],{"type":52,"value":473},{"type":46,"tag":425,"props":6956,"children":6957},{"style":692},[6958],{"type":52,"value":4355},{"type":46,"tag":425,"props":6960,"children":6961},{"style":461},[6962],{"type":52,"value":412},{"type":46,"tag":425,"props":6964,"children":6965},{"style":692},[6966],{"type":52,"value":4355},{"type":46,"tag":425,"props":6968,"children":6969},{"style":461},[6970],{"type":52,"value":369},{"type":46,"tag":425,"props":6972,"children":6973},{"style":692},[6974],{"type":52,"value":4355},{"type":46,"tag":425,"props":6976,"children":6977},{"style":461},[6978],{"type":52,"value":4408},{"type":46,"tag":425,"props":6980,"children":6981},{"style":692},[6982],{"type":52,"value":4355},{"type":46,"tag":425,"props":6984,"children":6985},{"style":461},[6986],{"type":52,"value":4417},{"type":46,"tag":425,"props":6988,"children":6989},{"style":432},[6990],{"type":52,"value":440},{"type":46,"tag":425,"props":6992,"children":6993},{"style":432},[6994],{"type":52,"value":1399},{"type":46,"tag":425,"props":6996,"children":6997},{"class":427,"line":1308},[6998,7002,7006,7010,7014],{"type":46,"tag":425,"props":6999,"children":7000},{"style":432},[7001],{"type":52,"value":5133},{"type":46,"tag":425,"props":7003,"children":7004},{"style":733},[7005],{"type":52,"value":533},{"type":46,"tag":425,"props":7007,"children":7008},{"style":432},[7009],{"type":52,"value":440},{"type":46,"tag":425,"props":7011,"children":7012},{"style":432},[7013],{"type":52,"value":369},{"type":46,"tag":425,"props":7015,"children":7016},{"style":432},[7017],{"type":52,"value":1279},{"type":46,"tag":425,"props":7019,"children":7020},{"class":427,"line":1345},[7021,7025,7029,7033,7037,7041,7045,7049],{"type":46,"tag":425,"props":7022,"children":7023},{"style":432},[7024],{"type":52,"value":1261},{"type":46,"tag":425,"props":7026,"children":7027},{"style":756},[7028],{"type":52,"value":525},{"type":46,"tag":425,"props":7030,"children":7031},{"style":432},[7032],{"type":52,"value":440},{"type":46,"tag":425,"props":7034,"children":7035},{"style":432},[7036],{"type":52,"value":369},{"type":46,"tag":425,"props":7038,"children":7039},{"style":432},[7040],{"type":52,"value":458},{"type":46,"tag":425,"props":7042,"children":7043},{"style":461},[7044],{"type":52,"value":574},{"type":46,"tag":425,"props":7046,"children":7047},{"style":432},[7048],{"type":52,"value":440},{"type":46,"tag":425,"props":7050,"children":7051},{"style":432},[7052],{"type":52,"value":1399},{"type":46,"tag":425,"props":7054,"children":7055},{"class":427,"line":1354},[7056,7060,7064,7068,7072],{"type":46,"tag":425,"props":7057,"children":7058},{"style":432},[7059],{"type":52,"value":1261},{"type":46,"tag":425,"props":7061,"children":7062},{"style":756},[7063],{"type":52,"value":925},{"type":46,"tag":425,"props":7065,"children":7066},{"style":432},[7067],{"type":52,"value":440},{"type":46,"tag":425,"props":7069,"children":7070},{"style":432},[7071],{"type":52,"value":369},{"type":46,"tag":425,"props":7073,"children":7074},{"style":432},[7075],{"type":52,"value":1279},{"type":46,"tag":425,"props":7077,"children":7078},{"class":427,"line":1363},[7079,7083,7087,7091,7095,7099,7103,7107,7111,7115,7119,7123,7127,7131,7135,7139,7143,7147,7151,7155,7159],{"type":46,"tag":425,"props":7080,"children":7081},{"style":432},[7082],{"type":52,"value":1288},{"type":46,"tag":425,"props":7084,"children":7085},{"style":1317},[7086],{"type":52,"value":736},{"type":46,"tag":425,"props":7088,"children":7089},{"style":432},[7090],{"type":52,"value":440},{"type":46,"tag":425,"props":7092,"children":7093},{"style":432},[7094],{"type":52,"value":369},{"type":46,"tag":425,"props":7096,"children":7097},{"style":432},[7098],{"type":52,"value":749},{"type":46,"tag":425,"props":7100,"children":7101},{"style":432},[7102],{"type":52,"value":440},{"type":46,"tag":425,"props":7104,"children":7105},{"style":3205},[7106],{"type":52,"value":759},{"type":46,"tag":425,"props":7108,"children":7109},{"style":432},[7110],{"type":52,"value":440},{"type":46,"tag":425,"props":7112,"children":7113},{"style":432},[7114],{"type":52,"value":369},{"type":46,"tag":425,"props":7116,"children":7117},{"style":432},[7118],{"type":52,"value":458},{"type":46,"tag":425,"props":7120,"children":7121},{"style":461},[7122],{"type":52,"value":776},{"type":46,"tag":425,"props":7124,"children":7125},{"style":432},[7126],{"type":52,"value":440},{"type":46,"tag":425,"props":7128,"children":7129},{"style":432},[7130],{"type":52,"value":473},{"type":46,"tag":425,"props":7132,"children":7133},{"style":432},[7134],{"type":52,"value":458},{"type":46,"tag":425,"props":7136,"children":7137},{"style":3205},[7138],{"type":52,"value":793},{"type":46,"tag":425,"props":7140,"children":7141},{"style":432},[7142],{"type":52,"value":440},{"type":46,"tag":425,"props":7144,"children":7145},{"style":432},[7146],{"type":52,"value":369},{"type":46,"tag":425,"props":7148,"children":7149},{"style":432},[7150],{"type":52,"value":458},{"type":46,"tag":425,"props":7152,"children":7153},{"style":461},[7154],{"type":52,"value":810},{"type":46,"tag":425,"props":7156,"children":7157},{"style":432},[7158],{"type":52,"value":440},{"type":46,"tag":425,"props":7160,"children":7161},{"style":432},[7162],{"type":52,"value":7163},"}]\n",{"type":46,"tag":425,"props":7165,"children":7166},{"class":427,"line":1402},[7167],{"type":46,"tag":425,"props":7168,"children":7169},{"style":432},[7170],{"type":52,"value":7171},"      }\n",{"type":46,"tag":425,"props":7173,"children":7174},{"class":427,"line":1432},[7175],{"type":46,"tag":425,"props":7176,"children":7177},{"style":432},[7178],{"type":52,"value":5090},{"type":46,"tag":425,"props":7180,"children":7181},{"class":427,"line":1477},[7182],{"type":46,"tag":425,"props":7183,"children":7184},{"style":432},[7185],{"type":52,"value":6148},{"type":46,"tag":425,"props":7187,"children":7188},{"class":427,"line":1515},[7189,7193,7197,7201,7205,7209,7213,7217],{"type":46,"tag":425,"props":7190,"children":7191},{"style":432},[7192],{"type":52,"value":708},{"type":46,"tag":425,"props":7194,"children":7195},{"style":443},[7196],{"type":52,"value":1373},{"type":46,"tag":425,"props":7198,"children":7199},{"style":432},[7200],{"type":52,"value":440},{"type":46,"tag":425,"props":7202,"children":7203},{"style":432},[7204],{"type":52,"value":369},{"type":46,"tag":425,"props":7206,"children":7207},{"style":432},[7208],{"type":52,"value":458},{"type":46,"tag":425,"props":7210,"children":7211},{"style":461},[7212],{"type":52,"value":286},{"type":46,"tag":425,"props":7214,"children":7215},{"style":432},[7216],{"type":52,"value":440},{"type":46,"tag":425,"props":7218,"children":7219},{"style":432},[7220],{"type":52,"value":1399},{"type":46,"tag":425,"props":7222,"children":7223},{"class":427,"line":23},[7224,7228,7232,7236,7240],{"type":46,"tag":425,"props":7225,"children":7226},{"style":432},[7227],{"type":52,"value":708},{"type":46,"tag":425,"props":7229,"children":7230},{"style":443},[7231],{"type":52,"value":1412},{"type":46,"tag":425,"props":7233,"children":7234},{"style":432},[7235],{"type":52,"value":440},{"type":46,"tag":425,"props":7237,"children":7238},{"style":432},[7239],{"type":52,"value":369},{"type":46,"tag":425,"props":7241,"children":7242},{"style":756},[7243],{"type":52,"value":6761},{"type":46,"tag":425,"props":7245,"children":7246},{"class":427,"line":1556},[7247],{"type":46,"tag":425,"props":7248,"children":7249},{"style":432},[7250],{"type":52,"value":507},{"type":46,"tag":55,"props":7252,"children":7253},{},[7254,7256,7262,7264,7269],{"type":52,"value":7255},"For complex filters, use ",{"type":46,"tag":77,"props":7257,"children":7259},{"className":7258},[],[7260],{"type":52,"value":7261},"advancedMetadataFilter",{"type":52,"value":7263}," (a JSON string) instead of ",{"type":46,"tag":77,"props":7265,"children":7267},{"className":7266},[],[7268],{"type":52,"value":925},{"type":52,"value":7270}," — never both:",{"type":46,"tag":349,"props":7272,"children":7274},{"className":417,"code":7273,"language":419,"meta":357,"style":357},"\"additionalFields\": {\n  \"advancedMetadataFilter\": \"{\\\"department\\\": {\\\"$in\\\": [\\\"legal\\\", \\\"finance\\\"]}}\"\n}\n",[7275],{"type":46,"tag":77,"props":7276,"children":7277},{"__ignoreMap":357},[7278,7301,7400],{"type":46,"tag":425,"props":7279,"children":7280},{"class":427,"line":428},[7281,7285,7289,7293,7297],{"type":46,"tag":425,"props":7282,"children":7283},{"style":432},[7284],{"type":52,"value":440},{"type":46,"tag":425,"props":7286,"children":7287},{"style":461},[7288],{"type":52,"value":533},{"type":46,"tag":425,"props":7290,"children":7291},{"style":432},[7292],{"type":52,"value":440},{"type":46,"tag":425,"props":7294,"children":7295},{"style":692},[7296],{"type":52,"value":695},{"type":46,"tag":425,"props":7298,"children":7299},{"style":432},[7300],{"type":52,"value":700},{"type":46,"tag":425,"props":7302,"children":7303},{"class":427,"line":27},[7304,7308,7312,7316,7320,7324,7328,7332,7336,7340,7345,7349,7353,7357,7362,7366,7370,7374,7378,7382,7387,7391,7396],{"type":46,"tag":425,"props":7305,"children":7306},{"style":432},[7307],{"type":52,"value":708},{"type":46,"tag":425,"props":7309,"children":7310},{"style":443},[7311],{"type":52,"value":7261},{"type":46,"tag":425,"props":7313,"children":7314},{"style":432},[7315],{"type":52,"value":440},{"type":46,"tag":425,"props":7317,"children":7318},{"style":432},[7319],{"type":52,"value":369},{"type":46,"tag":425,"props":7321,"children":7322},{"style":432},[7323],{"type":52,"value":458},{"type":46,"tag":425,"props":7325,"children":7326},{"style":461},[7327],{"type":52,"value":435},{"type":46,"tag":425,"props":7329,"children":7330},{"style":692},[7331],{"type":52,"value":4355},{"type":46,"tag":425,"props":7333,"children":7334},{"style":461},[7335],{"type":52,"value":776},{"type":46,"tag":425,"props":7337,"children":7338},{"style":692},[7339],{"type":52,"value":4355},{"type":46,"tag":425,"props":7341,"children":7342},{"style":461},[7343],{"type":52,"value":7344},": {",{"type":46,"tag":425,"props":7346,"children":7347},{"style":692},[7348],{"type":52,"value":4355},{"type":46,"tag":425,"props":7350,"children":7351},{"style":461},[7352],{"type":52,"value":881},{"type":46,"tag":425,"props":7354,"children":7355},{"style":692},[7356],{"type":52,"value":4355},{"type":46,"tag":425,"props":7358,"children":7359},{"style":461},[7360],{"type":52,"value":7361},": [",{"type":46,"tag":425,"props":7363,"children":7364},{"style":692},[7365],{"type":52,"value":4355},{"type":46,"tag":425,"props":7367,"children":7368},{"style":461},[7369],{"type":52,"value":810},{"type":46,"tag":425,"props":7371,"children":7372},{"style":692},[7373],{"type":52,"value":4355},{"type":46,"tag":425,"props":7375,"children":7376},{"style":461},[7377],{"type":52,"value":868},{"type":46,"tag":425,"props":7379,"children":7380},{"style":692},[7381],{"type":52,"value":4355},{"type":46,"tag":425,"props":7383,"children":7384},{"style":461},[7385],{"type":52,"value":7386},"finance",{"type":46,"tag":425,"props":7388,"children":7389},{"style":692},[7390],{"type":52,"value":4355},{"type":46,"tag":425,"props":7392,"children":7393},{"style":461},[7394],{"type":52,"value":7395},"]}}",{"type":46,"tag":425,"props":7397,"children":7398},{"style":432},[7399],{"type":52,"value":1342},{"type":46,"tag":425,"props":7401,"children":7402},{"class":427,"line":822},[7403],{"type":46,"tag":425,"props":7404,"children":7405},{"style":432},[7406],{"type":52,"value":507},{"type":46,"tag":6236,"props":7408,"children":7410},{"id":7409},"get-context-snippets",[7411],{"type":52,"value":7412},"Get Context Snippets",{"type":46,"tag":55,"props":7414,"children":7415},{},[7416,7417,7423],{"type":52,"value":6779},{"type":46,"tag":77,"props":7418,"children":7420},{"className":7419},[],[7421],{"type":52,"value":7422},"resource: \"contextSnippet\", operation: \"getContextSnippets\"",{"type":52,"value":7424}," to retrieve relevant text or image chunks directly — useful when you need raw retrieved context as workflow data rather than a chat reply.",{"type":46,"tag":349,"props":7426,"children":7428},{"className":417,"code":7427,"language":419,"meta":357,"style":357},"{\n  \"parameters\": {\n    \"resource\": \"contextSnippet\",\n    \"operation\": \"getContextSnippets\",\n    \"assistantData\": \"{\\\"name\\\":\\\"[ASSISTANT_NAME]\\\",\\\"host\\\":\\\"https:\u002F\u002F[ASSISTANT_HOST]\\\"}\",\n    \"query\": \"={{ $json.chatInput }}\",\n    \"additionalFields\": {\n      \"sourceTag\": \"n8n:n8n_nodes_pinecone_assistant:pinecone_n8n_skill\",\n      \"includeMultimodalContext\": true,\n      \"includeBinaryContent\": true,\n      \"topK\": 16,\n      \"snippetSize\": 2048\n    }\n  },\n  \"type\": \"@pinecone-database\u002Fn8n-nodes-pinecone-assistant.pineconeAssistant\",\n  \"typeVersion\": 1.2\n}\n",[7429],{"type":46,"tag":77,"props":7430,"children":7431},{"__ignoreMap":357},[7432,7439,7462,7498,7534,7633,7670,7693,7728,7753,7777,7806,7831,7838,7845,7880,7903],{"type":46,"tag":425,"props":7433,"children":7434},{"class":427,"line":428},[7435],{"type":46,"tag":425,"props":7436,"children":7437},{"style":432},[7438],{"type":52,"value":700},{"type":46,"tag":425,"props":7440,"children":7441},{"class":427,"line":27},[7442,7446,7450,7454,7458],{"type":46,"tag":425,"props":7443,"children":7444},{"style":432},[7445],{"type":52,"value":708},{"type":46,"tag":425,"props":7447,"children":7448},{"style":443},[7449],{"type":52,"value":1266},{"type":46,"tag":425,"props":7451,"children":7452},{"style":432},[7453],{"type":52,"value":440},{"type":46,"tag":425,"props":7455,"children":7456},{"style":432},[7457],{"type":52,"value":369},{"type":46,"tag":425,"props":7459,"children":7460},{"style":432},[7461],{"type":52,"value":1279},{"type":46,"tag":425,"props":7463,"children":7464},{"class":427,"line":822},[7465,7469,7473,7477,7481,7485,7490,7494],{"type":46,"tag":425,"props":7466,"children":7467},{"style":432},[7468],{"type":52,"value":5133},{"type":46,"tag":425,"props":7470,"children":7471},{"style":733},[7472],{"type":52,"value":4260},{"type":46,"tag":425,"props":7474,"children":7475},{"style":432},[7476],{"type":52,"value":440},{"type":46,"tag":425,"props":7478,"children":7479},{"style":432},[7480],{"type":52,"value":369},{"type":46,"tag":425,"props":7482,"children":7483},{"style":432},[7484],{"type":52,"value":458},{"type":46,"tag":425,"props":7486,"children":7487},{"style":461},[7488],{"type":52,"value":7489},"contextSnippet",{"type":46,"tag":425,"props":7491,"children":7492},{"style":432},[7493],{"type":52,"value":440},{"type":46,"tag":425,"props":7495,"children":7496},{"style":432},[7497],{"type":52,"value":1399},{"type":46,"tag":425,"props":7499,"children":7500},{"class":427,"line":1255},[7501,7505,7509,7513,7517,7521,7526,7530],{"type":46,"tag":425,"props":7502,"children":7503},{"style":432},[7504],{"type":52,"value":5133},{"type":46,"tag":425,"props":7506,"children":7507},{"style":733},[7508],{"type":52,"value":4297},{"type":46,"tag":425,"props":7510,"children":7511},{"style":432},[7512],{"type":52,"value":440},{"type":46,"tag":425,"props":7514,"children":7515},{"style":432},[7516],{"type":52,"value":369},{"type":46,"tag":425,"props":7518,"children":7519},{"style":432},[7520],{"type":52,"value":458},{"type":46,"tag":425,"props":7522,"children":7523},{"style":461},[7524],{"type":52,"value":7525},"getContextSnippets",{"type":46,"tag":425,"props":7527,"children":7528},{"style":432},[7529],{"type":52,"value":440},{"type":46,"tag":425,"props":7531,"children":7532},{"style":432},[7533],{"type":52,"value":1399},{"type":46,"tag":425,"props":7535,"children":7536},{"class":427,"line":1282},[7537,7541,7545,7549,7553,7557,7561,7565,7569,7573,7577,7581,7585,7589,7593,7597,7601,7605,7609,7613,7617,7621,7625,7629],{"type":46,"tag":425,"props":7538,"children":7539},{"style":432},[7540],{"type":52,"value":5133},{"type":46,"tag":425,"props":7542,"children":7543},{"style":733},[7544],{"type":52,"value":4334},{"type":46,"tag":425,"props":7546,"children":7547},{"style":432},[7548],{"type":52,"value":440},{"type":46,"tag":425,"props":7550,"children":7551},{"style":432},[7552],{"type":52,"value":369},{"type":46,"tag":425,"props":7554,"children":7555},{"style":432},[7556],{"type":52,"value":458},{"type":46,"tag":425,"props":7558,"children":7559},{"style":461},[7560],{"type":52,"value":435},{"type":46,"tag":425,"props":7562,"children":7563},{"style":692},[7564],{"type":52,"value":4355},{"type":46,"tag":425,"props":7566,"children":7567},{"style":461},[7568],{"type":52,"value":404},{"type":46,"tag":425,"props":7570,"children":7571},{"style":692},[7572],{"type":52,"value":4355},{"type":46,"tag":425,"props":7574,"children":7575},{"style":461},[7576],{"type":52,"value":369},{"type":46,"tag":425,"props":7578,"children":7579},{"style":692},[7580],{"type":52,"value":4355},{"type":46,"tag":425,"props":7582,"children":7583},{"style":461},[7584],{"type":52,"value":1141},{"type":46,"tag":425,"props":7586,"children":7587},{"style":692},[7588],{"type":52,"value":4355},{"type":46,"tag":425,"props":7590,"children":7591},{"style":461},[7592],{"type":52,"value":473},{"type":46,"tag":425,"props":7594,"children":7595},{"style":692},[7596],{"type":52,"value":4355},{"type":46,"tag":425,"props":7598,"children":7599},{"style":461},[7600],{"type":52,"value":412},{"type":46,"tag":425,"props":7602,"children":7603},{"style":692},[7604],{"type":52,"value":4355},{"type":46,"tag":425,"props":7606,"children":7607},{"style":461},[7608],{"type":52,"value":369},{"type":46,"tag":425,"props":7610,"children":7611},{"style":692},[7612],{"type":52,"value":4355},{"type":46,"tag":425,"props":7614,"children":7615},{"style":461},[7616],{"type":52,"value":4408},{"type":46,"tag":425,"props":7618,"children":7619},{"style":692},[7620],{"type":52,"value":4355},{"type":46,"tag":425,"props":7622,"children":7623},{"style":461},[7624],{"type":52,"value":4417},{"type":46,"tag":425,"props":7626,"children":7627},{"style":432},[7628],{"type":52,"value":440},{"type":46,"tag":425,"props":7630,"children":7631},{"style":432},[7632],{"type":52,"value":1399},{"type":46,"tag":425,"props":7634,"children":7635},{"class":427,"line":1308},[7636,7640,7645,7649,7653,7657,7662,7666],{"type":46,"tag":425,"props":7637,"children":7638},{"style":432},[7639],{"type":52,"value":5133},{"type":46,"tag":425,"props":7641,"children":7642},{"style":733},[7643],{"type":52,"value":7644},"query",{"type":46,"tag":425,"props":7646,"children":7647},{"style":432},[7648],{"type":52,"value":440},{"type":46,"tag":425,"props":7650,"children":7651},{"style":432},[7652],{"type":52,"value":369},{"type":46,"tag":425,"props":7654,"children":7655},{"style":432},[7656],{"type":52,"value":458},{"type":46,"tag":425,"props":7658,"children":7659},{"style":461},[7660],{"type":52,"value":7661},"={{ $json.chatInput }}",{"type":46,"tag":425,"props":7663,"children":7664},{"style":432},[7665],{"type":52,"value":440},{"type":46,"tag":425,"props":7667,"children":7668},{"style":432},[7669],{"type":52,"value":1399},{"type":46,"tag":425,"props":7671,"children":7672},{"class":427,"line":1345},[7673,7677,7681,7685,7689],{"type":46,"tag":425,"props":7674,"children":7675},{"style":432},[7676],{"type":52,"value":5133},{"type":46,"tag":425,"props":7678,"children":7679},{"style":733},[7680],{"type":52,"value":533},{"type":46,"tag":425,"props":7682,"children":7683},{"style":432},[7684],{"type":52,"value":440},{"type":46,"tag":425,"props":7686,"children":7687},{"style":432},[7688],{"type":52,"value":369},{"type":46,"tag":425,"props":7690,"children":7691},{"style":432},[7692],{"type":52,"value":1279},{"type":46,"tag":425,"props":7694,"children":7695},{"class":427,"line":1354},[7696,7700,7704,7708,7712,7716,7720,7724],{"type":46,"tag":425,"props":7697,"children":7698},{"style":432},[7699],{"type":52,"value":1261},{"type":46,"tag":425,"props":7701,"children":7702},{"style":756},[7703],{"type":52,"value":525},{"type":46,"tag":425,"props":7705,"children":7706},{"style":432},[7707],{"type":52,"value":440},{"type":46,"tag":425,"props":7709,"children":7710},{"style":432},[7711],{"type":52,"value":369},{"type":46,"tag":425,"props":7713,"children":7714},{"style":432},[7715],{"type":52,"value":458},{"type":46,"tag":425,"props":7717,"children":7718},{"style":461},[7719],{"type":52,"value":574},{"type":46,"tag":425,"props":7721,"children":7722},{"style":432},[7723],{"type":52,"value":440},{"type":46,"tag":425,"props":7725,"children":7726},{"style":432},[7727],{"type":52,"value":1399},{"type":46,"tag":425,"props":7729,"children":7730},{"class":427,"line":1363},[7731,7735,7740,7744,7748],{"type":46,"tag":425,"props":7732,"children":7733},{"style":432},[7734],{"type":52,"value":1261},{"type":46,"tag":425,"props":7736,"children":7737},{"style":756},[7738],{"type":52,"value":7739},"includeMultimodalContext",{"type":46,"tag":425,"props":7741,"children":7742},{"style":432},[7743],{"type":52,"value":440},{"type":46,"tag":425,"props":7745,"children":7746},{"style":432},[7747],{"type":52,"value":369},{"type":46,"tag":425,"props":7749,"children":7750},{"style":432},[7751],{"type":52,"value":7752}," true,\n",{"type":46,"tag":425,"props":7754,"children":7755},{"class":427,"line":1402},[7756,7760,7765,7769,7773],{"type":46,"tag":425,"props":7757,"children":7758},{"style":432},[7759],{"type":52,"value":1261},{"type":46,"tag":425,"props":7761,"children":7762},{"style":756},[7763],{"type":52,"value":7764},"includeBinaryContent",{"type":46,"tag":425,"props":7766,"children":7767},{"style":432},[7768],{"type":52,"value":440},{"type":46,"tag":425,"props":7770,"children":7771},{"style":432},[7772],{"type":52,"value":369},{"type":46,"tag":425,"props":7774,"children":7775},{"style":432},[7776],{"type":52,"value":7752},{"type":46,"tag":425,"props":7778,"children":7779},{"class":427,"line":1432},[7780,7784,7789,7793,7797,7802],{"type":46,"tag":425,"props":7781,"children":7782},{"style":432},[7783],{"type":52,"value":1261},{"type":46,"tag":425,"props":7785,"children":7786},{"style":756},[7787],{"type":52,"value":7788},"topK",{"type":46,"tag":425,"props":7790,"children":7791},{"style":432},[7792],{"type":52,"value":440},{"type":46,"tag":425,"props":7794,"children":7795},{"style":432},[7796],{"type":52,"value":369},{"type":46,"tag":425,"props":7798,"children":7799},{"style":756},[7800],{"type":52,"value":7801}," 16",{"type":46,"tag":425,"props":7803,"children":7804},{"style":432},[7805],{"type":52,"value":1399},{"type":46,"tag":425,"props":7807,"children":7808},{"class":427,"line":1477},[7809,7813,7818,7822,7826],{"type":46,"tag":425,"props":7810,"children":7811},{"style":432},[7812],{"type":52,"value":1261},{"type":46,"tag":425,"props":7814,"children":7815},{"style":756},[7816],{"type":52,"value":7817},"snippetSize",{"type":46,"tag":425,"props":7819,"children":7820},{"style":432},[7821],{"type":52,"value":440},{"type":46,"tag":425,"props":7823,"children":7824},{"style":432},[7825],{"type":52,"value":369},{"type":46,"tag":425,"props":7827,"children":7828},{"style":756},[7829],{"type":52,"value":7830}," 2048\n",{"type":46,"tag":425,"props":7832,"children":7833},{"class":427,"line":1515},[7834],{"type":46,"tag":425,"props":7835,"children":7836},{"style":432},[7837],{"type":52,"value":5090},{"type":46,"tag":425,"props":7839,"children":7840},{"class":427,"line":23},[7841],{"type":46,"tag":425,"props":7842,"children":7843},{"style":432},[7844],{"type":52,"value":6148},{"type":46,"tag":425,"props":7846,"children":7847},{"class":427,"line":1556},[7848,7852,7856,7860,7864,7868,7872,7876],{"type":46,"tag":425,"props":7849,"children":7850},{"style":432},[7851],{"type":52,"value":708},{"type":46,"tag":425,"props":7853,"children":7854},{"style":443},[7855],{"type":52,"value":1373},{"type":46,"tag":425,"props":7857,"children":7858},{"style":432},[7859],{"type":52,"value":440},{"type":46,"tag":425,"props":7861,"children":7862},{"style":432},[7863],{"type":52,"value":369},{"type":46,"tag":425,"props":7865,"children":7866},{"style":432},[7867],{"type":52,"value":458},{"type":46,"tag":425,"props":7869,"children":7870},{"style":461},[7871],{"type":52,"value":286},{"type":46,"tag":425,"props":7873,"children":7874},{"style":432},[7875],{"type":52,"value":440},{"type":46,"tag":425,"props":7877,"children":7878},{"style":432},[7879],{"type":52,"value":1399},{"type":46,"tag":425,"props":7881,"children":7882},{"class":427,"line":1564},[7883,7887,7891,7895,7899],{"type":46,"tag":425,"props":7884,"children":7885},{"style":432},[7886],{"type":52,"value":708},{"type":46,"tag":425,"props":7888,"children":7889},{"style":443},[7890],{"type":52,"value":1412},{"type":46,"tag":425,"props":7892,"children":7893},{"style":432},[7894],{"type":52,"value":440},{"type":46,"tag":425,"props":7896,"children":7897},{"style":432},[7898],{"type":52,"value":369},{"type":46,"tag":425,"props":7900,"children":7901},{"style":756},[7902],{"type":52,"value":6761},{"type":46,"tag":425,"props":7904,"children":7905},{"class":427,"line":1588},[7906],{"type":46,"tag":425,"props":7907,"children":7908},{"style":432},[7909],{"type":52,"value":507},{"type":46,"tag":55,"props":7911,"children":7912},{},[7913,7915,7920,7922,7927,7929,7934,7936,7941,7943,7948,7950,7956],{"type":52,"value":7914},"The same ",{"type":46,"tag":77,"props":7916,"children":7918},{"className":7917},[],[7919],{"type":52,"value":925},{"type":52,"value":7921}," \u002F ",{"type":46,"tag":77,"props":7923,"children":7925},{"className":7924},[],[7926],{"type":52,"value":7261},{"type":52,"value":7928}," options work on ",{"type":46,"tag":77,"props":7930,"children":7932},{"className":7931},[],[7933],{"type":52,"value":7525},{"type":52,"value":7935}," to scope retrieval to files matching specific metadata. The ",{"type":46,"tag":77,"props":7937,"children":7939},{"className":7938},[],[7940],{"type":52,"value":7764},{"type":52,"value":7942}," flag only applies when ",{"type":46,"tag":77,"props":7944,"children":7946},{"className":7945},[],[7947],{"type":52,"value":7739},{"type":52,"value":7949}," is ",{"type":46,"tag":77,"props":7951,"children":7953},{"className":7952},[],[7954],{"type":52,"value":7955},"true",{"type":52,"value":6399},{"type":46,"tag":113,"props":7958,"children":7959},{},[],{"type":46,"tag":117,"props":7961,"children":7963},{"id":7962},"pinecone-vector-store-node-best-practices-and-workflow-generation",[7964],{"type":52,"value":7965},"Pinecone Vector Store Node — Best Practices and Workflow Generation",{"type":46,"tag":267,"props":7967,"children":7969},{"id":7968},"node-package-name",[7970],{"type":52,"value":7971},"Node package name",{"type":46,"tag":55,"props":7973,"children":7974},{},[7975],{"type":46,"tag":77,"props":7976,"children":7978},{"className":7977},[],[7979],{"type":52,"value":99},{"type":46,"tag":267,"props":7981,"children":7983},{"id":7982},"prerequisites-1",[7984],{"type":52,"value":303},{"type":46,"tag":61,"props":7986,"children":7987},{},[7988,8001,8005],{"type":46,"tag":65,"props":7989,"children":7990},{},[7991,7993,7999],{"type":52,"value":7992},"Create a Pinecone index in the Pinecone Console at ",{"type":46,"tag":313,"props":7994,"children":7997},{"href":7995,"rel":7996},"https:\u002F\u002Fapp.pinecone.io\u002Forganizations\u002F-\u002Fprojects\u002F-\u002Findexes",[317],[7998],{"type":52,"value":7995},{"type":52,"value":8000}," with the correct name and dimensions before running the workflow",{"type":46,"tag":65,"props":8002,"children":8003},{},[8004],{"type":52,"value":326},{"type":46,"tag":65,"props":8006,"children":8007},{},[8008],{"type":52,"value":8009},"Set up an OpenAI credential in n8n",{"type":46,"tag":267,"props":8011,"children":8013},{"id":8012},"workflow-architecture-1",[8014],{"type":52,"value":332},{"type":46,"tag":55,"props":8016,"children":8017},{},[8018,8020,8026],{"type":52,"value":8019},"Two-phase workflow with two separate ",{"type":46,"tag":77,"props":8021,"children":8023},{"className":8022},[],[8024],{"type":52,"value":8025},"vectorStorePinecone",{"type":52,"value":8027}," node instances:",{"type":46,"tag":55,"props":8029,"children":8030},{},[8031,8035],{"type":46,"tag":69,"props":8032,"children":8033},{},[8034],{"type":52,"value":345},{"type":52,"value":347},{"type":46,"tag":349,"props":8037,"children":8040},{"className":8038,"code":8039,"language":52},[352],"Manual Trigger → Set file URLs → Split Out → HTTP Request (download)\n  → Pinecone Vector Store (insert mode)\n       ↑ Default Data Loader ← Recursive Character Text Splitter\n       ↑ Embeddings OpenAI\n",[8041],{"type":46,"tag":77,"props":8042,"children":8043},{"__ignoreMap":357},[8044],{"type":52,"value":8039},{"type":46,"tag":55,"props":8046,"children":8047},{},[8048,8052],{"type":46,"tag":69,"props":8049,"children":8050},{},[8051],{"type":52,"value":367},{"type":52,"value":369},{"type":46,"tag":349,"props":8054,"children":8057},{"className":8055,"code":8056,"language":52},[352],"Chat Trigger → AI Agent ← Pinecone Vector Store (retrieve-as-tool mode)\n                               ↑ Embeddings OpenAI (same model as insert)\n                        ← OpenAI Chat Model\n",[8058],{"type":46,"tag":77,"props":8059,"children":8060},{"__ignoreMap":357},[8061],{"type":52,"value":8056},{"type":46,"tag":267,"props":8063,"children":8065},{"id":8064},"key-configuration-rules-1",[8066],{"type":52,"value":384},{"type":46,"tag":386,"props":8068,"children":8069},{},[8070,8103,8121,8179,8189,8198,8223],{"type":46,"tag":65,"props":8071,"children":8072},{},[8073,8078,8080,8085,8087,8093,8095,8101],{"type":46,"tag":69,"props":8074,"children":8075},{},[8076],{"type":52,"value":8077},"Two node instances",{"type":52,"value":8079},": Use one ",{"type":46,"tag":77,"props":8081,"children":8083},{"className":8082},[],[8084],{"type":52,"value":8025},{"type":52,"value":8086}," in ",{"type":46,"tag":77,"props":8088,"children":8090},{"className":8089},[],[8091],{"type":52,"value":8092},"insert",{"type":52,"value":8094}," mode for ingestion and a separate one in ",{"type":46,"tag":77,"props":8096,"children":8098},{"className":8097},[],[8099],{"type":52,"value":8100},"retrieve-as-tool",{"type":52,"value":8102}," mode for chat",{"type":46,"tag":65,"props":8104,"children":8105},{},[8106,8111,8113,8119],{"type":46,"tag":69,"props":8107,"children":8108},{},[8109],{"type":52,"value":8110},"Embedding model consistency",{"type":52,"value":8112},": The SAME embedding model and dimensions MUST be used in both insert and retrieve-as-tool nodes — they share a single Embeddings OpenAI node via the ",{"type":46,"tag":77,"props":8114,"children":8116},{"className":8115},[],[8117],{"type":52,"value":8118},"ai_embedding",{"type":52,"value":8120}," connection",{"type":46,"tag":65,"props":8122,"children":8123},{},[8124,8129,8130],{"type":46,"tag":69,"props":8125,"children":8126},{},[8127],{"type":52,"value":8128},"Required companion nodes for the insert node",{"type":52,"value":535},{"type":46,"tag":61,"props":8131,"children":8132},{},[8133,8144,8155],{"type":46,"tag":65,"props":8134,"children":8135},{},[8136,8142],{"type":46,"tag":77,"props":8137,"children":8139},{"className":8138},[],[8140],{"type":52,"value":8141},"@n8n\u002Fn8n-nodes-langchain.embeddingsOpenAi",{"type":52,"value":8143}," — set dimensions to match your index (1536 for text-embedding-3-small)",{"type":46,"tag":65,"props":8145,"children":8146},{},[8147,8153],{"type":46,"tag":77,"props":8148,"children":8150},{"className":8149},[],[8151],{"type":52,"value":8152},"@n8n\u002Fn8n-nodes-langchain.textSplitterRecursiveCharacterTextSplitter",{"type":52,"value":8154}," — connects to the data loader",{"type":46,"tag":65,"props":8156,"children":8157},{},[8158,8164,8166,8172,8173],{"type":46,"tag":77,"props":8159,"children":8161},{"className":8160},[],[8162],{"type":52,"value":8163},"@n8n\u002Fn8n-nodes-langchain.documentDefaultDataLoader",{"type":52,"value":8165}," — set ",{"type":46,"tag":77,"props":8167,"children":8169},{"className":8168},[],[8170],{"type":52,"value":8171},"dataType: binary",{"type":52,"value":406},{"type":46,"tag":77,"props":8174,"children":8176},{"className":8175},[],[8177],{"type":52,"value":8178},"textSplittingMode: custom",{"type":46,"tag":65,"props":8180,"children":8181},{},[8182,8187],{"type":46,"tag":69,"props":8183,"children":8184},{},[8185],{"type":52,"value":8186},"toolDescription",{"type":52,"value":8188},": Write a clear, specific description on the retrieve-as-tool node — the AI Agent uses this to decide when to query it",{"type":46,"tag":65,"props":8190,"children":8191},{},[8192,8196],{"type":46,"tag":69,"props":8193,"children":8194},{},[8195],{"type":52,"value":7788},{"type":52,"value":8197},": Use 20 as the default; increase for broader recall, decrease to reduce token usage",{"type":46,"tag":65,"props":8199,"children":8200},{},[8201,8206,8208,8214,8216,8221],{"type":46,"tag":69,"props":8202,"children":8203},{},[8204],{"type":52,"value":8205},"Metadata for citations",{"type":52,"value":8207},": In the Default Data Loader, add ",{"type":46,"tag":77,"props":8209,"children":8211},{"className":8210},[],[8212],{"type":52,"value":8213},"external_file_url",{"type":52,"value":8215}," as a metadata field set to ",{"type":46,"tag":77,"props":8217,"children":8219},{"className":8218},[],[8220],{"type":52,"value":3913},{"type":52,"value":8222}," so the AI Agent can cite sources",{"type":46,"tag":65,"props":8224,"children":8225},{},[8226,8230,8231,8236],{"type":46,"tag":69,"props":8227,"children":8228},{},[8229],{"type":52,"value":624},{"type":52,"value":626},{"type":46,"tag":77,"props":8232,"children":8234},{"className":8233},[],[8235],{"type":52,"value":632},{"type":52,"value":8237}," credential type",{"type":46,"tag":267,"props":8239,"children":8241},{"id":8240},"chunking-guidance",[8242],{"type":52,"value":8243},"Chunking guidance",{"type":46,"tag":61,"props":8245,"children":8246},{},[8247,8257,8267],{"type":46,"tag":65,"props":8248,"children":8249},{},[8250,8255],{"type":46,"tag":69,"props":8251,"children":8252},{},[8253],{"type":52,"value":8254},"3000 chars \u002F 500 overlap",{"type":52,"value":8256},": Good default for long documents (articles, reports, documentation)",{"type":46,"tag":65,"props":8258,"children":8259},{},[8260,8265],{"type":46,"tag":69,"props":8261,"children":8262},{},[8263],{"type":52,"value":8264},"500–1000 chars \u002F 100–200 overlap",{"type":52,"value":8266},": Better for Q&A-style retrieval or short, dense content",{"type":46,"tag":65,"props":8268,"children":8269},{},[8270,8272],{"type":52,"value":8271},"Reference: ",{"type":46,"tag":313,"props":8273,"children":8276},{"href":8274,"rel":8275},"https:\u002F\u002Fwww.pinecone.io\u002Flearn\u002Fchunking-strategies\u002F",[317],[8277],{"type":52,"value":8274},{"type":46,"tag":267,"props":8279,"children":8281},{"id":8280},"index-setup-instructions",[8282],{"type":52,"value":8283},"Index setup instructions",{"type":46,"tag":55,"props":8285,"children":8286},{},[8287],{"type":52,"value":8288},"When generating a workflow, always tell the user to:",{"type":46,"tag":386,"props":8290,"children":8291},{},[8292,8304,8317],{"type":46,"tag":65,"props":8293,"children":8294},{},[8295,8297,8302],{"type":52,"value":8296},"Go to ",{"type":46,"tag":313,"props":8298,"children":8300},{"href":7995,"rel":8299},[317],[8301],{"type":52,"value":7995},{"type":52,"value":8303}," and create an index",{"type":46,"tag":65,"props":8305,"children":8306},{},[8307,8309,8315],{"type":52,"value":8308},"Set the name to match the ",{"type":46,"tag":77,"props":8310,"children":8312},{"className":8311},[],[8313],{"type":52,"value":8314},"pineconeIndex",{"type":52,"value":8316}," value in the workflow",{"type":46,"tag":65,"props":8318,"children":8319},{},[8320],{"type":52,"value":8321},"Select the embedding model that matches the n8n Embeddings node (text-embedding-3-small → 1536 dimensions)",{"type":46,"tag":267,"props":8323,"children":8325},{"id":8324},"generating-workflow-json-for-the-vector-store-path",[8326],{"type":52,"value":8327},"Generating workflow JSON for the Vector Store path",{"type":46,"tag":55,"props":8329,"children":8330},{},[8331],{"type":52,"value":8332},"Build the workflow to match what the user actually describes — their triggers, embedding model, chunking strategy, data sources, and structure. Ask about anything structurally significant they haven't mentioned. Only fall back to the defaults below when the user hasn't specified a value:",{"type":46,"tag":61,"props":8334,"children":8335},{},[8336,8363,8367,8376,8389,8394],{"type":46,"tag":65,"props":8337,"children":8338},{},[8339,8341,8347,8348,8354,8355,8361],{"type":52,"value":8340},"Index name: ",{"type":46,"tag":77,"props":8342,"children":8344},{"className":8343},[],[8345],{"type":52,"value":8346},"n8n-index",{"type":52,"value":1081},{"type":46,"tag":77,"props":8349,"children":8351},{"className":8350},[],[8352],{"type":52,"value":8353},"n8n-index-1",{"type":52,"value":868},{"type":46,"tag":77,"props":8356,"children":8358},{"className":8357},[],[8359],{"type":52,"value":8360},"n8n-index-2",{"type":52,"value":8362},", etc. for multiples; must match an existing Pinecone index)",{"type":46,"tag":65,"props":8364,"children":8365},{},[8366],{"type":52,"value":1101},{"type":46,"tag":65,"props":8368,"children":8369},{},[8370,8371],{"type":52,"value":1106},{"type":46,"tag":77,"props":8372,"children":8374},{"className":8373},[],[8375],{"type":52,"value":1112},{"type":46,"tag":65,"props":8377,"children":8378},{},[8379,8381,8387],{"type":52,"value":8380},"Embedding model: ",{"type":46,"tag":77,"props":8382,"children":8384},{"className":8383},[],[8385],{"type":52,"value":8386},"text-embedding-3-small",{"type":52,"value":8388}," (1536 dimensions)",{"type":46,"tag":65,"props":8390,"children":8391},{},[8392],{"type":52,"value":8393},"Chunk size: 3000 chars \u002F 500 overlap",{"type":46,"tag":65,"props":8395,"children":8396},{},[8397],{"type":52,"value":8398},"System message \u002F tool description: generic prompt about retrieving from the index with citations",{"type":46,"tag":55,"props":8400,"children":8401},{},[8402,8403,8407],{"type":52,"value":1122},{"type":46,"tag":69,"props":8404,"children":8405},{},[8406],{"type":52,"value":1127},{"type":52,"value":1129},{"type":46,"tag":61,"props":8409,"children":8410},{},[8411,8422,8436,8450,8460],{"type":46,"tag":65,"props":8412,"children":8413},{},[8414,8420],{"type":46,"tag":77,"props":8415,"children":8417},{"className":8416},[],[8418],{"type":52,"value":8419},"[INDEX_NAME]",{"type":52,"value":8421}," — index name",{"type":46,"tag":65,"props":8423,"children":8424},{},[8425,8430,8431],{"type":46,"tag":77,"props":8426,"children":8428},{"className":8427},[],[8429],{"type":52,"value":1170},{"type":52,"value":1172},{"type":46,"tag":77,"props":8432,"children":8434},{"className":8433},[],[8435],{"type":52,"value":1178},{"type":46,"tag":65,"props":8437,"children":8438},{},[8439,8444,8445],{"type":46,"tag":77,"props":8440,"children":8442},{"className":8441},[],[8443],{"type":52,"value":1187},{"type":52,"value":1189},{"type":46,"tag":77,"props":8446,"children":8448},{"className":8447},[],[8449],{"type":52,"value":1112},{"type":46,"tag":65,"props":8451,"children":8452},{},[8453,8458],{"type":46,"tag":77,"props":8454,"children":8456},{"className":8455},[],[8457],{"type":52,"value":1203},{"type":52,"value":8459}," — short description of the data, for the AI Agent system message",{"type":46,"tag":65,"props":8461,"children":8462},{},[8463,8469],{"type":46,"tag":77,"props":8464,"children":8466},{"className":8465},[],[8467],{"type":52,"value":8468},"[USER_TOOL_DESCRIPTION]",{"type":52,"value":8470}," — description of what data the vector store contains, for the tool node",{"type":46,"tag":349,"props":8472,"children":8474},{"className":417,"code":8473,"language":419,"meta":357,"style":357},"{\n  \"nodes\": [\n    {\n      \"parameters\": {\n        \"mode\": \"insert\",\n        \"pineconeIndex\": {\n          \"__rl\": true,\n          \"value\": \"[INDEX_NAME]\",\n          \"mode\": \"list\",\n          \"cachedResultName\": \"[INDEX_NAME]\"\n        },\n        \"options\": {}\n      },\n      \"type\": \"@n8n\u002Fn8n-nodes-langchain.vectorStorePinecone\",\n      \"typeVersion\": 1.3,\n      \"position\": [224, 0],\n      \"id\": \"163c0a37-427c-4da7-a194-203ac216c88e\",\n      \"name\": \"Pinecone Vector Store\"\n    },\n    {\n      \"parameters\": {\n        \"options\": {\"dimensions\": 1536}\n      },\n      \"type\": \"@n8n\u002Fn8n-nodes-langchain.embeddingsOpenAi\",\n      \"typeVersion\": 1.2,\n      \"position\": [336, 608],\n      \"id\": \"a034bcb9-d813-4fd0-a68a-426c1f2b2aba\",\n      \"name\": \"Embeddings OpenAI\"\n    },\n    {\n      \"parameters\": {\"options\": {}},\n      \"type\": \"@n8n\u002Fn8n-nodes-langchain.chatTrigger\",\n      \"typeVersion\": 1.3,\n      \"position\": [-512, 896],\n      \"id\": \"56182cf7-2bda-4513-a2f9-18fb70c718ec\",\n      \"name\": \"When chat message received\",\n      \"webhookId\": \"30328376-a9e3-4f11-b1eb-2bbaadbea688\"\n    },\n    {\n      \"parameters\": {\n        \"options\": {\n          \"systemMessage\": \"You are a helpful assistant. Only use the Pinecone Vector Store Tool to retrieve data about [USER_TOPIC]. Include the file name and file url in citations wherever referenced in output.\"\n        }\n      },\n      \"type\": \"@n8n\u002Fn8n-nodes-langchain.agent\",\n      \"typeVersion\": 2.2,\n      \"position\": [-336, 896],\n      \"id\": \"36bb8361-edfd-47ff-aaf1-48f3c31fb1f7\",\n      \"name\": \"AI Agent\"\n    },\n    {\n      \"parameters\": {\n        \"model\": {\n          \"__rl\": true,\n          \"value\": \"[USER_MODEL]\",\n          \"mode\": \"list\",\n          \"cachedResultName\": \"[USER_MODEL]\"\n        },\n        \"options\": {}\n      },\n      \"type\": \"@n8n\u002Fn8n-nodes-langchain.lmChatOpenAi\",\n      \"typeVersion\": 1.2,\n      \"position\": [-336, 1200],\n      \"id\": \"22d00f25-44eb-40c1-8dae-b757e4b66690\",\n      \"name\": \"OpenAI Chat Model\"\n    },\n    {\n      \"parameters\": {\n        \"mode\": \"retrieve-as-tool\",\n        \"toolDescription\": \"[USER_TOOL_DESCRIPTION]\",\n        \"pineconeIndex\": {\n          \"__rl\": true,\n          \"value\": \"[INDEX_NAME]\",\n          \"mode\": \"list\",\n          \"cachedResultName\": \"[INDEX_NAME]\"\n        },\n        \"topK\": 20,\n        \"options\": {}\n      },\n      \"type\": \"@n8n\u002Fn8n-nodes-langchain.vectorStorePinecone\",\n      \"typeVersion\": 1.3,\n      \"position\": [-16, 1104],\n      \"id\": \"15c599b7-93bb-44b7-b95c-190200de2a20\",\n      \"name\": \"Pinecone Vector Store Tool\"\n    },\n    {\n      \"parameters\": {\n        \"content\": \"## 1. Process new files, embed, and upsert to Pinecone index\",\n        \"height\": 576,\n        \"width\": 1744,\n        \"color\": 7\n      },\n      \"type\": \"n8n-nodes-base.stickyNote\",\n      \"position\": [-608, -80],\n      \"typeVersion\": 1,\n      \"id\": \"18f22d77-fb10-4fa7-b942-2fafd7ca30c3\",\n      \"name\": \"Sticky Note\"\n    },\n    {\n      \"parameters\": {\n        \"content\": \"## 2. Chat with your docs\",\n        \"height\": 640,\n        \"width\": 1744,\n        \"color\": 7\n      },\n      \"type\": \"n8n-nodes-base.stickyNote\",\n      \"position\": [-608, 784],\n      \"typeVersion\": 1,\n      \"id\": \"7b7be380-821c-4012-8f1a-1606527d2544\",\n      \"name\": \"Sticky Note1\"\n    },\n    {\n      \"parameters\": {},\n      \"type\": \"n8n-nodes-base.manualTrigger\",\n      \"typeVersion\": 1,\n      \"position\": [-512, 0],\n      \"id\": \"a0a3b917-765b-445e-9866-d3fc651ef6a8\",\n      \"name\": \"When clicking 'Execute workflow'\"\n    },\n    {\n      \"parameters\": {\n        \"assignments\": {\n          \"assignments\": [\n            {\n              \"id\": \"d0e724df-685f-4661-b2ec-3cdd3c2ba0f1\",\n              \"name\": \"urls\",\n              \"value\": \"[USER_FILE_URLS_ARRAY]\",\n              \"type\": \"array\"\n            }\n          ]\n        },\n        \"options\": {}\n      },\n      \"type\": \"n8n-nodes-base.set\",\n      \"typeVersion\": 3.4,\n      \"position\": [-352, 0],\n      \"id\": \"651439de-5525-4d0a-b055-1d722e81c0aa\",\n      \"name\": \"Set file urls\"\n    },\n    {\n      \"parameters\": {\"fieldToSplitOut\": \"urls\", \"options\": {}},\n      \"type\": \"n8n-nodes-base.splitOut\",\n      \"typeVersion\": 1,\n      \"position\": [-192, 0],\n      \"id\": \"8878265e-9e6f-4d9a-b533-53100205eb38\",\n      \"name\": \"Split to list\"\n    },\n    {\n      \"parameters\": {\n        \"chunkSize\": 3000,\n        \"chunkOverlap\": 500,\n        \"options\": {}\n      },\n      \"type\": \"@n8n\u002Fn8n-nodes-langchain.textSplitterRecursiveCharacterTextSplitter\",\n      \"typeVersion\": 1,\n      \"position\": [416, 352],\n      \"id\": \"347ba65b-9fad-4b92-a90f-6690df8e2a7e\",\n      \"name\": \"Recursive Character Text Splitter\"\n    },\n    {\n      \"parameters\": {\n        \"url\": \"={{ $json.urls }}\",\n        \"options\": {\"response\": {\"response\": {\"responseFormat\": \"file\"}}}\n      },\n      \"type\": \"n8n-nodes-base.httpRequest\",\n      \"typeVersion\": 4.2,\n      \"position\": [-32, 0],\n      \"id\": \"edf963af-18ee-4605-9b1e-49118c56b52d\",\n      \"name\": \"Download file\"\n    },\n    {\n      \"parameters\": {\n        \"dataType\": \"binary\",\n        \"textSplittingMode\": \"custom\",\n        \"options\": {\n          \"metadata\": {\n            \"metadataValues\": [\n              {\"name\": \"external_file_url\", \"value\": \"={{ $json.urls }}\"}\n            ]\n          }\n        }\n      },\n      \"type\": \"@n8n\u002Fn8n-nodes-langchain.documentDefaultDataLoader\",\n      \"typeVersion\": 1.1,\n      \"position\": [336, 192],\n      \"id\": \"e9b99301-3af1-4d19-ab78-3fd0e8946fd1\",\n      \"name\": \"Default data loader\"\n    }\n  ],\n  \"connections\": {\n    \"Embeddings OpenAI\": {\n      \"ai_embedding\": [[\n        {\"node\": \"Pinecone Vector Store\", \"type\": \"ai_embedding\", \"index\": 0},\n        {\"node\": \"Pinecone Vector Store Tool\", \"type\": \"ai_embedding\", \"index\": 0}\n      ]]\n    },\n    \"When chat message received\": {\n      \"main\": [[{\"node\": \"AI Agent\", \"type\": \"main\", \"index\": 0}]]\n    },\n    \"OpenAI Chat Model\": {\n      \"ai_languageModel\": [[{\"node\": \"AI Agent\", \"type\": \"ai_languageModel\", \"index\": 0}]]\n    },\n    \"Pinecone Vector Store Tool\": {\n      \"ai_tool\": [[{\"node\": \"AI Agent\", \"type\": \"ai_tool\", \"index\": 0}]]\n    },\n    \"When clicking 'Execute workflow'\": {\n      \"main\": [[{\"node\": \"Set file urls\", \"type\": \"main\", \"index\": 0}]]\n    },\n    \"Set file urls\": {\n      \"main\": [[{\"node\": \"Split to list\", \"type\": \"main\", \"index\": 0}]]\n    },\n    \"Split to list\": {\n      \"main\": [[{\"node\": \"Download file\", \"type\": \"main\", \"index\": 0}]]\n    },\n    \"Recursive Character Text Splitter\": {\n      \"ai_textSplitter\": [[{\"node\": \"Default data loader\", \"type\": \"ai_textSplitter\", \"index\": 0}]]\n    },\n    \"Download file\": {\n      \"main\": [[{\"node\": \"Pinecone Vector Store\", \"type\": \"main\", \"index\": 0}]]\n    },\n    \"Default data loader\": {\n      \"ai_document\": [[{\"node\": \"Pinecone Vector Store\", \"type\": \"ai_document\", \"index\": 0}]]\n    }\n  },\n  \"pinData\": {},\n  \"meta\": {\"templateCredsSetupCompleted\": false}\n}\n",[8475],{"type":46,"tag":77,"props":8476,"children":8477},{"__ignoreMap":357},[8478,8485,8508,8515,8538,8573,8596,8619,8654,8689,8721,8728,8751,8758,8793,8820,8860,8896,8927,8934,8941,8964,9013,9020,9055,9082,9123,9159,9191,9198,9205,9248,9283,9310,9351,9387,9423,9455,9462,9469,9492,9515,9547,9554,9561,9596,9623,9663,9699,9730,9737,9744,9767,9790,9813,9848,9883,9914,9921,9944,9951,9986,10013,10053,10089,10120,10127,10134,10157,10192,10227,10250,10273,10308,10343,10374,10381,10409,10432,10439,10474,10501,10541,10577,10609,10616,10623,10646,10682,10710,10738,10761,10768,10803,10844,10871,10907,10939,10946,10953,10976,11011,11039,11066,11089,11096,11131,11170,11197,11233,11264,11271,11278,11301,11336,11363,11402,11438,11469,11476,11483,11506,11529,11552,11559,11594,11629,11664,11695,11702,11709,11716,11739,11746,11781,11808,11848,11884,11915,11922,11929,12004,12039,12066,12106,12142,12173,12180,12187,12210,12239,12268,12291,12298,12333,12360,12401,12437,12469,12476,12484,12508,12544,12640,12648,12684,12712,12753,12790,12822,12830,12838,12862,12900,12938,12962,12986,13011,13084,13093,13102,13110,13118,13154,13183,13224,13261,13294,13302,13310,13334,13358,13383,13480,13576,13585,13593,13617,13729,13737,13761,13873,13881,13905,14017,14025,14049,14161,14169,14193,14305,14313,14337,14449,14457,14481,14594,14602,14626,14738,14746,14770,14883,14891,14899,14923,14967],{"type":46,"tag":425,"props":8479,"children":8480},{"class":427,"line":428},[8481],{"type":46,"tag":425,"props":8482,"children":8483},{"style":432},[8484],{"type":52,"value":700},{"type":46,"tag":425,"props":8486,"children":8487},{"class":427,"line":27},[8488,8492,8496,8500,8504],{"type":46,"tag":425,"props":8489,"children":8490},{"style":432},[8491],{"type":52,"value":708},{"type":46,"tag":425,"props":8493,"children":8494},{"style":443},[8495],{"type":52,"value":1231},{"type":46,"tag":425,"props":8497,"children":8498},{"style":432},[8499],{"type":52,"value":440},{"type":46,"tag":425,"props":8501,"children":8502},{"style":432},[8503],{"type":52,"value":369},{"type":46,"tag":425,"props":8505,"children":8506},{"style":432},[8507],{"type":52,"value":1244},{"type":46,"tag":425,"props":8509,"children":8510},{"class":427,"line":822},[8511],{"type":46,"tag":425,"props":8512,"children":8513},{"style":432},[8514],{"type":52,"value":1252},{"type":46,"tag":425,"props":8516,"children":8517},{"class":427,"line":1255},[8518,8522,8526,8530,8534],{"type":46,"tag":425,"props":8519,"children":8520},{"style":432},[8521],{"type":52,"value":1261},{"type":46,"tag":425,"props":8523,"children":8524},{"style":733},[8525],{"type":52,"value":1266},{"type":46,"tag":425,"props":8527,"children":8528},{"style":432},[8529],{"type":52,"value":440},{"type":46,"tag":425,"props":8531,"children":8532},{"style":432},[8533],{"type":52,"value":369},{"type":46,"tag":425,"props":8535,"children":8536},{"style":432},[8537],{"type":52,"value":1279},{"type":46,"tag":425,"props":8539,"children":8540},{"class":427,"line":1282},[8541,8545,8549,8553,8557,8561,8565,8569],{"type":46,"tag":425,"props":8542,"children":8543},{"style":432},[8544],{"type":52,"value":1288},{"type":46,"tag":425,"props":8546,"children":8547},{"style":756},[8548],{"type":52,"value":1641},{"type":46,"tag":425,"props":8550,"children":8551},{"style":432},[8552],{"type":52,"value":440},{"type":46,"tag":425,"props":8554,"children":8555},{"style":432},[8556],{"type":52,"value":369},{"type":46,"tag":425,"props":8558,"children":8559},{"style":432},[8560],{"type":52,"value":458},{"type":46,"tag":425,"props":8562,"children":8563},{"style":461},[8564],{"type":52,"value":8092},{"type":46,"tag":425,"props":8566,"children":8567},{"style":432},[8568],{"type":52,"value":440},{"type":46,"tag":425,"props":8570,"children":8571},{"style":432},[8572],{"type":52,"value":1399},{"type":46,"tag":425,"props":8574,"children":8575},{"class":427,"line":1308},[8576,8580,8584,8588,8592],{"type":46,"tag":425,"props":8577,"children":8578},{"style":432},[8579],{"type":52,"value":1288},{"type":46,"tag":425,"props":8581,"children":8582},{"style":756},[8583],{"type":52,"value":8314},{"type":46,"tag":425,"props":8585,"children":8586},{"style":432},[8587],{"type":52,"value":440},{"type":46,"tag":425,"props":8589,"children":8590},{"style":432},[8591],{"type":52,"value":369},{"type":46,"tag":425,"props":8593,"children":8594},{"style":432},[8595],{"type":52,"value":1279},{"type":46,"tag":425,"props":8597,"children":8598},{"class":427,"line":1345},[8599,8603,8607,8611,8615],{"type":46,"tag":425,"props":8600,"children":8601},{"style":432},[8602],{"type":52,"value":1314},{"type":46,"tag":425,"props":8604,"children":8605},{"style":1317},[8606],{"type":52,"value":1619},{"type":46,"tag":425,"props":8608,"children":8609},{"style":432},[8610],{"type":52,"value":440},{"type":46,"tag":425,"props":8612,"children":8613},{"style":432},[8614],{"type":52,"value":369},{"type":46,"tag":425,"props":8616,"children":8617},{"style":432},[8618],{"type":52,"value":7752},{"type":46,"tag":425,"props":8620,"children":8621},{"class":427,"line":1354},[8622,8626,8630,8634,8638,8642,8646,8650],{"type":46,"tag":425,"props":8623,"children":8624},{"style":432},[8625],{"type":52,"value":1314},{"type":46,"tag":425,"props":8627,"children":8628},{"style":1317},[8629],{"type":52,"value":793},{"type":46,"tag":425,"props":8631,"children":8632},{"style":432},[8633],{"type":52,"value":440},{"type":46,"tag":425,"props":8635,"children":8636},{"style":432},[8637],{"type":52,"value":369},{"type":46,"tag":425,"props":8639,"children":8640},{"style":432},[8641],{"type":52,"value":458},{"type":46,"tag":425,"props":8643,"children":8644},{"style":461},[8645],{"type":52,"value":8419},{"type":46,"tag":425,"props":8647,"children":8648},{"style":432},[8649],{"type":52,"value":440},{"type":46,"tag":425,"props":8651,"children":8652},{"style":432},[8653],{"type":52,"value":1399},{"type":46,"tag":425,"props":8655,"children":8656},{"class":427,"line":1363},[8657,8661,8665,8669,8673,8677,8681,8685],{"type":46,"tag":425,"props":8658,"children":8659},{"style":432},[8660],{"type":52,"value":1314},{"type":46,"tag":425,"props":8662,"children":8663},{"style":1317},[8664],{"type":52,"value":1641},{"type":46,"tag":425,"props":8666,"children":8667},{"style":432},[8668],{"type":52,"value":440},{"type":46,"tag":425,"props":8670,"children":8671},{"style":432},[8672],{"type":52,"value":369},{"type":46,"tag":425,"props":8674,"children":8675},{"style":432},[8676],{"type":52,"value":458},{"type":46,"tag":425,"props":8678,"children":8679},{"style":461},[8680],{"type":52,"value":1658},{"type":46,"tag":425,"props":8682,"children":8683},{"style":432},[8684],{"type":52,"value":440},{"type":46,"tag":425,"props":8686,"children":8687},{"style":432},[8688],{"type":52,"value":1399},{"type":46,"tag":425,"props":8690,"children":8691},{"class":427,"line":1402},[8692,8696,8701,8705,8709,8713,8717],{"type":46,"tag":425,"props":8693,"children":8694},{"style":432},[8695],{"type":52,"value":1314},{"type":46,"tag":425,"props":8697,"children":8698},{"style":1317},[8699],{"type":52,"value":8700},"cachedResultName",{"type":46,"tag":425,"props":8702,"children":8703},{"style":432},[8704],{"type":52,"value":440},{"type":46,"tag":425,"props":8706,"children":8707},{"style":432},[8708],{"type":52,"value":369},{"type":46,"tag":425,"props":8710,"children":8711},{"style":432},[8712],{"type":52,"value":458},{"type":46,"tag":425,"props":8714,"children":8715},{"style":461},[8716],{"type":52,"value":8419},{"type":46,"tag":425,"props":8718,"children":8719},{"style":432},[8720],{"type":52,"value":1342},{"type":46,"tag":425,"props":8722,"children":8723},{"class":427,"line":1432},[8724],{"type":46,"tag":425,"props":8725,"children":8726},{"style":432},[8727],{"type":52,"value":3365},{"type":46,"tag":425,"props":8729,"children":8730},{"class":427,"line":1477},[8731,8735,8739,8743,8747],{"type":46,"tag":425,"props":8732,"children":8733},{"style":432},[8734],{"type":52,"value":1288},{"type":46,"tag":425,"props":8736,"children":8737},{"style":756},[8738],{"type":52,"value":1293},{"type":46,"tag":425,"props":8740,"children":8741},{"style":432},[8742],{"type":52,"value":440},{"type":46,"tag":425,"props":8744,"children":8745},{"style":432},[8746],{"type":52,"value":369},{"type":46,"tag":425,"props":8748,"children":8749},{"style":432},[8750],{"type":52,"value":1724},{"type":46,"tag":425,"props":8752,"children":8753},{"class":427,"line":1515},[8754],{"type":46,"tag":425,"props":8755,"children":8756},{"style":432},[8757],{"type":52,"value":1360},{"type":46,"tag":425,"props":8759,"children":8760},{"class":427,"line":23},[8761,8765,8769,8773,8777,8781,8785,8789],{"type":46,"tag":425,"props":8762,"children":8763},{"style":432},[8764],{"type":52,"value":1261},{"type":46,"tag":425,"props":8766,"children":8767},{"style":733},[8768],{"type":52,"value":1373},{"type":46,"tag":425,"props":8770,"children":8771},{"style":432},[8772],{"type":52,"value":440},{"type":46,"tag":425,"props":8774,"children":8775},{"style":432},[8776],{"type":52,"value":369},{"type":46,"tag":425,"props":8778,"children":8779},{"style":432},[8780],{"type":52,"value":458},{"type":46,"tag":425,"props":8782,"children":8783},{"style":461},[8784],{"type":52,"value":99},{"type":46,"tag":425,"props":8786,"children":8787},{"style":432},[8788],{"type":52,"value":440},{"type":46,"tag":425,"props":8790,"children":8791},{"style":432},[8792],{"type":52,"value":1399},{"type":46,"tag":425,"props":8794,"children":8795},{"class":427,"line":1556},[8796,8800,8804,8808,8812,8816],{"type":46,"tag":425,"props":8797,"children":8798},{"style":432},[8799],{"type":52,"value":1261},{"type":46,"tag":425,"props":8801,"children":8802},{"style":733},[8803],{"type":52,"value":1412},{"type":46,"tag":425,"props":8805,"children":8806},{"style":432},[8807],{"type":52,"value":440},{"type":46,"tag":425,"props":8809,"children":8810},{"style":432},[8811],{"type":52,"value":369},{"type":46,"tag":425,"props":8813,"children":8814},{"style":756},[8815],{"type":52,"value":2724},{"type":46,"tag":425,"props":8817,"children":8818},{"style":432},[8819],{"type":52,"value":1399},{"type":46,"tag":425,"props":8821,"children":8822},{"class":427,"line":1564},[8823,8827,8831,8835,8839,8843,8848,8852,8856],{"type":46,"tag":425,"props":8824,"children":8825},{"style":432},[8826],{"type":52,"value":1261},{"type":46,"tag":425,"props":8828,"children":8829},{"style":733},[8830],{"type":52,"value":1442},{"type":46,"tag":425,"props":8832,"children":8833},{"style":432},[8834],{"type":52,"value":440},{"type":46,"tag":425,"props":8836,"children":8837},{"style":432},[8838],{"type":52,"value":369},{"type":46,"tag":425,"props":8840,"children":8841},{"style":432},[8842],{"type":52,"value":1455},{"type":46,"tag":425,"props":8844,"children":8845},{"style":756},[8846],{"type":52,"value":8847},"224",{"type":46,"tag":425,"props":8849,"children":8850},{"style":432},[8851],{"type":52,"value":473},{"type":46,"tag":425,"props":8853,"children":8854},{"style":756},[8855],{"type":52,"value":5262},{"type":46,"tag":425,"props":8857,"children":8858},{"style":432},[8859],{"type":52,"value":1474},{"type":46,"tag":425,"props":8861,"children":8862},{"class":427,"line":1588},[8863,8867,8871,8875,8879,8883,8888,8892],{"type":46,"tag":425,"props":8864,"children":8865},{"style":432},[8866],{"type":52,"value":1261},{"type":46,"tag":425,"props":8868,"children":8869},{"style":733},[8870],{"type":52,"value":1487},{"type":46,"tag":425,"props":8872,"children":8873},{"style":432},[8874],{"type":52,"value":440},{"type":46,"tag":425,"props":8876,"children":8877},{"style":432},[8878],{"type":52,"value":369},{"type":46,"tag":425,"props":8880,"children":8881},{"style":432},[8882],{"type":52,"value":458},{"type":46,"tag":425,"props":8884,"children":8885},{"style":461},[8886],{"type":52,"value":8887},"163c0a37-427c-4da7-a194-203ac216c88e",{"type":46,"tag":425,"props":8889,"children":8890},{"style":432},[8891],{"type":52,"value":440},{"type":46,"tag":425,"props":8893,"children":8894},{"style":432},[8895],{"type":52,"value":1399},{"type":46,"tag":425,"props":8897,"children":8898},{"class":427,"line":1702},[8899,8903,8907,8911,8915,8919,8923],{"type":46,"tag":425,"props":8900,"children":8901},{"style":432},[8902],{"type":52,"value":1261},{"type":46,"tag":425,"props":8904,"children":8905},{"style":733},[8906],{"type":52,"value":404},{"type":46,"tag":425,"props":8908,"children":8909},{"style":432},[8910],{"type":52,"value":440},{"type":46,"tag":425,"props":8912,"children":8913},{"style":432},[8914],{"type":52,"value":369},{"type":46,"tag":425,"props":8916,"children":8917},{"style":432},[8918],{"type":52,"value":458},{"type":46,"tag":425,"props":8920,"children":8921},{"style":461},[8922],{"type":52,"value":92},{"type":46,"tag":425,"props":8924,"children":8925},{"style":432},[8926],{"type":52,"value":1342},{"type":46,"tag":425,"props":8928,"children":8929},{"class":427,"line":1727},[8930],{"type":46,"tag":425,"props":8931,"children":8932},{"style":432},[8933],{"type":52,"value":1553},{"type":46,"tag":425,"props":8935,"children":8936},{"class":427,"line":1735},[8937],{"type":46,"tag":425,"props":8938,"children":8939},{"style":432},[8940],{"type":52,"value":1252},{"type":46,"tag":425,"props":8942,"children":8943},{"class":427,"line":1772},[8944,8948,8952,8956,8960],{"type":46,"tag":425,"props":8945,"children":8946},{"style":432},[8947],{"type":52,"value":1261},{"type":46,"tag":425,"props":8949,"children":8950},{"style":733},[8951],{"type":52,"value":1266},{"type":46,"tag":425,"props":8953,"children":8954},{"style":432},[8955],{"type":52,"value":440},{"type":46,"tag":425,"props":8957,"children":8958},{"style":432},[8959],{"type":52,"value":369},{"type":46,"tag":425,"props":8961,"children":8962},{"style":432},[8963],{"type":52,"value":1279},{"type":46,"tag":425,"props":8965,"children":8966},{"class":427,"line":1801},[8967,8971,8975,8979,8983,8987,8991,8996,9000,9004,9009],{"type":46,"tag":425,"props":8968,"children":8969},{"style":432},[8970],{"type":52,"value":1288},{"type":46,"tag":425,"props":8972,"children":8973},{"style":756},[8974],{"type":52,"value":1293},{"type":46,"tag":425,"props":8976,"children":8977},{"style":432},[8978],{"type":52,"value":440},{"type":46,"tag":425,"props":8980,"children":8981},{"style":432},[8982],{"type":52,"value":369},{"type":46,"tag":425,"props":8984,"children":8985},{"style":432},[8986],{"type":52,"value":726},{"type":46,"tag":425,"props":8988,"children":8989},{"style":432},[8990],{"type":52,"value":440},{"type":46,"tag":425,"props":8992,"children":8993},{"style":1317},[8994],{"type":52,"value":8995},"dimensions",{"type":46,"tag":425,"props":8997,"children":8998},{"style":432},[8999],{"type":52,"value":440},{"type":46,"tag":425,"props":9001,"children":9002},{"style":432},[9003],{"type":52,"value":369},{"type":46,"tag":425,"props":9005,"children":9006},{"style":756},[9007],{"type":52,"value":9008}," 1536",{"type":46,"tag":425,"props":9010,"children":9011},{"style":432},[9012],{"type":52,"value":507},{"type":46,"tag":425,"props":9014,"children":9015},{"class":427,"line":1843},[9016],{"type":46,"tag":425,"props":9017,"children":9018},{"style":432},[9019],{"type":52,"value":1360},{"type":46,"tag":425,"props":9021,"children":9022},{"class":427,"line":1880},[9023,9027,9031,9035,9039,9043,9047,9051],{"type":46,"tag":425,"props":9024,"children":9025},{"style":432},[9026],{"type":52,"value":1261},{"type":46,"tag":425,"props":9028,"children":9029},{"style":733},[9030],{"type":52,"value":1373},{"type":46,"tag":425,"props":9032,"children":9033},{"style":432},[9034],{"type":52,"value":440},{"type":46,"tag":425,"props":9036,"children":9037},{"style":432},[9038],{"type":52,"value":369},{"type":46,"tag":425,"props":9040,"children":9041},{"style":432},[9042],{"type":52,"value":458},{"type":46,"tag":425,"props":9044,"children":9045},{"style":461},[9046],{"type":52,"value":8141},{"type":46,"tag":425,"props":9048,"children":9049},{"style":432},[9050],{"type":52,"value":440},{"type":46,"tag":425,"props":9052,"children":9053},{"style":432},[9054],{"type":52,"value":1399},{"type":46,"tag":425,"props":9056,"children":9057},{"class":427,"line":1913},[9058,9062,9066,9070,9074,9078],{"type":46,"tag":425,"props":9059,"children":9060},{"style":432},[9061],{"type":52,"value":1261},{"type":46,"tag":425,"props":9063,"children":9064},{"style":733},[9065],{"type":52,"value":1412},{"type":46,"tag":425,"props":9067,"children":9068},{"style":432},[9069],{"type":52,"value":440},{"type":46,"tag":425,"props":9071,"children":9072},{"style":432},[9073],{"type":52,"value":369},{"type":46,"tag":425,"props":9075,"children":9076},{"style":756},[9077],{"type":52,"value":1794},{"type":46,"tag":425,"props":9079,"children":9080},{"style":432},[9081],{"type":52,"value":1399},{"type":46,"tag":425,"props":9083,"children":9084},{"class":427,"line":1921},[9085,9089,9093,9097,9101,9105,9110,9114,9119],{"type":46,"tag":425,"props":9086,"children":9087},{"style":432},[9088],{"type":52,"value":1261},{"type":46,"tag":425,"props":9090,"children":9091},{"style":733},[9092],{"type":52,"value":1442},{"type":46,"tag":425,"props":9094,"children":9095},{"style":432},[9096],{"type":52,"value":440},{"type":46,"tag":425,"props":9098,"children":9099},{"style":432},[9100],{"type":52,"value":369},{"type":46,"tag":425,"props":9102,"children":9103},{"style":432},[9104],{"type":52,"value":1455},{"type":46,"tag":425,"props":9106,"children":9107},{"style":756},[9108],{"type":52,"value":9109},"336",{"type":46,"tag":425,"props":9111,"children":9112},{"style":432},[9113],{"type":52,"value":473},{"type":46,"tag":425,"props":9115,"children":9116},{"style":756},[9117],{"type":52,"value":9118}," 608",{"type":46,"tag":425,"props":9120,"children":9121},{"style":432},[9122],{"type":52,"value":1474},{"type":46,"tag":425,"props":9124,"children":9125},{"class":427,"line":1929},[9126,9130,9134,9138,9142,9146,9151,9155],{"type":46,"tag":425,"props":9127,"children":9128},{"style":432},[9129],{"type":52,"value":1261},{"type":46,"tag":425,"props":9131,"children":9132},{"style":733},[9133],{"type":52,"value":1487},{"type":46,"tag":425,"props":9135,"children":9136},{"style":432},[9137],{"type":52,"value":440},{"type":46,"tag":425,"props":9139,"children":9140},{"style":432},[9141],{"type":52,"value":369},{"type":46,"tag":425,"props":9143,"children":9144},{"style":432},[9145],{"type":52,"value":458},{"type":46,"tag":425,"props":9147,"children":9148},{"style":461},[9149],{"type":52,"value":9150},"a034bcb9-d813-4fd0-a68a-426c1f2b2aba",{"type":46,"tag":425,"props":9152,"children":9153},{"style":432},[9154],{"type":52,"value":440},{"type":46,"tag":425,"props":9156,"children":9157},{"style":432},[9158],{"type":52,"value":1399},{"type":46,"tag":425,"props":9160,"children":9161},{"class":427,"line":1953},[9162,9166,9170,9174,9178,9182,9187],{"type":46,"tag":425,"props":9163,"children":9164},{"style":432},[9165],{"type":52,"value":1261},{"type":46,"tag":425,"props":9167,"children":9168},{"style":733},[9169],{"type":52,"value":404},{"type":46,"tag":425,"props":9171,"children":9172},{"style":432},[9173],{"type":52,"value":440},{"type":46,"tag":425,"props":9175,"children":9176},{"style":432},[9177],{"type":52,"value":369},{"type":46,"tag":425,"props":9179,"children":9180},{"style":432},[9181],{"type":52,"value":458},{"type":46,"tag":425,"props":9183,"children":9184},{"style":461},[9185],{"type":52,"value":9186},"Embeddings OpenAI",{"type":46,"tag":425,"props":9188,"children":9189},{"style":432},[9190],{"type":52,"value":1342},{"type":46,"tag":425,"props":9192,"children":9193},{"class":427,"line":1991},[9194],{"type":46,"tag":425,"props":9195,"children":9196},{"style":432},[9197],{"type":52,"value":1553},{"type":46,"tag":425,"props":9199,"children":9200},{"class":427,"line":2021},[9201],{"type":46,"tag":425,"props":9202,"children":9203},{"style":432},[9204],{"type":52,"value":1252},{"type":46,"tag":425,"props":9206,"children":9207},{"class":427,"line":2051},[9208,9212,9216,9220,9224,9228,9232,9236,9240,9244],{"type":46,"tag":425,"props":9209,"children":9210},{"style":432},[9211],{"type":52,"value":1261},{"type":46,"tag":425,"props":9213,"children":9214},{"style":733},[9215],{"type":52,"value":1266},{"type":46,"tag":425,"props":9217,"children":9218},{"style":432},[9219],{"type":52,"value":440},{"type":46,"tag":425,"props":9221,"children":9222},{"style":432},[9223],{"type":52,"value":369},{"type":46,"tag":425,"props":9225,"children":9226},{"style":432},[9227],{"type":52,"value":726},{"type":46,"tag":425,"props":9229,"children":9230},{"style":432},[9231],{"type":52,"value":440},{"type":46,"tag":425,"props":9233,"children":9234},{"style":756},[9235],{"type":52,"value":1293},{"type":46,"tag":425,"props":9237,"children":9238},{"style":432},[9239],{"type":52,"value":440},{"type":46,"tag":425,"props":9241,"children":9242},{"style":432},[9243],{"type":52,"value":369},{"type":46,"tag":425,"props":9245,"children":9246},{"style":432},[9247],{"type":52,"value":2662},{"type":46,"tag":425,"props":9249,"children":9250},{"class":427,"line":2077},[9251,9255,9259,9263,9267,9271,9275,9279],{"type":46,"tag":425,"props":9252,"children":9253},{"style":432},[9254],{"type":52,"value":1261},{"type":46,"tag":425,"props":9256,"children":9257},{"style":733},[9258],{"type":52,"value":1373},{"type":46,"tag":425,"props":9260,"children":9261},{"style":432},[9262],{"type":52,"value":440},{"type":46,"tag":425,"props":9264,"children":9265},{"style":432},[9266],{"type":52,"value":369},{"type":46,"tag":425,"props":9268,"children":9269},{"style":432},[9270],{"type":52,"value":458},{"type":46,"tag":425,"props":9272,"children":9273},{"style":461},[9274],{"type":52,"value":2691},{"type":46,"tag":425,"props":9276,"children":9277},{"style":432},[9278],{"type":52,"value":440},{"type":46,"tag":425,"props":9280,"children":9281},{"style":432},[9282],{"type":52,"value":1399},{"type":46,"tag":425,"props":9284,"children":9285},{"class":427,"line":2085},[9286,9290,9294,9298,9302,9306],{"type":46,"tag":425,"props":9287,"children":9288},{"style":432},[9289],{"type":52,"value":1261},{"type":46,"tag":425,"props":9291,"children":9292},{"style":733},[9293],{"type":52,"value":1412},{"type":46,"tag":425,"props":9295,"children":9296},{"style":432},[9297],{"type":52,"value":440},{"type":46,"tag":425,"props":9299,"children":9300},{"style":432},[9301],{"type":52,"value":369},{"type":46,"tag":425,"props":9303,"children":9304},{"style":756},[9305],{"type":52,"value":2724},{"type":46,"tag":425,"props":9307,"children":9308},{"style":432},[9309],{"type":52,"value":1399},{"type":46,"tag":425,"props":9311,"children":9312},{"class":427,"line":2122},[9313,9317,9321,9325,9329,9333,9338,9342,9347],{"type":46,"tag":425,"props":9314,"children":9315},{"style":432},[9316],{"type":52,"value":1261},{"type":46,"tag":425,"props":9318,"children":9319},{"style":733},[9320],{"type":52,"value":1442},{"type":46,"tag":425,"props":9322,"children":9323},{"style":432},[9324],{"type":52,"value":440},{"type":46,"tag":425,"props":9326,"children":9327},{"style":432},[9328],{"type":52,"value":369},{"type":46,"tag":425,"props":9330,"children":9331},{"style":432},[9332],{"type":52,"value":1455},{"type":46,"tag":425,"props":9334,"children":9335},{"style":756},[9336],{"type":52,"value":9337},"-512",{"type":46,"tag":425,"props":9339,"children":9340},{"style":432},[9341],{"type":52,"value":473},{"type":46,"tag":425,"props":9343,"children":9344},{"style":756},[9345],{"type":52,"value":9346}," 896",{"type":46,"tag":425,"props":9348,"children":9349},{"style":432},[9350],{"type":52,"value":1474},{"type":46,"tag":425,"props":9352,"children":9353},{"class":427,"line":2164},[9354,9358,9362,9366,9370,9374,9379,9383],{"type":46,"tag":425,"props":9355,"children":9356},{"style":432},[9357],{"type":52,"value":1261},{"type":46,"tag":425,"props":9359,"children":9360},{"style":733},[9361],{"type":52,"value":1487},{"type":46,"tag":425,"props":9363,"children":9364},{"style":432},[9365],{"type":52,"value":440},{"type":46,"tag":425,"props":9367,"children":9368},{"style":432},[9369],{"type":52,"value":369},{"type":46,"tag":425,"props":9371,"children":9372},{"style":432},[9373],{"type":52,"value":458},{"type":46,"tag":425,"props":9375,"children":9376},{"style":461},[9377],{"type":52,"value":9378},"56182cf7-2bda-4513-a2f9-18fb70c718ec",{"type":46,"tag":425,"props":9380,"children":9381},{"style":432},[9382],{"type":52,"value":440},{"type":46,"tag":425,"props":9384,"children":9385},{"style":432},[9386],{"type":52,"value":1399},{"type":46,"tag":425,"props":9388,"children":9389},{"class":427,"line":2193},[9390,9394,9398,9402,9406,9410,9415,9419],{"type":46,"tag":425,"props":9391,"children":9392},{"style":432},[9393],{"type":52,"value":1261},{"type":46,"tag":425,"props":9395,"children":9396},{"style":733},[9397],{"type":52,"value":404},{"type":46,"tag":425,"props":9399,"children":9400},{"style":432},[9401],{"type":52,"value":440},{"type":46,"tag":425,"props":9403,"children":9404},{"style":432},[9405],{"type":52,"value":369},{"type":46,"tag":425,"props":9407,"children":9408},{"style":432},[9409],{"type":52,"value":458},{"type":46,"tag":425,"props":9411,"children":9412},{"style":461},[9413],{"type":52,"value":9414},"When chat message received",{"type":46,"tag":425,"props":9416,"children":9417},{"style":432},[9418],{"type":52,"value":440},{"type":46,"tag":425,"props":9420,"children":9421},{"style":432},[9422],{"type":52,"value":1399},{"type":46,"tag":425,"props":9424,"children":9425},{"class":427,"line":2230},[9426,9430,9434,9438,9442,9446,9451],{"type":46,"tag":425,"props":9427,"children":9428},{"style":432},[9429],{"type":52,"value":1261},{"type":46,"tag":425,"props":9431,"children":9432},{"style":733},[9433],{"type":52,"value":2856},{"type":46,"tag":425,"props":9435,"children":9436},{"style":432},[9437],{"type":52,"value":440},{"type":46,"tag":425,"props":9439,"children":9440},{"style":432},[9441],{"type":52,"value":369},{"type":46,"tag":425,"props":9443,"children":9444},{"style":432},[9445],{"type":52,"value":458},{"type":46,"tag":425,"props":9447,"children":9448},{"style":461},[9449],{"type":52,"value":9450},"30328376-a9e3-4f11-b1eb-2bbaadbea688",{"type":46,"tag":425,"props":9452,"children":9453},{"style":432},[9454],{"type":52,"value":1342},{"type":46,"tag":425,"props":9456,"children":9457},{"class":427,"line":2263},[9458],{"type":46,"tag":425,"props":9459,"children":9460},{"style":432},[9461],{"type":52,"value":1553},{"type":46,"tag":425,"props":9463,"children":9464},{"class":427,"line":2271},[9465],{"type":46,"tag":425,"props":9466,"children":9467},{"style":432},[9468],{"type":52,"value":1252},{"type":46,"tag":425,"props":9470,"children":9471},{"class":427,"line":2279},[9472,9476,9480,9484,9488],{"type":46,"tag":425,"props":9473,"children":9474},{"style":432},[9475],{"type":52,"value":1261},{"type":46,"tag":425,"props":9477,"children":9478},{"style":733},[9479],{"type":52,"value":1266},{"type":46,"tag":425,"props":9481,"children":9482},{"style":432},[9483],{"type":52,"value":440},{"type":46,"tag":425,"props":9485,"children":9486},{"style":432},[9487],{"type":52,"value":369},{"type":46,"tag":425,"props":9489,"children":9490},{"style":432},[9491],{"type":52,"value":1279},{"type":46,"tag":425,"props":9493,"children":9494},{"class":427,"line":2303},[9495,9499,9503,9507,9511],{"type":46,"tag":425,"props":9496,"children":9497},{"style":432},[9498],{"type":52,"value":1288},{"type":46,"tag":425,"props":9500,"children":9501},{"style":756},[9502],{"type":52,"value":1293},{"type":46,"tag":425,"props":9504,"children":9505},{"style":432},[9506],{"type":52,"value":440},{"type":46,"tag":425,"props":9508,"children":9509},{"style":432},[9510],{"type":52,"value":369},{"type":46,"tag":425,"props":9512,"children":9513},{"style":432},[9514],{"type":52,"value":1279},{"type":46,"tag":425,"props":9516,"children":9517},{"class":427,"line":2340},[9518,9522,9526,9530,9534,9538,9543],{"type":46,"tag":425,"props":9519,"children":9520},{"style":432},[9521],{"type":52,"value":1314},{"type":46,"tag":425,"props":9523,"children":9524},{"style":1317},[9525],{"type":52,"value":1320},{"type":46,"tag":425,"props":9527,"children":9528},{"style":432},[9529],{"type":52,"value":440},{"type":46,"tag":425,"props":9531,"children":9532},{"style":432},[9533],{"type":52,"value":369},{"type":46,"tag":425,"props":9535,"children":9536},{"style":432},[9537],{"type":52,"value":458},{"type":46,"tag":425,"props":9539,"children":9540},{"style":461},[9541],{"type":52,"value":9542},"You are a helpful assistant. Only use the Pinecone Vector Store Tool to retrieve data about [USER_TOPIC]. Include the file name and file url in citations wherever referenced in output.",{"type":46,"tag":425,"props":9544,"children":9545},{"style":432},[9546],{"type":52,"value":1342},{"type":46,"tag":425,"props":9548,"children":9549},{"class":427,"line":2369},[9550],{"type":46,"tag":425,"props":9551,"children":9552},{"style":432},[9553],{"type":52,"value":1351},{"type":46,"tag":425,"props":9555,"children":9556},{"class":427,"line":2397},[9557],{"type":46,"tag":425,"props":9558,"children":9559},{"style":432},[9560],{"type":52,"value":1360},{"type":46,"tag":425,"props":9562,"children":9563},{"class":427,"line":2421},[9564,9568,9572,9576,9580,9584,9588,9592],{"type":46,"tag":425,"props":9565,"children":9566},{"style":432},[9567],{"type":52,"value":1261},{"type":46,"tag":425,"props":9569,"children":9570},{"style":733},[9571],{"type":52,"value":1373},{"type":46,"tag":425,"props":9573,"children":9574},{"style":432},[9575],{"type":52,"value":440},{"type":46,"tag":425,"props":9577,"children":9578},{"style":432},[9579],{"type":52,"value":369},{"type":46,"tag":425,"props":9581,"children":9582},{"style":432},[9583],{"type":52,"value":458},{"type":46,"tag":425,"props":9585,"children":9586},{"style":461},[9587],{"type":52,"value":1390},{"type":46,"tag":425,"props":9589,"children":9590},{"style":432},[9591],{"type":52,"value":440},{"type":46,"tag":425,"props":9593,"children":9594},{"style":432},[9595],{"type":52,"value":1399},{"type":46,"tag":425,"props":9597,"children":9598},{"class":427,"line":2429},[9599,9603,9607,9611,9615,9619],{"type":46,"tag":425,"props":9600,"children":9601},{"style":432},[9602],{"type":52,"value":1261},{"type":46,"tag":425,"props":9604,"children":9605},{"style":733},[9606],{"type":52,"value":1412},{"type":46,"tag":425,"props":9608,"children":9609},{"style":432},[9610],{"type":52,"value":440},{"type":46,"tag":425,"props":9612,"children":9613},{"style":432},[9614],{"type":52,"value":369},{"type":46,"tag":425,"props":9616,"children":9617},{"style":756},[9618],{"type":52,"value":1425},{"type":46,"tag":425,"props":9620,"children":9621},{"style":432},[9622],{"type":52,"value":1399},{"type":46,"tag":425,"props":9624,"children":9625},{"class":427,"line":2465},[9626,9630,9634,9638,9642,9646,9651,9655,9659],{"type":46,"tag":425,"props":9627,"children":9628},{"style":432},[9629],{"type":52,"value":1261},{"type":46,"tag":425,"props":9631,"children":9632},{"style":733},[9633],{"type":52,"value":1442},{"type":46,"tag":425,"props":9635,"children":9636},{"style":432},[9637],{"type":52,"value":440},{"type":46,"tag":425,"props":9639,"children":9640},{"style":432},[9641],{"type":52,"value":369},{"type":46,"tag":425,"props":9643,"children":9644},{"style":432},[9645],{"type":52,"value":1455},{"type":46,"tag":425,"props":9647,"children":9648},{"style":756},[9649],{"type":52,"value":9650},"-336",{"type":46,"tag":425,"props":9652,"children":9653},{"style":432},[9654],{"type":52,"value":473},{"type":46,"tag":425,"props":9656,"children":9657},{"style":756},[9658],{"type":52,"value":9346},{"type":46,"tag":425,"props":9660,"children":9661},{"style":432},[9662],{"type":52,"value":1474},{"type":46,"tag":425,"props":9664,"children":9665},{"class":427,"line":2506},[9666,9670,9674,9678,9682,9686,9691,9695],{"type":46,"tag":425,"props":9667,"children":9668},{"style":432},[9669],{"type":52,"value":1261},{"type":46,"tag":425,"props":9671,"children":9672},{"style":733},[9673],{"type":52,"value":1487},{"type":46,"tag":425,"props":9675,"children":9676},{"style":432},[9677],{"type":52,"value":440},{"type":46,"tag":425,"props":9679,"children":9680},{"style":432},[9681],{"type":52,"value":369},{"type":46,"tag":425,"props":9683,"children":9684},{"style":432},[9685],{"type":52,"value":458},{"type":46,"tag":425,"props":9687,"children":9688},{"style":461},[9689],{"type":52,"value":9690},"36bb8361-edfd-47ff-aaf1-48f3c31fb1f7",{"type":46,"tag":425,"props":9692,"children":9693},{"style":432},[9694],{"type":52,"value":440},{"type":46,"tag":425,"props":9696,"children":9697},{"style":432},[9698],{"type":52,"value":1399},{"type":46,"tag":425,"props":9700,"children":9701},{"class":427,"line":2534},[9702,9706,9710,9714,9718,9722,9726],{"type":46,"tag":425,"props":9703,"children":9704},{"style":432},[9705],{"type":52,"value":1261},{"type":46,"tag":425,"props":9707,"children":9708},{"style":733},[9709],{"type":52,"value":404},{"type":46,"tag":425,"props":9711,"children":9712},{"style":432},[9713],{"type":52,"value":440},{"type":46,"tag":425,"props":9715,"children":9716},{"style":432},[9717],{"type":52,"value":369},{"type":46,"tag":425,"props":9719,"children":9720},{"style":432},[9721],{"type":52,"value":458},{"type":46,"tag":425,"props":9723,"children":9724},{"style":461},[9725],{"type":52,"value":1541},{"type":46,"tag":425,"props":9727,"children":9728},{"style":432},[9729],{"type":52,"value":1342},{"type":46,"tag":425,"props":9731,"children":9732},{"class":427,"line":2571},[9733],{"type":46,"tag":425,"props":9734,"children":9735},{"style":432},[9736],{"type":52,"value":1553},{"type":46,"tag":425,"props":9738,"children":9739},{"class":427,"line":2604},[9740],{"type":46,"tag":425,"props":9741,"children":9742},{"style":432},[9743],{"type":52,"value":1252},{"type":46,"tag":425,"props":9745,"children":9746},{"class":427,"line":2612},[9747,9751,9755,9759,9763],{"type":46,"tag":425,"props":9748,"children":9749},{"style":432},[9750],{"type":52,"value":1261},{"type":46,"tag":425,"props":9752,"children":9753},{"style":733},[9754],{"type":52,"value":1266},{"type":46,"tag":425,"props":9756,"children":9757},{"style":432},[9758],{"type":52,"value":440},{"type":46,"tag":425,"props":9760,"children":9761},{"style":432},[9762],{"type":52,"value":369},{"type":46,"tag":425,"props":9764,"children":9765},{"style":432},[9766],{"type":52,"value":1279},{"type":46,"tag":425,"props":9768,"children":9769},{"class":427,"line":2620},[9770,9774,9778,9782,9786],{"type":46,"tag":425,"props":9771,"children":9772},{"style":432},[9773],{"type":52,"value":1288},{"type":46,"tag":425,"props":9775,"children":9776},{"style":756},[9777],{"type":52,"value":1598},{"type":46,"tag":425,"props":9779,"children":9780},{"style":432},[9781],{"type":52,"value":440},{"type":46,"tag":425,"props":9783,"children":9784},{"style":432},[9785],{"type":52,"value":369},{"type":46,"tag":425,"props":9787,"children":9788},{"style":432},[9789],{"type":52,"value":1279},{"type":46,"tag":425,"props":9791,"children":9792},{"class":427,"line":2665},[9793,9797,9801,9805,9809],{"type":46,"tag":425,"props":9794,"children":9795},{"style":432},[9796],{"type":52,"value":1314},{"type":46,"tag":425,"props":9798,"children":9799},{"style":1317},[9800],{"type":52,"value":1619},{"type":46,"tag":425,"props":9802,"children":9803},{"style":432},[9804],{"type":52,"value":440},{"type":46,"tag":425,"props":9806,"children":9807},{"style":432},[9808],{"type":52,"value":369},{"type":46,"tag":425,"props":9810,"children":9811},{"style":432},[9812],{"type":52,"value":7752},{"type":46,"tag":425,"props":9814,"children":9815},{"class":427,"line":2702},[9816,9820,9824,9828,9832,9836,9840,9844],{"type":46,"tag":425,"props":9817,"children":9818},{"style":432},[9819],{"type":52,"value":1314},{"type":46,"tag":425,"props":9821,"children":9822},{"style":1317},[9823],{"type":52,"value":793},{"type":46,"tag":425,"props":9825,"children":9826},{"style":432},[9827],{"type":52,"value":440},{"type":46,"tag":425,"props":9829,"children":9830},{"style":432},[9831],{"type":52,"value":369},{"type":46,"tag":425,"props":9833,"children":9834},{"style":432},[9835],{"type":52,"value":458},{"type":46,"tag":425,"props":9837,"children":9838},{"style":461},[9839],{"type":52,"value":1187},{"type":46,"tag":425,"props":9841,"children":9842},{"style":432},[9843],{"type":52,"value":440},{"type":46,"tag":425,"props":9845,"children":9846},{"style":432},[9847],{"type":52,"value":1399},{"type":46,"tag":425,"props":9849,"children":9850},{"class":427,"line":2731},[9851,9855,9859,9863,9867,9871,9875,9879],{"type":46,"tag":425,"props":9852,"children":9853},{"style":432},[9854],{"type":52,"value":1314},{"type":46,"tag":425,"props":9856,"children":9857},{"style":1317},[9858],{"type":52,"value":1641},{"type":46,"tag":425,"props":9860,"children":9861},{"style":432},[9862],{"type":52,"value":440},{"type":46,"tag":425,"props":9864,"children":9865},{"style":432},[9866],{"type":52,"value":369},{"type":46,"tag":425,"props":9868,"children":9869},{"style":432},[9870],{"type":52,"value":458},{"type":46,"tag":425,"props":9872,"children":9873},{"style":461},[9874],{"type":52,"value":1658},{"type":46,"tag":425,"props":9876,"children":9877},{"style":432},[9878],{"type":52,"value":440},{"type":46,"tag":425,"props":9880,"children":9881},{"style":432},[9882],{"type":52,"value":1399},{"type":46,"tag":425,"props":9884,"children":9885},{"class":427,"line":2772},[9886,9890,9894,9898,9902,9906,9910],{"type":46,"tag":425,"props":9887,"children":9888},{"style":432},[9889],{"type":52,"value":1314},{"type":46,"tag":425,"props":9891,"children":9892},{"style":1317},[9893],{"type":52,"value":8700},{"type":46,"tag":425,"props":9895,"children":9896},{"style":432},[9897],{"type":52,"value":440},{"type":46,"tag":425,"props":9899,"children":9900},{"style":432},[9901],{"type":52,"value":369},{"type":46,"tag":425,"props":9903,"children":9904},{"style":432},[9905],{"type":52,"value":458},{"type":46,"tag":425,"props":9907,"children":9908},{"style":461},[9909],{"type":52,"value":1187},{"type":46,"tag":425,"props":9911,"children":9912},{"style":432},[9913],{"type":52,"value":1342},{"type":46,"tag":425,"props":9915,"children":9916},{"class":427,"line":2809},[9917],{"type":46,"tag":425,"props":9918,"children":9919},{"style":432},[9920],{"type":52,"value":3365},{"type":46,"tag":425,"props":9922,"children":9923},{"class":427,"line":2846},[9924,9928,9932,9936,9940],{"type":46,"tag":425,"props":9925,"children":9926},{"style":432},[9927],{"type":52,"value":1288},{"type":46,"tag":425,"props":9929,"children":9930},{"style":756},[9931],{"type":52,"value":1293},{"type":46,"tag":425,"props":9933,"children":9934},{"style":432},[9935],{"type":52,"value":440},{"type":46,"tag":425,"props":9937,"children":9938},{"style":432},[9939],{"type":52,"value":369},{"type":46,"tag":425,"props":9941,"children":9942},{"style":432},[9943],{"type":52,"value":1724},{"type":46,"tag":425,"props":9945,"children":9946},{"class":427,"line":2880},[9947],{"type":46,"tag":425,"props":9948,"children":9949},{"style":432},[9950],{"type":52,"value":1360},{"type":46,"tag":425,"props":9952,"children":9953},{"class":427,"line":2888},[9954,9958,9962,9966,9970,9974,9978,9982],{"type":46,"tag":425,"props":9955,"children":9956},{"style":432},[9957],{"type":52,"value":1261},{"type":46,"tag":425,"props":9959,"children":9960},{"style":733},[9961],{"type":52,"value":1373},{"type":46,"tag":425,"props":9963,"children":9964},{"style":432},[9965],{"type":52,"value":440},{"type":46,"tag":425,"props":9967,"children":9968},{"style":432},[9969],{"type":52,"value":369},{"type":46,"tag":425,"props":9971,"children":9972},{"style":432},[9973],{"type":52,"value":458},{"type":46,"tag":425,"props":9975,"children":9976},{"style":461},[9977],{"type":52,"value":1761},{"type":46,"tag":425,"props":9979,"children":9980},{"style":432},[9981],{"type":52,"value":440},{"type":46,"tag":425,"props":9983,"children":9984},{"style":432},[9985],{"type":52,"value":1399},{"type":46,"tag":425,"props":9987,"children":9988},{"class":427,"line":2896},[9989,9993,9997,10001,10005,10009],{"type":46,"tag":425,"props":9990,"children":9991},{"style":432},[9992],{"type":52,"value":1261},{"type":46,"tag":425,"props":9994,"children":9995},{"style":733},[9996],{"type":52,"value":1412},{"type":46,"tag":425,"props":9998,"children":9999},{"style":432},[10000],{"type":52,"value":440},{"type":46,"tag":425,"props":10002,"children":10003},{"style":432},[10004],{"type":52,"value":369},{"type":46,"tag":425,"props":10006,"children":10007},{"style":756},[10008],{"type":52,"value":1794},{"type":46,"tag":425,"props":10010,"children":10011},{"style":432},[10012],{"type":52,"value":1399},{"type":46,"tag":425,"props":10014,"children":10015},{"class":427,"line":2921},[10016,10020,10024,10028,10032,10036,10040,10044,10049],{"type":46,"tag":425,"props":10017,"children":10018},{"style":432},[10019],{"type":52,"value":1261},{"type":46,"tag":425,"props":10021,"children":10022},{"style":733},[10023],{"type":52,"value":1442},{"type":46,"tag":425,"props":10025,"children":10026},{"style":432},[10027],{"type":52,"value":440},{"type":46,"tag":425,"props":10029,"children":10030},{"style":432},[10031],{"type":52,"value":369},{"type":46,"tag":425,"props":10033,"children":10034},{"style":432},[10035],{"type":52,"value":1455},{"type":46,"tag":425,"props":10037,"children":10038},{"style":756},[10039],{"type":52,"value":9650},{"type":46,"tag":425,"props":10041,"children":10042},{"style":432},[10043],{"type":52,"value":473},{"type":46,"tag":425,"props":10045,"children":10046},{"style":756},[10047],{"type":52,"value":10048}," 1200",{"type":46,"tag":425,"props":10050,"children":10051},{"style":432},[10052],{"type":52,"value":1474},{"type":46,"tag":425,"props":10054,"children":10055},{"class":427,"line":2958},[10056,10060,10064,10068,10072,10076,10081,10085],{"type":46,"tag":425,"props":10057,"children":10058},{"style":432},[10059],{"type":52,"value":1261},{"type":46,"tag":425,"props":10061,"children":10062},{"style":733},[10063],{"type":52,"value":1487},{"type":46,"tag":425,"props":10065,"children":10066},{"style":432},[10067],{"type":52,"value":440},{"type":46,"tag":425,"props":10069,"children":10070},{"style":432},[10071],{"type":52,"value":369},{"type":46,"tag":425,"props":10073,"children":10074},{"style":432},[10075],{"type":52,"value":458},{"type":46,"tag":425,"props":10077,"children":10078},{"style":461},[10079],{"type":52,"value":10080},"22d00f25-44eb-40c1-8dae-b757e4b66690",{"type":46,"tag":425,"props":10082,"children":10083},{"style":432},[10084],{"type":52,"value":440},{"type":46,"tag":425,"props":10086,"children":10087},{"style":432},[10088],{"type":52,"value":1399},{"type":46,"tag":425,"props":10090,"children":10091},{"class":427,"line":2986},[10092,10096,10100,10104,10108,10112,10116],{"type":46,"tag":425,"props":10093,"children":10094},{"style":432},[10095],{"type":52,"value":1261},{"type":46,"tag":425,"props":10097,"children":10098},{"style":733},[10099],{"type":52,"value":404},{"type":46,"tag":425,"props":10101,"children":10102},{"style":432},[10103],{"type":52,"value":440},{"type":46,"tag":425,"props":10105,"children":10106},{"style":432},[10107],{"type":52,"value":369},{"type":46,"tag":425,"props":10109,"children":10110},{"style":432},[10111],{"type":52,"value":458},{"type":46,"tag":425,"props":10113,"children":10114},{"style":461},[10115],{"type":52,"value":1906},{"type":46,"tag":425,"props":10117,"children":10118},{"style":432},[10119],{"type":52,"value":1342},{"type":46,"tag":425,"props":10121,"children":10122},{"class":427,"line":3028},[10123],{"type":46,"tag":425,"props":10124,"children":10125},{"style":432},[10126],{"type":52,"value":1553},{"type":46,"tag":425,"props":10128,"children":10129},{"class":427,"line":3065},[10130],{"type":46,"tag":425,"props":10131,"children":10132},{"style":432},[10133],{"type":52,"value":1252},{"type":46,"tag":425,"props":10135,"children":10136},{"class":427,"line":3098},[10137,10141,10145,10149,10153],{"type":46,"tag":425,"props":10138,"children":10139},{"style":432},[10140],{"type":52,"value":1261},{"type":46,"tag":425,"props":10142,"children":10143},{"style":733},[10144],{"type":52,"value":1266},{"type":46,"tag":425,"props":10146,"children":10147},{"style":432},[10148],{"type":52,"value":440},{"type":46,"tag":425,"props":10150,"children":10151},{"style":432},[10152],{"type":52,"value":369},{"type":46,"tag":425,"props":10154,"children":10155},{"style":432},[10156],{"type":52,"value":1279},{"type":46,"tag":425,"props":10158,"children":10159},{"class":427,"line":3106},[10160,10164,10168,10172,10176,10180,10184,10188],{"type":46,"tag":425,"props":10161,"children":10162},{"style":432},[10163],{"type":52,"value":1288},{"type":46,"tag":425,"props":10165,"children":10166},{"style":756},[10167],{"type":52,"value":1641},{"type":46,"tag":425,"props":10169,"children":10170},{"style":432},[10171],{"type":52,"value":440},{"type":46,"tag":425,"props":10173,"children":10174},{"style":432},[10175],{"type":52,"value":369},{"type":46,"tag":425,"props":10177,"children":10178},{"style":432},[10179],{"type":52,"value":458},{"type":46,"tag":425,"props":10181,"children":10182},{"style":461},[10183],{"type":52,"value":8100},{"type":46,"tag":425,"props":10185,"children":10186},{"style":432},[10187],{"type":52,"value":440},{"type":46,"tag":425,"props":10189,"children":10190},{"style":432},[10191],{"type":52,"value":1399},{"type":46,"tag":425,"props":10193,"children":10194},{"class":427,"line":3114},[10195,10199,10203,10207,10211,10215,10219,10223],{"type":46,"tag":425,"props":10196,"children":10197},{"style":432},[10198],{"type":52,"value":1288},{"type":46,"tag":425,"props":10200,"children":10201},{"style":756},[10202],{"type":52,"value":8186},{"type":46,"tag":425,"props":10204,"children":10205},{"style":432},[10206],{"type":52,"value":440},{"type":46,"tag":425,"props":10208,"children":10209},{"style":432},[10210],{"type":52,"value":369},{"type":46,"tag":425,"props":10212,"children":10213},{"style":432},[10214],{"type":52,"value":458},{"type":46,"tag":425,"props":10216,"children":10217},{"style":461},[10218],{"type":52,"value":8468},{"type":46,"tag":425,"props":10220,"children":10221},{"style":432},[10222],{"type":52,"value":440},{"type":46,"tag":425,"props":10224,"children":10225},{"style":432},[10226],{"type":52,"value":1399},{"type":46,"tag":425,"props":10228,"children":10229},{"class":427,"line":3138},[10230,10234,10238,10242,10246],{"type":46,"tag":425,"props":10231,"children":10232},{"style":432},[10233],{"type":52,"value":1288},{"type":46,"tag":425,"props":10235,"children":10236},{"style":756},[10237],{"type":52,"value":8314},{"type":46,"tag":425,"props":10239,"children":10240},{"style":432},[10241],{"type":52,"value":440},{"type":46,"tag":425,"props":10243,"children":10244},{"style":432},[10245],{"type":52,"value":369},{"type":46,"tag":425,"props":10247,"children":10248},{"style":432},[10249],{"type":52,"value":1279},{"type":46,"tag":425,"props":10251,"children":10252},{"class":427,"line":3163},[10253,10257,10261,10265,10269],{"type":46,"tag":425,"props":10254,"children":10255},{"style":432},[10256],{"type":52,"value":1314},{"type":46,"tag":425,"props":10258,"children":10259},{"style":1317},[10260],{"type":52,"value":1619},{"type":46,"tag":425,"props":10262,"children":10263},{"style":432},[10264],{"type":52,"value":440},{"type":46,"tag":425,"props":10266,"children":10267},{"style":432},[10268],{"type":52,"value":369},{"type":46,"tag":425,"props":10270,"children":10271},{"style":432},[10272],{"type":52,"value":7752},{"type":46,"tag":425,"props":10274,"children":10275},{"class":427,"line":3187},[10276,10280,10284,10288,10292,10296,10300,10304],{"type":46,"tag":425,"props":10277,"children":10278},{"style":432},[10279],{"type":52,"value":1314},{"type":46,"tag":425,"props":10281,"children":10282},{"style":1317},[10283],{"type":52,"value":793},{"type":46,"tag":425,"props":10285,"children":10286},{"style":432},[10287],{"type":52,"value":440},{"type":46,"tag":425,"props":10289,"children":10290},{"style":432},[10291],{"type":52,"value":369},{"type":46,"tag":425,"props":10293,"children":10294},{"style":432},[10295],{"type":52,"value":458},{"type":46,"tag":425,"props":10297,"children":10298},{"style":461},[10299],{"type":52,"value":8419},{"type":46,"tag":425,"props":10301,"children":10302},{"style":432},[10303],{"type":52,"value":440},{"type":46,"tag":425,"props":10305,"children":10306},{"style":432},[10307],{"type":52,"value":1399},{"type":46,"tag":425,"props":10309,"children":10310},{"class":427,"line":3196},[10311,10315,10319,10323,10327,10331,10335,10339],{"type":46,"tag":425,"props":10312,"children":10313},{"style":432},[10314],{"type":52,"value":1314},{"type":46,"tag":425,"props":10316,"children":10317},{"style":1317},[10318],{"type":52,"value":1641},{"type":46,"tag":425,"props":10320,"children":10321},{"style":432},[10322],{"type":52,"value":440},{"type":46,"tag":425,"props":10324,"children":10325},{"style":432},[10326],{"type":52,"value":369},{"type":46,"tag":425,"props":10328,"children":10329},{"style":432},[10330],{"type":52,"value":458},{"type":46,"tag":425,"props":10332,"children":10333},{"style":461},[10334],{"type":52,"value":1658},{"type":46,"tag":425,"props":10336,"children":10337},{"style":432},[10338],{"type":52,"value":440},{"type":46,"tag":425,"props":10340,"children":10341},{"style":432},[10342],{"type":52,"value":1399},{"type":46,"tag":425,"props":10344,"children":10345},{"class":427,"line":3235},[10346,10350,10354,10358,10362,10366,10370],{"type":46,"tag":425,"props":10347,"children":10348},{"style":432},[10349],{"type":52,"value":1314},{"type":46,"tag":425,"props":10351,"children":10352},{"style":1317},[10353],{"type":52,"value":8700},{"type":46,"tag":425,"props":10355,"children":10356},{"style":432},[10357],{"type":52,"value":440},{"type":46,"tag":425,"props":10359,"children":10360},{"style":432},[10361],{"type":52,"value":369},{"type":46,"tag":425,"props":10363,"children":10364},{"style":432},[10365],{"type":52,"value":458},{"type":46,"tag":425,"props":10367,"children":10368},{"style":461},[10369],{"type":52,"value":8419},{"type":46,"tag":425,"props":10371,"children":10372},{"style":432},[10373],{"type":52,"value":1342},{"type":46,"tag":425,"props":10375,"children":10376},{"class":427,"line":3272},[10377],{"type":46,"tag":425,"props":10378,"children":10379},{"style":432},[10380],{"type":52,"value":3365},{"type":46,"tag":425,"props":10382,"children":10383},{"class":427,"line":3308},[10384,10388,10392,10396,10400,10405],{"type":46,"tag":425,"props":10385,"children":10386},{"style":432},[10387],{"type":52,"value":1288},{"type":46,"tag":425,"props":10389,"children":10390},{"style":756},[10391],{"type":52,"value":7788},{"type":46,"tag":425,"props":10393,"children":10394},{"style":432},[10395],{"type":52,"value":440},{"type":46,"tag":425,"props":10397,"children":10398},{"style":432},[10399],{"type":52,"value":369},{"type":46,"tag":425,"props":10401,"children":10402},{"style":756},[10403],{"type":52,"value":10404}," 20",{"type":46,"tag":425,"props":10406,"children":10407},{"style":432},[10408],{"type":52,"value":1399},{"type":46,"tag":425,"props":10410,"children":10411},{"class":427,"line":3341},[10412,10416,10420,10424,10428],{"type":46,"tag":425,"props":10413,"children":10414},{"style":432},[10415],{"type":52,"value":1288},{"type":46,"tag":425,"props":10417,"children":10418},{"style":756},[10419],{"type":52,"value":1293},{"type":46,"tag":425,"props":10421,"children":10422},{"style":432},[10423],{"type":52,"value":440},{"type":46,"tag":425,"props":10425,"children":10426},{"style":432},[10427],{"type":52,"value":369},{"type":46,"tag":425,"props":10429,"children":10430},{"style":432},[10431],{"type":52,"value":1724},{"type":46,"tag":425,"props":10433,"children":10434},{"class":427,"line":3350},[10435],{"type":46,"tag":425,"props":10436,"children":10437},{"style":432},[10438],{"type":52,"value":1360},{"type":46,"tag":425,"props":10440,"children":10441},{"class":427,"line":3359},[10442,10446,10450,10454,10458,10462,10466,10470],{"type":46,"tag":425,"props":10443,"children":10444},{"style":432},[10445],{"type":52,"value":1261},{"type":46,"tag":425,"props":10447,"children":10448},{"style":733},[10449],{"type":52,"value":1373},{"type":46,"tag":425,"props":10451,"children":10452},{"style":432},[10453],{"type":52,"value":440},{"type":46,"tag":425,"props":10455,"children":10456},{"style":432},[10457],{"type":52,"value":369},{"type":46,"tag":425,"props":10459,"children":10460},{"style":432},[10461],{"type":52,"value":458},{"type":46,"tag":425,"props":10463,"children":10464},{"style":461},[10465],{"type":52,"value":99},{"type":46,"tag":425,"props":10467,"children":10468},{"style":432},[10469],{"type":52,"value":440},{"type":46,"tag":425,"props":10471,"children":10472},{"style":432},[10473],{"type":52,"value":1399},{"type":46,"tag":425,"props":10475,"children":10476},{"class":427,"line":3368},[10477,10481,10485,10489,10493,10497],{"type":46,"tag":425,"props":10478,"children":10479},{"style":432},[10480],{"type":52,"value":1261},{"type":46,"tag":425,"props":10482,"children":10483},{"style":733},[10484],{"type":52,"value":1412},{"type":46,"tag":425,"props":10486,"children":10487},{"style":432},[10488],{"type":52,"value":440},{"type":46,"tag":425,"props":10490,"children":10491},{"style":432},[10492],{"type":52,"value":369},{"type":46,"tag":425,"props":10494,"children":10495},{"style":756},[10496],{"type":52,"value":2724},{"type":46,"tag":425,"props":10498,"children":10499},{"style":432},[10500],{"type":52,"value":1399},{"type":46,"tag":425,"props":10502,"children":10503},{"class":427,"line":3392},[10504,10508,10512,10516,10520,10524,10529,10533,10537],{"type":46,"tag":425,"props":10505,"children":10506},{"style":432},[10507],{"type":52,"value":1261},{"type":46,"tag":425,"props":10509,"children":10510},{"style":733},[10511],{"type":52,"value":1442},{"type":46,"tag":425,"props":10513,"children":10514},{"style":432},[10515],{"type":52,"value":440},{"type":46,"tag":425,"props":10517,"children":10518},{"style":432},[10519],{"type":52,"value":369},{"type":46,"tag":425,"props":10521,"children":10522},{"style":432},[10523],{"type":52,"value":1455},{"type":46,"tag":425,"props":10525,"children":10526},{"style":756},[10527],{"type":52,"value":10528},"-16",{"type":46,"tag":425,"props":10530,"children":10531},{"style":432},[10532],{"type":52,"value":473},{"type":46,"tag":425,"props":10534,"children":10535},{"style":756},[10536],{"type":52,"value":2044},{"type":46,"tag":425,"props":10538,"children":10539},{"style":432},[10540],{"type":52,"value":1474},{"type":46,"tag":425,"props":10542,"children":10543},{"class":427,"line":3400},[10544,10548,10552,10556,10560,10564,10569,10573],{"type":46,"tag":425,"props":10545,"children":10546},{"style":432},[10547],{"type":52,"value":1261},{"type":46,"tag":425,"props":10549,"children":10550},{"style":733},[10551],{"type":52,"value":1487},{"type":46,"tag":425,"props":10553,"children":10554},{"style":432},[10555],{"type":52,"value":440},{"type":46,"tag":425,"props":10557,"children":10558},{"style":432},[10559],{"type":52,"value":369},{"type":46,"tag":425,"props":10561,"children":10562},{"style":432},[10563],{"type":52,"value":458},{"type":46,"tag":425,"props":10565,"children":10566},{"style":461},[10567],{"type":52,"value":10568},"15c599b7-93bb-44b7-b95c-190200de2a20",{"type":46,"tag":425,"props":10570,"children":10571},{"style":432},[10572],{"type":52,"value":440},{"type":46,"tag":425,"props":10574,"children":10575},{"style":432},[10576],{"type":52,"value":1399},{"type":46,"tag":425,"props":10578,"children":10579},{"class":427,"line":3437},[10580,10584,10588,10592,10596,10600,10605],{"type":46,"tag":425,"props":10581,"children":10582},{"style":432},[10583],{"type":52,"value":1261},{"type":46,"tag":425,"props":10585,"children":10586},{"style":733},[10587],{"type":52,"value":404},{"type":46,"tag":425,"props":10589,"children":10590},{"style":432},[10591],{"type":52,"value":440},{"type":46,"tag":425,"props":10593,"children":10594},{"style":432},[10595],{"type":52,"value":369},{"type":46,"tag":425,"props":10597,"children":10598},{"style":432},[10599],{"type":52,"value":458},{"type":46,"tag":425,"props":10601,"children":10602},{"style":461},[10603],{"type":52,"value":10604},"Pinecone Vector Store Tool",{"type":46,"tag":425,"props":10606,"children":10607},{"style":432},[10608],{"type":52,"value":1342},{"type":46,"tag":425,"props":10610,"children":10611},{"class":427,"line":3466},[10612],{"type":46,"tag":425,"props":10613,"children":10614},{"style":432},[10615],{"type":52,"value":1553},{"type":46,"tag":425,"props":10617,"children":10618},{"class":427,"line":3507},[10619],{"type":46,"tag":425,"props":10620,"children":10621},{"style":432},[10622],{"type":52,"value":1252},{"type":46,"tag":425,"props":10624,"children":10625},{"class":427,"line":3544},[10626,10630,10634,10638,10642],{"type":46,"tag":425,"props":10627,"children":10628},{"style":432},[10629],{"type":52,"value":1261},{"type":46,"tag":425,"props":10631,"children":10632},{"style":733},[10633],{"type":52,"value":1266},{"type":46,"tag":425,"props":10635,"children":10636},{"style":432},[10637],{"type":52,"value":440},{"type":46,"tag":425,"props":10639,"children":10640},{"style":432},[10641],{"type":52,"value":369},{"type":46,"tag":425,"props":10643,"children":10644},{"style":432},[10645],{"type":52,"value":1279},{"type":46,"tag":425,"props":10647,"children":10648},{"class":427,"line":3577},[10649,10653,10657,10661,10665,10669,10674,10678],{"type":46,"tag":425,"props":10650,"children":10651},{"style":432},[10652],{"type":52,"value":1288},{"type":46,"tag":425,"props":10654,"children":10655},{"style":756},[10656],{"type":52,"value":1963},{"type":46,"tag":425,"props":10658,"children":10659},{"style":432},[10660],{"type":52,"value":440},{"type":46,"tag":425,"props":10662,"children":10663},{"style":432},[10664],{"type":52,"value":369},{"type":46,"tag":425,"props":10666,"children":10667},{"style":432},[10668],{"type":52,"value":458},{"type":46,"tag":425,"props":10670,"children":10671},{"style":461},[10672],{"type":52,"value":10673},"## 1. Process new files, embed, and upsert to Pinecone index",{"type":46,"tag":425,"props":10675,"children":10676},{"style":432},[10677],{"type":52,"value":440},{"type":46,"tag":425,"props":10679,"children":10680},{"style":432},[10681],{"type":52,"value":1399},{"type":46,"tag":425,"props":10683,"children":10684},{"class":427,"line":3585},[10685,10689,10693,10697,10701,10706],{"type":46,"tag":425,"props":10686,"children":10687},{"style":432},[10688],{"type":52,"value":1288},{"type":46,"tag":425,"props":10690,"children":10691},{"style":756},[10692],{"type":52,"value":2001},{"type":46,"tag":425,"props":10694,"children":10695},{"style":432},[10696],{"type":52,"value":440},{"type":46,"tag":425,"props":10698,"children":10699},{"style":432},[10700],{"type":52,"value":369},{"type":46,"tag":425,"props":10702,"children":10703},{"style":756},[10704],{"type":52,"value":10705}," 576",{"type":46,"tag":425,"props":10707,"children":10708},{"style":432},[10709],{"type":52,"value":1399},{"type":46,"tag":425,"props":10711,"children":10712},{"class":427,"line":3593},[10713,10717,10721,10725,10729,10734],{"type":46,"tag":425,"props":10714,"children":10715},{"style":432},[10716],{"type":52,"value":1288},{"type":46,"tag":425,"props":10718,"children":10719},{"style":756},[10720],{"type":52,"value":2031},{"type":46,"tag":425,"props":10722,"children":10723},{"style":432},[10724],{"type":52,"value":440},{"type":46,"tag":425,"props":10726,"children":10727},{"style":432},[10728],{"type":52,"value":369},{"type":46,"tag":425,"props":10730,"children":10731},{"style":756},[10732],{"type":52,"value":10733}," 1744",{"type":46,"tag":425,"props":10735,"children":10736},{"style":432},[10737],{"type":52,"value":1399},{"type":46,"tag":425,"props":10739,"children":10740},{"class":427,"line":3670},[10741,10745,10749,10753,10757],{"type":46,"tag":425,"props":10742,"children":10743},{"style":432},[10744],{"type":52,"value":1288},{"type":46,"tag":425,"props":10746,"children":10747},{"style":756},[10748],{"type":52,"value":2061},{"type":46,"tag":425,"props":10750,"children":10751},{"style":432},[10752],{"type":52,"value":440},{"type":46,"tag":425,"props":10754,"children":10755},{"style":432},[10756],{"type":52,"value":369},{"type":46,"tag":425,"props":10758,"children":10759},{"style":756},[10760],{"type":52,"value":2074},{"type":46,"tag":425,"props":10762,"children":10763},{"class":427,"line":3707},[10764],{"type":46,"tag":425,"props":10765,"children":10766},{"style":432},[10767],{"type":52,"value":1360},{"type":46,"tag":425,"props":10769,"children":10770},{"class":427,"line":3735},[10771,10775,10779,10783,10787,10791,10795,10799],{"type":46,"tag":425,"props":10772,"children":10773},{"style":432},[10774],{"type":52,"value":1261},{"type":46,"tag":425,"props":10776,"children":10777},{"style":733},[10778],{"type":52,"value":1373},{"type":46,"tag":425,"props":10780,"children":10781},{"style":432},[10782],{"type":52,"value":440},{"type":46,"tag":425,"props":10784,"children":10785},{"style":432},[10786],{"type":52,"value":369},{"type":46,"tag":425,"props":10788,"children":10789},{"style":432},[10790],{"type":52,"value":458},{"type":46,"tag":425,"props":10792,"children":10793},{"style":461},[10794],{"type":52,"value":2111},{"type":46,"tag":425,"props":10796,"children":10797},{"style":432},[10798],{"type":52,"value":440},{"type":46,"tag":425,"props":10800,"children":10801},{"style":432},[10802],{"type":52,"value":1399},{"type":46,"tag":425,"props":10804,"children":10805},{"class":427,"line":3776},[10806,10810,10814,10818,10822,10826,10831,10835,10840],{"type":46,"tag":425,"props":10807,"children":10808},{"style":432},[10809],{"type":52,"value":1261},{"type":46,"tag":425,"props":10811,"children":10812},{"style":733},[10813],{"type":52,"value":1442},{"type":46,"tag":425,"props":10815,"children":10816},{"style":432},[10817],{"type":52,"value":440},{"type":46,"tag":425,"props":10819,"children":10820},{"style":432},[10821],{"type":52,"value":369},{"type":46,"tag":425,"props":10823,"children":10824},{"style":432},[10825],{"type":52,"value":1455},{"type":46,"tag":425,"props":10827,"children":10828},{"style":756},[10829],{"type":52,"value":10830},"-608",{"type":46,"tag":425,"props":10832,"children":10833},{"style":432},[10834],{"type":52,"value":473},{"type":46,"tag":425,"props":10836,"children":10837},{"style":756},[10838],{"type":52,"value":10839}," -80",{"type":46,"tag":425,"props":10841,"children":10842},{"style":432},[10843],{"type":52,"value":1474},{"type":46,"tag":425,"props":10845,"children":10846},{"class":427,"line":3813},[10847,10851,10855,10859,10863,10867],{"type":46,"tag":425,"props":10848,"children":10849},{"style":432},[10850],{"type":52,"value":1261},{"type":46,"tag":425,"props":10852,"children":10853},{"style":733},[10854],{"type":52,"value":1412},{"type":46,"tag":425,"props":10856,"children":10857},{"style":432},[10858],{"type":52,"value":440},{"type":46,"tag":425,"props":10860,"children":10861},{"style":432},[10862],{"type":52,"value":369},{"type":46,"tag":425,"props":10864,"children":10865},{"style":756},[10866],{"type":52,"value":2186},{"type":46,"tag":425,"props":10868,"children":10869},{"style":432},[10870],{"type":52,"value":1399},{"type":46,"tag":425,"props":10872,"children":10873},{"class":427,"line":3846},[10874,10878,10882,10886,10890,10894,10899,10903],{"type":46,"tag":425,"props":10875,"children":10876},{"style":432},[10877],{"type":52,"value":1261},{"type":46,"tag":425,"props":10879,"children":10880},{"style":733},[10881],{"type":52,"value":1487},{"type":46,"tag":425,"props":10883,"children":10884},{"style":432},[10885],{"type":52,"value":440},{"type":46,"tag":425,"props":10887,"children":10888},{"style":432},[10889],{"type":52,"value":369},{"type":46,"tag":425,"props":10891,"children":10892},{"style":432},[10893],{"type":52,"value":458},{"type":46,"tag":425,"props":10895,"children":10896},{"style":461},[10897],{"type":52,"value":10898},"18f22d77-fb10-4fa7-b942-2fafd7ca30c3",{"type":46,"tag":425,"props":10900,"children":10901},{"style":432},[10902],{"type":52,"value":440},{"type":46,"tag":425,"props":10904,"children":10905},{"style":432},[10906],{"type":52,"value":1399},{"type":46,"tag":425,"props":10908,"children":10909},{"class":427,"line":3854},[10910,10914,10918,10922,10926,10930,10935],{"type":46,"tag":425,"props":10911,"children":10912},{"style":432},[10913],{"type":52,"value":1261},{"type":46,"tag":425,"props":10915,"children":10916},{"style":733},[10917],{"type":52,"value":404},{"type":46,"tag":425,"props":10919,"children":10920},{"style":432},[10921],{"type":52,"value":440},{"type":46,"tag":425,"props":10923,"children":10924},{"style":432},[10925],{"type":52,"value":369},{"type":46,"tag":425,"props":10927,"children":10928},{"style":432},[10929],{"type":52,"value":458},{"type":46,"tag":425,"props":10931,"children":10932},{"style":461},[10933],{"type":52,"value":10934},"Sticky Note",{"type":46,"tag":425,"props":10936,"children":10937},{"style":432},[10938],{"type":52,"value":1342},{"type":46,"tag":425,"props":10940,"children":10941},{"class":427,"line":3862},[10942],{"type":46,"tag":425,"props":10943,"children":10944},{"style":432},[10945],{"type":52,"value":1553},{"type":46,"tag":425,"props":10947,"children":10948},{"class":427,"line":3886},[10949],{"type":46,"tag":425,"props":10950,"children":10951},{"style":432},[10952],{"type":52,"value":1252},{"type":46,"tag":425,"props":10954,"children":10955},{"class":427,"line":3924},[10956,10960,10964,10968,10972],{"type":46,"tag":425,"props":10957,"children":10958},{"style":432},[10959],{"type":52,"value":1261},{"type":46,"tag":425,"props":10961,"children":10962},{"style":733},[10963],{"type":52,"value":1266},{"type":46,"tag":425,"props":10965,"children":10966},{"style":432},[10967],{"type":52,"value":440},{"type":46,"tag":425,"props":10969,"children":10970},{"style":432},[10971],{"type":52,"value":369},{"type":46,"tag":425,"props":10973,"children":10974},{"style":432},[10975],{"type":52,"value":1279},{"type":46,"tag":425,"props":10977,"children":10978},{"class":427,"line":4025},[10979,10983,10987,10991,10995,10999,11003,11007],{"type":46,"tag":425,"props":10980,"children":10981},{"style":432},[10982],{"type":52,"value":1288},{"type":46,"tag":425,"props":10984,"children":10985},{"style":756},[10986],{"type":52,"value":1963},{"type":46,"tag":425,"props":10988,"children":10989},{"style":432},[10990],{"type":52,"value":440},{"type":46,"tag":425,"props":10992,"children":10993},{"style":432},[10994],{"type":52,"value":369},{"type":46,"tag":425,"props":10996,"children":10997},{"style":432},[10998],{"type":52,"value":458},{"type":46,"tag":425,"props":11000,"children":11001},{"style":461},[11002],{"type":52,"value":2329},{"type":46,"tag":425,"props":11004,"children":11005},{"style":432},[11006],{"type":52,"value":440},{"type":46,"tag":425,"props":11008,"children":11009},{"style":432},[11010],{"type":52,"value":1399},{"type":46,"tag":425,"props":11012,"children":11013},{"class":427,"line":4033},[11014,11018,11022,11026,11030,11035],{"type":46,"tag":425,"props":11015,"children":11016},{"style":432},[11017],{"type":52,"value":1288},{"type":46,"tag":425,"props":11019,"children":11020},{"style":756},[11021],{"type":52,"value":2001},{"type":46,"tag":425,"props":11023,"children":11024},{"style":432},[11025],{"type":52,"value":440},{"type":46,"tag":425,"props":11027,"children":11028},{"style":432},[11029],{"type":52,"value":369},{"type":46,"tag":425,"props":11031,"children":11032},{"style":756},[11033],{"type":52,"value":11034}," 640",{"type":46,"tag":425,"props":11036,"children":11037},{"style":432},[11038],{"type":52,"value":1399},{"type":46,"tag":425,"props":11040,"children":11041},{"class":427,"line":4070},[11042,11046,11050,11054,11058,11062],{"type":46,"tag":425,"props":11043,"children":11044},{"style":432},[11045],{"type":52,"value":1288},{"type":46,"tag":425,"props":11047,"children":11048},{"style":756},[11049],{"type":52,"value":2031},{"type":46,"tag":425,"props":11051,"children":11052},{"style":432},[11053],{"type":52,"value":440},{"type":46,"tag":425,"props":11055,"children":11056},{"style":432},[11057],{"type":52,"value":369},{"type":46,"tag":425,"props":11059,"children":11060},{"style":756},[11061],{"type":52,"value":10733},{"type":46,"tag":425,"props":11063,"children":11064},{"style":432},[11065],{"type":52,"value":1399},{"type":46,"tag":425,"props":11067,"children":11068},{"class":427,"line":4099},[11069,11073,11077,11081,11085],{"type":46,"tag":425,"props":11070,"children":11071},{"style":432},[11072],{"type":52,"value":1288},{"type":46,"tag":425,"props":11074,"children":11075},{"style":756},[11076],{"type":52,"value":2061},{"type":46,"tag":425,"props":11078,"children":11079},{"style":432},[11080],{"type":52,"value":440},{"type":46,"tag":425,"props":11082,"children":11083},{"style":432},[11084],{"type":52,"value":369},{"type":46,"tag":425,"props":11086,"children":11087},{"style":756},[11088],{"type":52,"value":2074},{"type":46,"tag":425,"props":11090,"children":11091},{"class":427,"line":4140},[11092],{"type":46,"tag":425,"props":11093,"children":11094},{"style":432},[11095],{"type":52,"value":1360},{"type":46,"tag":425,"props":11097,"children":11098},{"class":427,"line":4177},[11099,11103,11107,11111,11115,11119,11123,11127],{"type":46,"tag":425,"props":11100,"children":11101},{"style":432},[11102],{"type":52,"value":1261},{"type":46,"tag":425,"props":11104,"children":11105},{"style":733},[11106],{"type":52,"value":1373},{"type":46,"tag":425,"props":11108,"children":11109},{"style":432},[11110],{"type":52,"value":440},{"type":46,"tag":425,"props":11112,"children":11113},{"style":432},[11114],{"type":52,"value":369},{"type":46,"tag":425,"props":11116,"children":11117},{"style":432},[11118],{"type":52,"value":458},{"type":46,"tag":425,"props":11120,"children":11121},{"style":461},[11122],{"type":52,"value":2111},{"type":46,"tag":425,"props":11124,"children":11125},{"style":432},[11126],{"type":52,"value":440},{"type":46,"tag":425,"props":11128,"children":11129},{"style":432},[11130],{"type":52,"value":1399},{"type":46,"tag":425,"props":11132,"children":11133},{"class":427,"line":4210},[11134,11138,11142,11146,11150,11154,11158,11162,11166],{"type":46,"tag":425,"props":11135,"children":11136},{"style":432},[11137],{"type":52,"value":1261},{"type":46,"tag":425,"props":11139,"children":11140},{"style":733},[11141],{"type":52,"value":1442},{"type":46,"tag":425,"props":11143,"children":11144},{"style":432},[11145],{"type":52,"value":440},{"type":46,"tag":425,"props":11147,"children":11148},{"style":432},[11149],{"type":52,"value":369},{"type":46,"tag":425,"props":11151,"children":11152},{"style":432},[11153],{"type":52,"value":1455},{"type":46,"tag":425,"props":11155,"children":11156},{"style":756},[11157],{"type":52,"value":10830},{"type":46,"tag":425,"props":11159,"children":11160},{"style":432},[11161],{"type":52,"value":473},{"type":46,"tag":425,"props":11163,"children":11164},{"style":756},[11165],{"type":52,"value":1469},{"type":46,"tag":425,"props":11167,"children":11168},{"style":432},[11169],{"type":52,"value":1474},{"type":46,"tag":425,"props":11171,"children":11172},{"class":427,"line":4218},[11173,11177,11181,11185,11189,11193],{"type":46,"tag":425,"props":11174,"children":11175},{"style":432},[11176],{"type":52,"value":1261},{"type":46,"tag":425,"props":11178,"children":11179},{"style":733},[11180],{"type":52,"value":1412},{"type":46,"tag":425,"props":11182,"children":11183},{"style":432},[11184],{"type":52,"value":440},{"type":46,"tag":425,"props":11186,"children":11187},{"style":432},[11188],{"type":52,"value":369},{"type":46,"tag":425,"props":11190,"children":11191},{"style":756},[11192],{"type":52,"value":2186},{"type":46,"tag":425,"props":11194,"children":11195},{"style":432},[11196],{"type":52,"value":1399},{"type":46,"tag":425,"props":11198,"children":11199},{"class":427,"line":4226},[11200,11204,11208,11212,11216,11220,11225,11229],{"type":46,"tag":425,"props":11201,"children":11202},{"style":432},[11203],{"type":52,"value":1261},{"type":46,"tag":425,"props":11205,"children":11206},{"style":733},[11207],{"type":52,"value":1487},{"type":46,"tag":425,"props":11209,"children":11210},{"style":432},[11211],{"type":52,"value":440},{"type":46,"tag":425,"props":11213,"children":11214},{"style":432},[11215],{"type":52,"value":369},{"type":46,"tag":425,"props":11217,"children":11218},{"style":432},[11219],{"type":52,"value":458},{"type":46,"tag":425,"props":11221,"children":11222},{"style":461},[11223],{"type":52,"value":11224},"7b7be380-821c-4012-8f1a-1606527d2544",{"type":46,"tag":425,"props":11226,"children":11227},{"style":432},[11228],{"type":52,"value":440},{"type":46,"tag":425,"props":11230,"children":11231},{"style":432},[11232],{"type":52,"value":1399},{"type":46,"tag":425,"props":11234,"children":11235},{"class":427,"line":4250},[11236,11240,11244,11248,11252,11256,11260],{"type":46,"tag":425,"props":11237,"children":11238},{"style":432},[11239],{"type":52,"value":1261},{"type":46,"tag":425,"props":11241,"children":11242},{"style":733},[11243],{"type":52,"value":404},{"type":46,"tag":425,"props":11245,"children":11246},{"style":432},[11247],{"type":52,"value":440},{"type":46,"tag":425,"props":11249,"children":11250},{"style":432},[11251],{"type":52,"value":369},{"type":46,"tag":425,"props":11253,"children":11254},{"style":432},[11255],{"type":52,"value":458},{"type":46,"tag":425,"props":11257,"children":11258},{"style":461},[11259],{"type":52,"value":2256},{"type":46,"tag":425,"props":11261,"children":11262},{"style":432},[11263],{"type":52,"value":1342},{"type":46,"tag":425,"props":11265,"children":11266},{"class":427,"line":4287},[11267],{"type":46,"tag":425,"props":11268,"children":11269},{"style":432},[11270],{"type":52,"value":1553},{"type":46,"tag":425,"props":11272,"children":11273},{"class":427,"line":4324},[11274],{"type":46,"tag":425,"props":11275,"children":11276},{"style":432},[11277],{"type":52,"value":1252},{"type":46,"tag":425,"props":11279,"children":11280},{"class":427,"line":4428},[11281,11285,11289,11293,11297],{"type":46,"tag":425,"props":11282,"children":11283},{"style":432},[11284],{"type":52,"value":1261},{"type":46,"tag":425,"props":11286,"children":11287},{"style":733},[11288],{"type":52,"value":1266},{"type":46,"tag":425,"props":11290,"children":11291},{"style":432},[11292],{"type":52,"value":440},{"type":46,"tag":425,"props":11294,"children":11295},{"style":432},[11296],{"type":52,"value":369},{"type":46,"tag":425,"props":11298,"children":11299},{"style":432},[11300],{"type":52,"value":2918},{"type":46,"tag":425,"props":11302,"children":11303},{"class":427,"line":4465},[11304,11308,11312,11316,11320,11324,11328,11332],{"type":46,"tag":425,"props":11305,"children":11306},{"style":432},[11307],{"type":52,"value":1261},{"type":46,"tag":425,"props":11309,"children":11310},{"style":733},[11311],{"type":52,"value":1373},{"type":46,"tag":425,"props":11313,"children":11314},{"style":432},[11315],{"type":52,"value":440},{"type":46,"tag":425,"props":11317,"children":11318},{"style":432},[11319],{"type":52,"value":369},{"type":46,"tag":425,"props":11321,"children":11322},{"style":432},[11323],{"type":52,"value":458},{"type":46,"tag":425,"props":11325,"children":11326},{"style":461},[11327],{"type":52,"value":2947},{"type":46,"tag":425,"props":11329,"children":11330},{"style":432},[11331],{"type":52,"value":440},{"type":46,"tag":425,"props":11333,"children":11334},{"style":432},[11335],{"type":52,"value":1399},{"type":46,"tag":425,"props":11337,"children":11338},{"class":427,"line":4521},[11339,11343,11347,11351,11355,11359],{"type":46,"tag":425,"props":11340,"children":11341},{"style":432},[11342],{"type":52,"value":1261},{"type":46,"tag":425,"props":11344,"children":11345},{"style":733},[11346],{"type":52,"value":1412},{"type":46,"tag":425,"props":11348,"children":11349},{"style":432},[11350],{"type":52,"value":440},{"type":46,"tag":425,"props":11352,"children":11353},{"style":432},[11354],{"type":52,"value":369},{"type":46,"tag":425,"props":11356,"children":11357},{"style":756},[11358],{"type":52,"value":2186},{"type":46,"tag":425,"props":11360,"children":11361},{"style":432},[11362],{"type":52,"value":1399},{"type":46,"tag":425,"props":11364,"children":11365},{"class":427,"line":4529},[11366,11370,11374,11378,11382,11386,11390,11394,11398],{"type":46,"tag":425,"props":11367,"children":11368},{"style":432},[11369],{"type":52,"value":1261},{"type":46,"tag":425,"props":11371,"children":11372},{"style":733},[11373],{"type":52,"value":1442},{"type":46,"tag":425,"props":11375,"children":11376},{"style":432},[11377],{"type":52,"value":440},{"type":46,"tag":425,"props":11379,"children":11380},{"style":432},[11381],{"type":52,"value":369},{"type":46,"tag":425,"props":11383,"children":11384},{"style":432},[11385],{"type":52,"value":1455},{"type":46,"tag":425,"props":11387,"children":11388},{"style":756},[11389],{"type":52,"value":9337},{"type":46,"tag":425,"props":11391,"children":11392},{"style":432},[11393],{"type":52,"value":473},{"type":46,"tag":425,"props":11395,"children":11396},{"style":756},[11397],{"type":52,"value":5262},{"type":46,"tag":425,"props":11399,"children":11400},{"style":432},[11401],{"type":52,"value":1474},{"type":46,"tag":425,"props":11403,"children":11404},{"class":427,"line":4565},[11405,11409,11413,11417,11421,11425,11430,11434],{"type":46,"tag":425,"props":11406,"children":11407},{"style":432},[11408],{"type":52,"value":1261},{"type":46,"tag":425,"props":11410,"children":11411},{"style":733},[11412],{"type":52,"value":1487},{"type":46,"tag":425,"props":11414,"children":11415},{"style":432},[11416],{"type":52,"value":440},{"type":46,"tag":425,"props":11418,"children":11419},{"style":432},[11420],{"type":52,"value":369},{"type":46,"tag":425,"props":11422,"children":11423},{"style":432},[11424],{"type":52,"value":458},{"type":46,"tag":425,"props":11426,"children":11427},{"style":461},[11428],{"type":52,"value":11429},"a0a3b917-765b-445e-9866-d3fc651ef6a8",{"type":46,"tag":425,"props":11431,"children":11432},{"style":432},[11433],{"type":52,"value":440},{"type":46,"tag":425,"props":11435,"children":11436},{"style":432},[11437],{"type":52,"value":1399},{"type":46,"tag":425,"props":11439,"children":11440},{"class":427,"line":4593},[11441,11445,11449,11453,11457,11461,11465],{"type":46,"tag":425,"props":11442,"children":11443},{"style":432},[11444],{"type":52,"value":1261},{"type":46,"tag":425,"props":11446,"children":11447},{"style":733},[11448],{"type":52,"value":404},{"type":46,"tag":425,"props":11450,"children":11451},{"style":432},[11452],{"type":52,"value":440},{"type":46,"tag":425,"props":11454,"children":11455},{"style":432},[11456],{"type":52,"value":369},{"type":46,"tag":425,"props":11458,"children":11459},{"style":432},[11460],{"type":52,"value":458},{"type":46,"tag":425,"props":11462,"children":11463},{"style":461},[11464],{"type":52,"value":3091},{"type":46,"tag":425,"props":11466,"children":11467},{"style":432},[11468],{"type":52,"value":1342},{"type":46,"tag":425,"props":11470,"children":11471},{"class":427,"line":4634},[11472],{"type":46,"tag":425,"props":11473,"children":11474},{"style":432},[11475],{"type":52,"value":1553},{"type":46,"tag":425,"props":11477,"children":11478},{"class":427,"line":4671},[11479],{"type":46,"tag":425,"props":11480,"children":11481},{"style":432},[11482],{"type":52,"value":1252},{"type":46,"tag":425,"props":11484,"children":11485},{"class":427,"line":4704},[11486,11490,11494,11498,11502],{"type":46,"tag":425,"props":11487,"children":11488},{"style":432},[11489],{"type":52,"value":1261},{"type":46,"tag":425,"props":11491,"children":11492},{"style":733},[11493],{"type":52,"value":1266},{"type":46,"tag":425,"props":11495,"children":11496},{"style":432},[11497],{"type":52,"value":440},{"type":46,"tag":425,"props":11499,"children":11500},{"style":432},[11501],{"type":52,"value":369},{"type":46,"tag":425,"props":11503,"children":11504},{"style":432},[11505],{"type":52,"value":1279},{"type":46,"tag":425,"props":11507,"children":11508},{"class":427,"line":4712},[11509,11513,11517,11521,11525],{"type":46,"tag":425,"props":11510,"children":11511},{"style":432},[11512],{"type":52,"value":1288},{"type":46,"tag":425,"props":11514,"children":11515},{"style":756},[11516],{"type":52,"value":3148},{"type":46,"tag":425,"props":11518,"children":11519},{"style":432},[11520],{"type":52,"value":440},{"type":46,"tag":425,"props":11522,"children":11523},{"style":432},[11524],{"type":52,"value":369},{"type":46,"tag":425,"props":11526,"children":11527},{"style":432},[11528],{"type":52,"value":1279},{"type":46,"tag":425,"props":11530,"children":11531},{"class":427,"line":4720},[11532,11536,11540,11544,11548],{"type":46,"tag":425,"props":11533,"children":11534},{"style":432},[11535],{"type":52,"value":1314},{"type":46,"tag":425,"props":11537,"children":11538},{"style":1317},[11539],{"type":52,"value":3148},{"type":46,"tag":425,"props":11541,"children":11542},{"style":432},[11543],{"type":52,"value":440},{"type":46,"tag":425,"props":11545,"children":11546},{"style":432},[11547],{"type":52,"value":369},{"type":46,"tag":425,"props":11549,"children":11550},{"style":432},[11551],{"type":52,"value":1244},{"type":46,"tag":425,"props":11553,"children":11554},{"class":427,"line":4744},[11555],{"type":46,"tag":425,"props":11556,"children":11557},{"style":432},[11558],{"type":52,"value":3193},{"type":46,"tag":425,"props":11560,"children":11561},{"class":427,"line":4844},[11562,11566,11570,11574,11578,11582,11586,11590],{"type":46,"tag":425,"props":11563,"children":11564},{"style":432},[11565],{"type":52,"value":3202},{"type":46,"tag":425,"props":11567,"children":11568},{"style":3205},[11569],{"type":52,"value":1487},{"type":46,"tag":425,"props":11571,"children":11572},{"style":432},[11573],{"type":52,"value":440},{"type":46,"tag":425,"props":11575,"children":11576},{"style":432},[11577],{"type":52,"value":369},{"type":46,"tag":425,"props":11579,"children":11580},{"style":432},[11581],{"type":52,"value":458},{"type":46,"tag":425,"props":11583,"children":11584},{"style":461},[11585],{"type":52,"value":3224},{"type":46,"tag":425,"props":11587,"children":11588},{"style":432},[11589],{"type":52,"value":440},{"type":46,"tag":425,"props":11591,"children":11592},{"style":432},[11593],{"type":52,"value":1399},{"type":46,"tag":425,"props":11595,"children":11596},{"class":427,"line":4900},[11597,11601,11605,11609,11613,11617,11621,11625],{"type":46,"tag":425,"props":11598,"children":11599},{"style":432},[11600],{"type":52,"value":3202},{"type":46,"tag":425,"props":11602,"children":11603},{"style":3205},[11604],{"type":52,"value":404},{"type":46,"tag":425,"props":11606,"children":11607},{"style":432},[11608],{"type":52,"value":440},{"type":46,"tag":425,"props":11610,"children":11611},{"style":432},[11612],{"type":52,"value":369},{"type":46,"tag":425,"props":11614,"children":11615},{"style":432},[11616],{"type":52,"value":458},{"type":46,"tag":425,"props":11618,"children":11619},{"style":461},[11620],{"type":52,"value":3261},{"type":46,"tag":425,"props":11622,"children":11623},{"style":432},[11624],{"type":52,"value":440},{"type":46,"tag":425,"props":11626,"children":11627},{"style":432},[11628],{"type":52,"value":1399},{"type":46,"tag":425,"props":11630,"children":11631},{"class":427,"line":4908},[11632,11636,11640,11644,11648,11652,11656,11660],{"type":46,"tag":425,"props":11633,"children":11634},{"style":432},[11635],{"type":52,"value":3202},{"type":46,"tag":425,"props":11637,"children":11638},{"style":3205},[11639],{"type":52,"value":793},{"type":46,"tag":425,"props":11641,"children":11642},{"style":432},[11643],{"type":52,"value":440},{"type":46,"tag":425,"props":11645,"children":11646},{"style":432},[11647],{"type":52,"value":369},{"type":46,"tag":425,"props":11649,"children":11650},{"style":432},[11651],{"type":52,"value":458},{"type":46,"tag":425,"props":11653,"children":11654},{"style":461},[11655],{"type":52,"value":1170},{"type":46,"tag":425,"props":11657,"children":11658},{"style":432},[11659],{"type":52,"value":440},{"type":46,"tag":425,"props":11661,"children":11662},{"style":432},[11663],{"type":52,"value":1399},{"type":46,"tag":425,"props":11665,"children":11666},{"class":427,"line":4944},[11667,11671,11675,11679,11683,11687,11691],{"type":46,"tag":425,"props":11668,"children":11669},{"style":432},[11670],{"type":52,"value":3202},{"type":46,"tag":425,"props":11672,"children":11673},{"style":3205},[11674],{"type":52,"value":1373},{"type":46,"tag":425,"props":11676,"children":11677},{"style":432},[11678],{"type":52,"value":440},{"type":46,"tag":425,"props":11680,"children":11681},{"style":432},[11682],{"type":52,"value":369},{"type":46,"tag":425,"props":11684,"children":11685},{"style":432},[11686],{"type":52,"value":458},{"type":46,"tag":425,"props":11688,"children":11689},{"style":461},[11690],{"type":52,"value":3334},{"type":46,"tag":425,"props":11692,"children":11693},{"style":432},[11694],{"type":52,"value":1342},{"type":46,"tag":425,"props":11696,"children":11697},{"class":427,"line":4972},[11698],{"type":46,"tag":425,"props":11699,"children":11700},{"style":432},[11701],{"type":52,"value":3347},{"type":46,"tag":425,"props":11703,"children":11704},{"class":427,"line":5014},[11705],{"type":46,"tag":425,"props":11706,"children":11707},{"style":432},[11708],{"type":52,"value":3356},{"type":46,"tag":425,"props":11710,"children":11711},{"class":427,"line":5051},[11712],{"type":46,"tag":425,"props":11713,"children":11714},{"style":432},[11715],{"type":52,"value":3365},{"type":46,"tag":425,"props":11717,"children":11718},{"class":427,"line":5084},[11719,11723,11727,11731,11735],{"type":46,"tag":425,"props":11720,"children":11721},{"style":432},[11722],{"type":52,"value":1288},{"type":46,"tag":425,"props":11724,"children":11725},{"style":756},[11726],{"type":52,"value":1293},{"type":46,"tag":425,"props":11728,"children":11729},{"style":432},[11730],{"type":52,"value":440},{"type":46,"tag":425,"props":11732,"children":11733},{"style":432},[11734],{"type":52,"value":369},{"type":46,"tag":425,"props":11736,"children":11737},{"style":432},[11738],{"type":52,"value":1724},{"type":46,"tag":425,"props":11740,"children":11741},{"class":427,"line":5093},[11742],{"type":46,"tag":425,"props":11743,"children":11744},{"style":432},[11745],{"type":52,"value":1360},{"type":46,"tag":425,"props":11747,"children":11748},{"class":427,"line":5102},[11749,11753,11757,11761,11765,11769,11773,11777],{"type":46,"tag":425,"props":11750,"children":11751},{"style":432},[11752],{"type":52,"value":1261},{"type":46,"tag":425,"props":11754,"children":11755},{"style":733},[11756],{"type":52,"value":1373},{"type":46,"tag":425,"props":11758,"children":11759},{"style":432},[11760],{"type":52,"value":440},{"type":46,"tag":425,"props":11762,"children":11763},{"style":432},[11764],{"type":52,"value":369},{"type":46,"tag":425,"props":11766,"children":11767},{"style":432},[11768],{"type":52,"value":458},{"type":46,"tag":425,"props":11770,"children":11771},{"style":461},[11772],{"type":52,"value":3426},{"type":46,"tag":425,"props":11774,"children":11775},{"style":432},[11776],{"type":52,"value":440},{"type":46,"tag":425,"props":11778,"children":11779},{"style":432},[11780],{"type":52,"value":1399},{"type":46,"tag":425,"props":11782,"children":11783},{"class":427,"line":5127},[11784,11788,11792,11796,11800,11804],{"type":46,"tag":425,"props":11785,"children":11786},{"style":432},[11787],{"type":52,"value":1261},{"type":46,"tag":425,"props":11789,"children":11790},{"style":733},[11791],{"type":52,"value":1412},{"type":46,"tag":425,"props":11793,"children":11794},{"style":432},[11795],{"type":52,"value":440},{"type":46,"tag":425,"props":11797,"children":11798},{"style":432},[11799],{"type":52,"value":369},{"type":46,"tag":425,"props":11801,"children":11802},{"style":756},[11803],{"type":52,"value":3459},{"type":46,"tag":425,"props":11805,"children":11806},{"style":432},[11807],{"type":52,"value":1399},{"type":46,"tag":425,"props":11809,"children":11810},{"class":427,"line":5152},[11811,11815,11819,11823,11827,11831,11836,11840,11844],{"type":46,"tag":425,"props":11812,"children":11813},{"style":432},[11814],{"type":52,"value":1261},{"type":46,"tag":425,"props":11816,"children":11817},{"style":733},[11818],{"type":52,"value":1442},{"type":46,"tag":425,"props":11820,"children":11821},{"style":432},[11822],{"type":52,"value":440},{"type":46,"tag":425,"props":11824,"children":11825},{"style":432},[11826],{"type":52,"value":369},{"type":46,"tag":425,"props":11828,"children":11829},{"style":432},[11830],{"type":52,"value":1455},{"type":46,"tag":425,"props":11832,"children":11833},{"style":756},[11834],{"type":52,"value":11835},"-352",{"type":46,"tag":425,"props":11837,"children":11838},{"style":432},[11839],{"type":52,"value":473},{"type":46,"tag":425,"props":11841,"children":11842},{"style":756},[11843],{"type":52,"value":5262},{"type":46,"tag":425,"props":11845,"children":11846},{"style":432},[11847],{"type":52,"value":1474},{"type":46,"tag":425,"props":11849,"children":11850},{"class":427,"line":5270},[11851,11855,11859,11863,11867,11871,11876,11880],{"type":46,"tag":425,"props":11852,"children":11853},{"style":432},[11854],{"type":52,"value":1261},{"type":46,"tag":425,"props":11856,"children":11857},{"style":733},[11858],{"type":52,"value":1487},{"type":46,"tag":425,"props":11860,"children":11861},{"style":432},[11862],{"type":52,"value":440},{"type":46,"tag":425,"props":11864,"children":11865},{"style":432},[11866],{"type":52,"value":369},{"type":46,"tag":425,"props":11868,"children":11869},{"style":432},[11870],{"type":52,"value":458},{"type":46,"tag":425,"props":11872,"children":11873},{"style":461},[11874],{"type":52,"value":11875},"651439de-5525-4d0a-b055-1d722e81c0aa",{"type":46,"tag":425,"props":11877,"children":11878},{"style":432},[11879],{"type":52,"value":440},{"type":46,"tag":425,"props":11881,"children":11882},{"style":432},[11883],{"type":52,"value":1399},{"type":46,"tag":425,"props":11885,"children":11886},{"class":427,"line":5278},[11887,11891,11895,11899,11903,11907,11911],{"type":46,"tag":425,"props":11888,"children":11889},{"style":432},[11890],{"type":52,"value":1261},{"type":46,"tag":425,"props":11892,"children":11893},{"style":733},[11894],{"type":52,"value":404},{"type":46,"tag":425,"props":11896,"children":11897},{"style":432},[11898],{"type":52,"value":440},{"type":46,"tag":425,"props":11900,"children":11901},{"style":432},[11902],{"type":52,"value":369},{"type":46,"tag":425,"props":11904,"children":11905},{"style":432},[11906],{"type":52,"value":458},{"type":46,"tag":425,"props":11908,"children":11909},{"style":461},[11910],{"type":52,"value":3570},{"type":46,"tag":425,"props":11912,"children":11913},{"style":432},[11914],{"type":52,"value":1342},{"type":46,"tag":425,"props":11916,"children":11917},{"class":427,"line":5302},[11918],{"type":46,"tag":425,"props":11919,"children":11920},{"style":432},[11921],{"type":52,"value":1553},{"type":46,"tag":425,"props":11923,"children":11924},{"class":427,"line":5414},[11925],{"type":46,"tag":425,"props":11926,"children":11927},{"style":432},[11928],{"type":52,"value":1252},{"type":46,"tag":425,"props":11930,"children":11931},{"class":427,"line":5422},[11932,11936,11940,11944,11948,11952,11956,11960,11964,11968,11972,11976,11980,11984,11988,11992,11996,12000],{"type":46,"tag":425,"props":11933,"children":11934},{"style":432},[11935],{"type":52,"value":1261},{"type":46,"tag":425,"props":11937,"children":11938},{"style":733},[11939],{"type":52,"value":1266},{"type":46,"tag":425,"props":11941,"children":11942},{"style":432},[11943],{"type":52,"value":440},{"type":46,"tag":425,"props":11945,"children":11946},{"style":432},[11947],{"type":52,"value":369},{"type":46,"tag":425,"props":11949,"children":11950},{"style":432},[11951],{"type":52,"value":726},{"type":46,"tag":425,"props":11953,"children":11954},{"style":432},[11955],{"type":52,"value":440},{"type":46,"tag":425,"props":11957,"children":11958},{"style":756},[11959],{"type":52,"value":3623},{"type":46,"tag":425,"props":11961,"children":11962},{"style":432},[11963],{"type":52,"value":440},{"type":46,"tag":425,"props":11965,"children":11966},{"style":432},[11967],{"type":52,"value":369},{"type":46,"tag":425,"props":11969,"children":11970},{"style":432},[11971],{"type":52,"value":458},{"type":46,"tag":425,"props":11973,"children":11974},{"style":461},[11975],{"type":52,"value":3261},{"type":46,"tag":425,"props":11977,"children":11978},{"style":432},[11979],{"type":52,"value":440},{"type":46,"tag":425,"props":11981,"children":11982},{"style":432},[11983],{"type":52,"value":473},{"type":46,"tag":425,"props":11985,"children":11986},{"style":432},[11987],{"type":52,"value":458},{"type":46,"tag":425,"props":11989,"children":11990},{"style":756},[11991],{"type":52,"value":1293},{"type":46,"tag":425,"props":11993,"children":11994},{"style":432},[11995],{"type":52,"value":440},{"type":46,"tag":425,"props":11997,"children":11998},{"style":432},[11999],{"type":52,"value":369},{"type":46,"tag":425,"props":12001,"children":12002},{"style":432},[12003],{"type":52,"value":2662},{"type":46,"tag":425,"props":12005,"children":12006},{"class":427,"line":5446},[12007,12011,12015,12019,12023,12027,12031,12035],{"type":46,"tag":425,"props":12008,"children":12009},{"style":432},[12010],{"type":52,"value":1261},{"type":46,"tag":425,"props":12012,"children":12013},{"style":733},[12014],{"type":52,"value":1373},{"type":46,"tag":425,"props":12016,"children":12017},{"style":432},[12018],{"type":52,"value":440},{"type":46,"tag":425,"props":12020,"children":12021},{"style":432},[12022],{"type":52,"value":369},{"type":46,"tag":425,"props":12024,"children":12025},{"style":432},[12026],{"type":52,"value":458},{"type":46,"tag":425,"props":12028,"children":12029},{"style":461},[12030],{"type":52,"value":3696},{"type":46,"tag":425,"props":12032,"children":12033},{"style":432},[12034],{"type":52,"value":440},{"type":46,"tag":425,"props":12036,"children":12037},{"style":432},[12038],{"type":52,"value":1399},{"type":46,"tag":425,"props":12040,"children":12041},{"class":427,"line":5558},[12042,12046,12050,12054,12058,12062],{"type":46,"tag":425,"props":12043,"children":12044},{"style":432},[12045],{"type":52,"value":1261},{"type":46,"tag":425,"props":12047,"children":12048},{"style":733},[12049],{"type":52,"value":1412},{"type":46,"tag":425,"props":12051,"children":12052},{"style":432},[12053],{"type":52,"value":440},{"type":46,"tag":425,"props":12055,"children":12056},{"style":432},[12057],{"type":52,"value":369},{"type":46,"tag":425,"props":12059,"children":12060},{"style":756},[12061],{"type":52,"value":2186},{"type":46,"tag":425,"props":12063,"children":12064},{"style":432},[12065],{"type":52,"value":1399},{"type":46,"tag":425,"props":12067,"children":12068},{"class":427,"line":5566},[12069,12073,12077,12081,12085,12089,12094,12098,12102],{"type":46,"tag":425,"props":12070,"children":12071},{"style":432},[12072],{"type":52,"value":1261},{"type":46,"tag":425,"props":12074,"children":12075},{"style":733},[12076],{"type":52,"value":1442},{"type":46,"tag":425,"props":12078,"children":12079},{"style":432},[12080],{"type":52,"value":440},{"type":46,"tag":425,"props":12082,"children":12083},{"style":432},[12084],{"type":52,"value":369},{"type":46,"tag":425,"props":12086,"children":12087},{"style":432},[12088],{"type":52,"value":1455},{"type":46,"tag":425,"props":12090,"children":12091},{"style":756},[12092],{"type":52,"value":12093},"-192",{"type":46,"tag":425,"props":12095,"children":12096},{"style":432},[12097],{"type":52,"value":473},{"type":46,"tag":425,"props":12099,"children":12100},{"style":756},[12101],{"type":52,"value":5262},{"type":46,"tag":425,"props":12103,"children":12104},{"style":432},[12105],{"type":52,"value":1474},{"type":46,"tag":425,"props":12107,"children":12108},{"class":427,"line":5590},[12109,12113,12117,12121,12125,12129,12134,12138],{"type":46,"tag":425,"props":12110,"children":12111},{"style":432},[12112],{"type":52,"value":1261},{"type":46,"tag":425,"props":12114,"children":12115},{"style":733},[12116],{"type":52,"value":1487},{"type":46,"tag":425,"props":12118,"children":12119},{"style":432},[12120],{"type":52,"value":440},{"type":46,"tag":425,"props":12122,"children":12123},{"style":432},[12124],{"type":52,"value":369},{"type":46,"tag":425,"props":12126,"children":12127},{"style":432},[12128],{"type":52,"value":458},{"type":46,"tag":425,"props":12130,"children":12131},{"style":461},[12132],{"type":52,"value":12133},"8878265e-9e6f-4d9a-b533-53100205eb38",{"type":46,"tag":425,"props":12135,"children":12136},{"style":432},[12137],{"type":52,"value":440},{"type":46,"tag":425,"props":12139,"children":12140},{"style":432},[12141],{"type":52,"value":1399},{"type":46,"tag":425,"props":12143,"children":12144},{"class":427,"line":5702},[12145,12149,12153,12157,12161,12165,12169],{"type":46,"tag":425,"props":12146,"children":12147},{"style":432},[12148],{"type":52,"value":1261},{"type":46,"tag":425,"props":12150,"children":12151},{"style":733},[12152],{"type":52,"value":404},{"type":46,"tag":425,"props":12154,"children":12155},{"style":432},[12156],{"type":52,"value":440},{"type":46,"tag":425,"props":12158,"children":12159},{"style":432},[12160],{"type":52,"value":369},{"type":46,"tag":425,"props":12162,"children":12163},{"style":432},[12164],{"type":52,"value":458},{"type":46,"tag":425,"props":12166,"children":12167},{"style":461},[12168],{"type":52,"value":3839},{"type":46,"tag":425,"props":12170,"children":12171},{"style":432},[12172],{"type":52,"value":1342},{"type":46,"tag":425,"props":12174,"children":12175},{"class":427,"line":5710},[12176],{"type":46,"tag":425,"props":12177,"children":12178},{"style":432},[12179],{"type":52,"value":1553},{"type":46,"tag":425,"props":12181,"children":12182},{"class":427,"line":5734},[12183],{"type":46,"tag":425,"props":12184,"children":12185},{"style":432},[12186],{"type":52,"value":1252},{"type":46,"tag":425,"props":12188,"children":12189},{"class":427,"line":5846},[12190,12194,12198,12202,12206],{"type":46,"tag":425,"props":12191,"children":12192},{"style":432},[12193],{"type":52,"value":1261},{"type":46,"tag":425,"props":12195,"children":12196},{"style":733},[12197],{"type":52,"value":1266},{"type":46,"tag":425,"props":12199,"children":12200},{"style":432},[12201],{"type":52,"value":440},{"type":46,"tag":425,"props":12203,"children":12204},{"style":432},[12205],{"type":52,"value":369},{"type":46,"tag":425,"props":12207,"children":12208},{"style":432},[12209],{"type":52,"value":1279},{"type":46,"tag":425,"props":12211,"children":12212},{"class":427,"line":5854},[12213,12217,12222,12226,12230,12235],{"type":46,"tag":425,"props":12214,"children":12215},{"style":432},[12216],{"type":52,"value":1288},{"type":46,"tag":425,"props":12218,"children":12219},{"style":756},[12220],{"type":52,"value":12221},"chunkSize",{"type":46,"tag":425,"props":12223,"children":12224},{"style":432},[12225],{"type":52,"value":440},{"type":46,"tag":425,"props":12227,"children":12228},{"style":432},[12229],{"type":52,"value":369},{"type":46,"tag":425,"props":12231,"children":12232},{"style":756},[12233],{"type":52,"value":12234}," 3000",{"type":46,"tag":425,"props":12236,"children":12237},{"style":432},[12238],{"type":52,"value":1399},{"type":46,"tag":425,"props":12240,"children":12241},{"class":427,"line":5878},[12242,12246,12251,12255,12259,12264],{"type":46,"tag":425,"props":12243,"children":12244},{"style":432},[12245],{"type":52,"value":1288},{"type":46,"tag":425,"props":12247,"children":12248},{"style":756},[12249],{"type":52,"value":12250},"chunkOverlap",{"type":46,"tag":425,"props":12252,"children":12253},{"style":432},[12254],{"type":52,"value":440},{"type":46,"tag":425,"props":12256,"children":12257},{"style":432},[12258],{"type":52,"value":369},{"type":46,"tag":425,"props":12260,"children":12261},{"style":756},[12262],{"type":52,"value":12263}," 500",{"type":46,"tag":425,"props":12265,"children":12266},{"style":432},[12267],{"type":52,"value":1399},{"type":46,"tag":425,"props":12269,"children":12270},{"class":427,"line":5990},[12271,12275,12279,12283,12287],{"type":46,"tag":425,"props":12272,"children":12273},{"style":432},[12274],{"type":52,"value":1288},{"type":46,"tag":425,"props":12276,"children":12277},{"style":756},[12278],{"type":52,"value":1293},{"type":46,"tag":425,"props":12280,"children":12281},{"style":432},[12282],{"type":52,"value":440},{"type":46,"tag":425,"props":12284,"children":12285},{"style":432},[12286],{"type":52,"value":369},{"type":46,"tag":425,"props":12288,"children":12289},{"style":432},[12290],{"type":52,"value":1724},{"type":46,"tag":425,"props":12292,"children":12293},{"class":427,"line":5998},[12294],{"type":46,"tag":425,"props":12295,"children":12296},{"style":432},[12297],{"type":52,"value":1360},{"type":46,"tag":425,"props":12299,"children":12300},{"class":427,"line":6022},[12301,12305,12309,12313,12317,12321,12325,12329],{"type":46,"tag":425,"props":12302,"children":12303},{"style":432},[12304],{"type":52,"value":1261},{"type":46,"tag":425,"props":12306,"children":12307},{"style":733},[12308],{"type":52,"value":1373},{"type":46,"tag":425,"props":12310,"children":12311},{"style":432},[12312],{"type":52,"value":440},{"type":46,"tag":425,"props":12314,"children":12315},{"style":432},[12316],{"type":52,"value":369},{"type":46,"tag":425,"props":12318,"children":12319},{"style":432},[12320],{"type":52,"value":458},{"type":46,"tag":425,"props":12322,"children":12323},{"style":461},[12324],{"type":52,"value":8152},{"type":46,"tag":425,"props":12326,"children":12327},{"style":432},[12328],{"type":52,"value":440},{"type":46,"tag":425,"props":12330,"children":12331},{"style":432},[12332],{"type":52,"value":1399},{"type":46,"tag":425,"props":12334,"children":12335},{"class":427,"line":6134},[12336,12340,12344,12348,12352,12356],{"type":46,"tag":425,"props":12337,"children":12338},{"style":432},[12339],{"type":52,"value":1261},{"type":46,"tag":425,"props":12341,"children":12342},{"style":733},[12343],{"type":52,"value":1412},{"type":46,"tag":425,"props":12345,"children":12346},{"style":432},[12347],{"type":52,"value":440},{"type":46,"tag":425,"props":12349,"children":12350},{"style":432},[12351],{"type":52,"value":369},{"type":46,"tag":425,"props":12353,"children":12354},{"style":756},[12355],{"type":52,"value":2186},{"type":46,"tag":425,"props":12357,"children":12358},{"style":432},[12359],{"type":52,"value":1399},{"type":46,"tag":425,"props":12361,"children":12362},{"class":427,"line":6142},[12363,12367,12371,12375,12379,12383,12388,12392,12397],{"type":46,"tag":425,"props":12364,"children":12365},{"style":432},[12366],{"type":52,"value":1261},{"type":46,"tag":425,"props":12368,"children":12369},{"style":733},[12370],{"type":52,"value":1442},{"type":46,"tag":425,"props":12372,"children":12373},{"style":432},[12374],{"type":52,"value":440},{"type":46,"tag":425,"props":12376,"children":12377},{"style":432},[12378],{"type":52,"value":369},{"type":46,"tag":425,"props":12380,"children":12381},{"style":432},[12382],{"type":52,"value":1455},{"type":46,"tag":425,"props":12384,"children":12385},{"style":756},[12386],{"type":52,"value":12387},"416",{"type":46,"tag":425,"props":12389,"children":12390},{"style":432},[12391],{"type":52,"value":473},{"type":46,"tag":425,"props":12393,"children":12394},{"style":756},[12395],{"type":52,"value":12396}," 352",{"type":46,"tag":425,"props":12398,"children":12399},{"style":432},[12400],{"type":52,"value":1474},{"type":46,"tag":425,"props":12402,"children":12403},{"class":427,"line":6151},[12404,12408,12412,12416,12420,12424,12429,12433],{"type":46,"tag":425,"props":12405,"children":12406},{"style":432},[12407],{"type":52,"value":1261},{"type":46,"tag":425,"props":12409,"children":12410},{"style":733},[12411],{"type":52,"value":1487},{"type":46,"tag":425,"props":12413,"children":12414},{"style":432},[12415],{"type":52,"value":440},{"type":46,"tag":425,"props":12417,"children":12418},{"style":432},[12419],{"type":52,"value":369},{"type":46,"tag":425,"props":12421,"children":12422},{"style":432},[12423],{"type":52,"value":458},{"type":46,"tag":425,"props":12425,"children":12426},{"style":461},[12427],{"type":52,"value":12428},"347ba65b-9fad-4b92-a90f-6690df8e2a7e",{"type":46,"tag":425,"props":12430,"children":12431},{"style":432},[12432],{"type":52,"value":440},{"type":46,"tag":425,"props":12434,"children":12435},{"style":432},[12436],{"type":52,"value":1399},{"type":46,"tag":425,"props":12438,"children":12439},{"class":427,"line":6176},[12440,12444,12448,12452,12456,12460,12465],{"type":46,"tag":425,"props":12441,"children":12442},{"style":432},[12443],{"type":52,"value":1261},{"type":46,"tag":425,"props":12445,"children":12446},{"style":733},[12447],{"type":52,"value":404},{"type":46,"tag":425,"props":12449,"children":12450},{"style":432},[12451],{"type":52,"value":440},{"type":46,"tag":425,"props":12453,"children":12454},{"style":432},[12455],{"type":52,"value":369},{"type":46,"tag":425,"props":12457,"children":12458},{"style":432},[12459],{"type":52,"value":458},{"type":46,"tag":425,"props":12461,"children":12462},{"style":461},[12463],{"type":52,"value":12464},"Recursive Character Text Splitter",{"type":46,"tag":425,"props":12466,"children":12467},{"style":432},[12468],{"type":52,"value":1342},{"type":46,"tag":425,"props":12470,"children":12471},{"class":427,"line":6223},[12472],{"type":46,"tag":425,"props":12473,"children":12474},{"style":432},[12475],{"type":52,"value":1553},{"type":46,"tag":425,"props":12477,"children":12479},{"class":427,"line":12478},160,[12480],{"type":46,"tag":425,"props":12481,"children":12482},{"style":432},[12483],{"type":52,"value":1252},{"type":46,"tag":425,"props":12485,"children":12487},{"class":427,"line":12486},161,[12488,12492,12496,12500,12504],{"type":46,"tag":425,"props":12489,"children":12490},{"style":432},[12491],{"type":52,"value":1261},{"type":46,"tag":425,"props":12493,"children":12494},{"style":733},[12495],{"type":52,"value":1266},{"type":46,"tag":425,"props":12497,"children":12498},{"style":432},[12499],{"type":52,"value":440},{"type":46,"tag":425,"props":12501,"children":12502},{"style":432},[12503],{"type":52,"value":369},{"type":46,"tag":425,"props":12505,"children":12506},{"style":432},[12507],{"type":52,"value":1279},{"type":46,"tag":425,"props":12509,"children":12511},{"class":427,"line":12510},162,[12512,12516,12520,12524,12528,12532,12536,12540],{"type":46,"tag":425,"props":12513,"children":12514},{"style":432},[12515],{"type":52,"value":1288},{"type":46,"tag":425,"props":12517,"children":12518},{"style":756},[12519],{"type":52,"value":3896},{"type":46,"tag":425,"props":12521,"children":12522},{"style":432},[12523],{"type":52,"value":440},{"type":46,"tag":425,"props":12525,"children":12526},{"style":432},[12527],{"type":52,"value":369},{"type":46,"tag":425,"props":12529,"children":12530},{"style":432},[12531],{"type":52,"value":458},{"type":46,"tag":425,"props":12533,"children":12534},{"style":461},[12535],{"type":52,"value":3913},{"type":46,"tag":425,"props":12537,"children":12538},{"style":432},[12539],{"type":52,"value":440},{"type":46,"tag":425,"props":12541,"children":12542},{"style":432},[12543],{"type":52,"value":1399},{"type":46,"tag":425,"props":12545,"children":12547},{"class":427,"line":12546},163,[12548,12552,12556,12560,12564,12568,12572,12576,12580,12584,12588,12592,12596,12600,12604,12608,12612,12616,12620,12624,12628,12632,12636],{"type":46,"tag":425,"props":12549,"children":12550},{"style":432},[12551],{"type":52,"value":1288},{"type":46,"tag":425,"props":12553,"children":12554},{"style":756},[12555],{"type":52,"value":1293},{"type":46,"tag":425,"props":12557,"children":12558},{"style":432},[12559],{"type":52,"value":440},{"type":46,"tag":425,"props":12561,"children":12562},{"style":432},[12563],{"type":52,"value":369},{"type":46,"tag":425,"props":12565,"children":12566},{"style":432},[12567],{"type":52,"value":726},{"type":46,"tag":425,"props":12569,"children":12570},{"style":432},[12571],{"type":52,"value":440},{"type":46,"tag":425,"props":12573,"children":12574},{"style":1317},[12575],{"type":52,"value":3954},{"type":46,"tag":425,"props":12577,"children":12578},{"style":432},[12579],{"type":52,"value":440},{"type":46,"tag":425,"props":12581,"children":12582},{"style":432},[12583],{"type":52,"value":369},{"type":46,"tag":425,"props":12585,"children":12586},{"style":432},[12587],{"type":52,"value":726},{"type":46,"tag":425,"props":12589,"children":12590},{"style":432},[12591],{"type":52,"value":440},{"type":46,"tag":425,"props":12593,"children":12594},{"style":3205},[12595],{"type":52,"value":3954},{"type":46,"tag":425,"props":12597,"children":12598},{"style":432},[12599],{"type":52,"value":440},{"type":46,"tag":425,"props":12601,"children":12602},{"style":432},[12603],{"type":52,"value":369},{"type":46,"tag":425,"props":12605,"children":12606},{"style":432},[12607],{"type":52,"value":726},{"type":46,"tag":425,"props":12609,"children":12610},{"style":432},[12611],{"type":52,"value":440},{"type":46,"tag":425,"props":12613,"children":12614},{"style":3993},[12615],{"type":52,"value":3996},{"type":46,"tag":425,"props":12617,"children":12618},{"style":432},[12619],{"type":52,"value":440},{"type":46,"tag":425,"props":12621,"children":12622},{"style":432},[12623],{"type":52,"value":369},{"type":46,"tag":425,"props":12625,"children":12626},{"style":432},[12627],{"type":52,"value":458},{"type":46,"tag":425,"props":12629,"children":12630},{"style":461},[12631],{"type":52,"value":4013},{"type":46,"tag":425,"props":12633,"children":12634},{"style":432},[12635],{"type":52,"value":440},{"type":46,"tag":425,"props":12637,"children":12638},{"style":432},[12639],{"type":52,"value":4022},{"type":46,"tag":425,"props":12641,"children":12643},{"class":427,"line":12642},164,[12644],{"type":46,"tag":425,"props":12645,"children":12646},{"style":432},[12647],{"type":52,"value":1360},{"type":46,"tag":425,"props":12649,"children":12651},{"class":427,"line":12650},165,[12652,12656,12660,12664,12668,12672,12676,12680],{"type":46,"tag":425,"props":12653,"children":12654},{"style":432},[12655],{"type":52,"value":1261},{"type":46,"tag":425,"props":12657,"children":12658},{"style":733},[12659],{"type":52,"value":1373},{"type":46,"tag":425,"props":12661,"children":12662},{"style":432},[12663],{"type":52,"value":440},{"type":46,"tag":425,"props":12665,"children":12666},{"style":432},[12667],{"type":52,"value":369},{"type":46,"tag":425,"props":12669,"children":12670},{"style":432},[12671],{"type":52,"value":458},{"type":46,"tag":425,"props":12673,"children":12674},{"style":461},[12675],{"type":52,"value":4059},{"type":46,"tag":425,"props":12677,"children":12678},{"style":432},[12679],{"type":52,"value":440},{"type":46,"tag":425,"props":12681,"children":12682},{"style":432},[12683],{"type":52,"value":1399},{"type":46,"tag":425,"props":12685,"children":12687},{"class":427,"line":12686},166,[12688,12692,12696,12700,12704,12708],{"type":46,"tag":425,"props":12689,"children":12690},{"style":432},[12691],{"type":52,"value":1261},{"type":46,"tag":425,"props":12693,"children":12694},{"style":733},[12695],{"type":52,"value":1412},{"type":46,"tag":425,"props":12697,"children":12698},{"style":432},[12699],{"type":52,"value":440},{"type":46,"tag":425,"props":12701,"children":12702},{"style":432},[12703],{"type":52,"value":369},{"type":46,"tag":425,"props":12705,"children":12706},{"style":756},[12707],{"type":52,"value":4092},{"type":46,"tag":425,"props":12709,"children":12710},{"style":432},[12711],{"type":52,"value":1399},{"type":46,"tag":425,"props":12713,"children":12715},{"class":427,"line":12714},167,[12716,12720,12724,12728,12732,12736,12741,12745,12749],{"type":46,"tag":425,"props":12717,"children":12718},{"style":432},[12719],{"type":52,"value":1261},{"type":46,"tag":425,"props":12721,"children":12722},{"style":733},[12723],{"type":52,"value":1442},{"type":46,"tag":425,"props":12725,"children":12726},{"style":432},[12727],{"type":52,"value":440},{"type":46,"tag":425,"props":12729,"children":12730},{"style":432},[12731],{"type":52,"value":369},{"type":46,"tag":425,"props":12733,"children":12734},{"style":432},[12735],{"type":52,"value":1455},{"type":46,"tag":425,"props":12737,"children":12738},{"style":756},[12739],{"type":52,"value":12740},"-32",{"type":46,"tag":425,"props":12742,"children":12743},{"style":432},[12744],{"type":52,"value":473},{"type":46,"tag":425,"props":12746,"children":12747},{"style":756},[12748],{"type":52,"value":5262},{"type":46,"tag":425,"props":12750,"children":12751},{"style":432},[12752],{"type":52,"value":1474},{"type":46,"tag":425,"props":12754,"children":12756},{"class":427,"line":12755},168,[12757,12761,12765,12769,12773,12777,12782,12786],{"type":46,"tag":425,"props":12758,"children":12759},{"style":432},[12760],{"type":52,"value":1261},{"type":46,"tag":425,"props":12762,"children":12763},{"style":733},[12764],{"type":52,"value":1487},{"type":46,"tag":425,"props":12766,"children":12767},{"style":432},[12768],{"type":52,"value":440},{"type":46,"tag":425,"props":12770,"children":12771},{"style":432},[12772],{"type":52,"value":369},{"type":46,"tag":425,"props":12774,"children":12775},{"style":432},[12776],{"type":52,"value":458},{"type":46,"tag":425,"props":12778,"children":12779},{"style":461},[12780],{"type":52,"value":12781},"edf963af-18ee-4605-9b1e-49118c56b52d",{"type":46,"tag":425,"props":12783,"children":12784},{"style":432},[12785],{"type":52,"value":440},{"type":46,"tag":425,"props":12787,"children":12788},{"style":432},[12789],{"type":52,"value":1399},{"type":46,"tag":425,"props":12791,"children":12793},{"class":427,"line":12792},169,[12794,12798,12802,12806,12810,12814,12818],{"type":46,"tag":425,"props":12795,"children":12796},{"style":432},[12797],{"type":52,"value":1261},{"type":46,"tag":425,"props":12799,"children":12800},{"style":733},[12801],{"type":52,"value":404},{"type":46,"tag":425,"props":12803,"children":12804},{"style":432},[12805],{"type":52,"value":440},{"type":46,"tag":425,"props":12807,"children":12808},{"style":432},[12809],{"type":52,"value":369},{"type":46,"tag":425,"props":12811,"children":12812},{"style":432},[12813],{"type":52,"value":458},{"type":46,"tag":425,"props":12815,"children":12816},{"style":461},[12817],{"type":52,"value":4203},{"type":46,"tag":425,"props":12819,"children":12820},{"style":432},[12821],{"type":52,"value":1342},{"type":46,"tag":425,"props":12823,"children":12825},{"class":427,"line":12824},170,[12826],{"type":46,"tag":425,"props":12827,"children":12828},{"style":432},[12829],{"type":52,"value":1553},{"type":46,"tag":425,"props":12831,"children":12833},{"class":427,"line":12832},171,[12834],{"type":46,"tag":425,"props":12835,"children":12836},{"style":432},[12837],{"type":52,"value":1252},{"type":46,"tag":425,"props":12839,"children":12841},{"class":427,"line":12840},172,[12842,12846,12850,12854,12858],{"type":46,"tag":425,"props":12843,"children":12844},{"style":432},[12845],{"type":52,"value":1261},{"type":46,"tag":425,"props":12847,"children":12848},{"style":733},[12849],{"type":52,"value":1266},{"type":46,"tag":425,"props":12851,"children":12852},{"style":432},[12853],{"type":52,"value":440},{"type":46,"tag":425,"props":12855,"children":12856},{"style":432},[12857],{"type":52,"value":369},{"type":46,"tag":425,"props":12859,"children":12860},{"style":432},[12861],{"type":52,"value":1279},{"type":46,"tag":425,"props":12863,"children":12865},{"class":427,"line":12864},173,[12866,12870,12875,12879,12883,12887,12892,12896],{"type":46,"tag":425,"props":12867,"children":12868},{"style":432},[12869],{"type":52,"value":1288},{"type":46,"tag":425,"props":12871,"children":12872},{"style":756},[12873],{"type":52,"value":12874},"dataType",{"type":46,"tag":425,"props":12876,"children":12877},{"style":432},[12878],{"type":52,"value":440},{"type":46,"tag":425,"props":12880,"children":12881},{"style":432},[12882],{"type":52,"value":369},{"type":46,"tag":425,"props":12884,"children":12885},{"style":432},[12886],{"type":52,"value":458},{"type":46,"tag":425,"props":12888,"children":12889},{"style":461},[12890],{"type":52,"value":12891},"binary",{"type":46,"tag":425,"props":12893,"children":12894},{"style":432},[12895],{"type":52,"value":440},{"type":46,"tag":425,"props":12897,"children":12898},{"style":432},[12899],{"type":52,"value":1399},{"type":46,"tag":425,"props":12901,"children":12903},{"class":427,"line":12902},174,[12904,12908,12913,12917,12921,12925,12930,12934],{"type":46,"tag":425,"props":12905,"children":12906},{"style":432},[12907],{"type":52,"value":1288},{"type":46,"tag":425,"props":12909,"children":12910},{"style":756},[12911],{"type":52,"value":12912},"textSplittingMode",{"type":46,"tag":425,"props":12914,"children":12915},{"style":432},[12916],{"type":52,"value":440},{"type":46,"tag":425,"props":12918,"children":12919},{"style":432},[12920],{"type":52,"value":369},{"type":46,"tag":425,"props":12922,"children":12923},{"style":432},[12924],{"type":52,"value":458},{"type":46,"tag":425,"props":12926,"children":12927},{"style":461},[12928],{"type":52,"value":12929},"custom",{"type":46,"tag":425,"props":12931,"children":12932},{"style":432},[12933],{"type":52,"value":440},{"type":46,"tag":425,"props":12935,"children":12936},{"style":432},[12937],{"type":52,"value":1399},{"type":46,"tag":425,"props":12939,"children":12941},{"class":427,"line":12940},175,[12942,12946,12950,12954,12958],{"type":46,"tag":425,"props":12943,"children":12944},{"style":432},[12945],{"type":52,"value":1288},{"type":46,"tag":425,"props":12947,"children":12948},{"style":756},[12949],{"type":52,"value":1293},{"type":46,"tag":425,"props":12951,"children":12952},{"style":432},[12953],{"type":52,"value":440},{"type":46,"tag":425,"props":12955,"children":12956},{"style":432},[12957],{"type":52,"value":369},{"type":46,"tag":425,"props":12959,"children":12960},{"style":432},[12961],{"type":52,"value":1279},{"type":46,"tag":425,"props":12963,"children":12965},{"class":427,"line":12964},176,[12966,12970,12974,12978,12982],{"type":46,"tag":425,"props":12967,"children":12968},{"style":432},[12969],{"type":52,"value":1314},{"type":46,"tag":425,"props":12971,"children":12972},{"style":1317},[12973],{"type":52,"value":713},{"type":46,"tag":425,"props":12975,"children":12976},{"style":432},[12977],{"type":52,"value":440},{"type":46,"tag":425,"props":12979,"children":12980},{"style":432},[12981],{"type":52,"value":369},{"type":46,"tag":425,"props":12983,"children":12984},{"style":432},[12985],{"type":52,"value":1279},{"type":46,"tag":425,"props":12987,"children":12989},{"class":427,"line":12988},177,[12990,12995,12999,13003,13007],{"type":46,"tag":425,"props":12991,"children":12992},{"style":432},[12993],{"type":52,"value":12994},"            \"",{"type":46,"tag":425,"props":12996,"children":12997},{"style":3205},[12998],{"type":52,"value":736},{"type":46,"tag":425,"props":13000,"children":13001},{"style":432},[13002],{"type":52,"value":440},{"type":46,"tag":425,"props":13004,"children":13005},{"style":432},[13006],{"type":52,"value":369},{"type":46,"tag":425,"props":13008,"children":13009},{"style":432},[13010],{"type":52,"value":1244},{"type":46,"tag":425,"props":13012,"children":13014},{"class":427,"line":13013},178,[13015,13020,13024,13028,13032,13036,13040,13044,13048,13052,13056,13060,13064,13068,13072,13076,13080],{"type":46,"tag":425,"props":13016,"children":13017},{"style":432},[13018],{"type":52,"value":13019},"              {",{"type":46,"tag":425,"props":13021,"children":13022},{"style":432},[13023],{"type":52,"value":440},{"type":46,"tag":425,"props":13025,"children":13026},{"style":3993},[13027],{"type":52,"value":404},{"type":46,"tag":425,"props":13029,"children":13030},{"style":432},[13031],{"type":52,"value":440},{"type":46,"tag":425,"props":13033,"children":13034},{"style":432},[13035],{"type":52,"value":369},{"type":46,"tag":425,"props":13037,"children":13038},{"style":432},[13039],{"type":52,"value":458},{"type":46,"tag":425,"props":13041,"children":13042},{"style":461},[13043],{"type":52,"value":8213},{"type":46,"tag":425,"props":13045,"children":13046},{"style":432},[13047],{"type":52,"value":440},{"type":46,"tag":425,"props":13049,"children":13050},{"style":432},[13051],{"type":52,"value":473},{"type":46,"tag":425,"props":13053,"children":13054},{"style":432},[13055],{"type":52,"value":458},{"type":46,"tag":425,"props":13057,"children":13058},{"style":3993},[13059],{"type":52,"value":793},{"type":46,"tag":425,"props":13061,"children":13062},{"style":432},[13063],{"type":52,"value":440},{"type":46,"tag":425,"props":13065,"children":13066},{"style":432},[13067],{"type":52,"value":369},{"type":46,"tag":425,"props":13069,"children":13070},{"style":432},[13071],{"type":52,"value":458},{"type":46,"tag":425,"props":13073,"children":13074},{"style":461},[13075],{"type":52,"value":3913},{"type":46,"tag":425,"props":13077,"children":13078},{"style":432},[13079],{"type":52,"value":440},{"type":46,"tag":425,"props":13081,"children":13082},{"style":432},[13083],{"type":52,"value":507},{"type":46,"tag":425,"props":13085,"children":13087},{"class":427,"line":13086},179,[13088],{"type":46,"tag":425,"props":13089,"children":13090},{"style":432},[13091],{"type":52,"value":13092},"            ]\n",{"type":46,"tag":425,"props":13094,"children":13096},{"class":427,"line":13095},180,[13097],{"type":46,"tag":425,"props":13098,"children":13099},{"style":432},[13100],{"type":52,"value":13101},"          }\n",{"type":46,"tag":425,"props":13103,"children":13105},{"class":427,"line":13104},181,[13106],{"type":46,"tag":425,"props":13107,"children":13108},{"style":432},[13109],{"type":52,"value":1351},{"type":46,"tag":425,"props":13111,"children":13113},{"class":427,"line":13112},182,[13114],{"type":46,"tag":425,"props":13115,"children":13116},{"style":432},[13117],{"type":52,"value":1360},{"type":46,"tag":425,"props":13119,"children":13121},{"class":427,"line":13120},183,[13122,13126,13130,13134,13138,13142,13146,13150],{"type":46,"tag":425,"props":13123,"children":13124},{"style":432},[13125],{"type":52,"value":1261},{"type":46,"tag":425,"props":13127,"children":13128},{"style":733},[13129],{"type":52,"value":1373},{"type":46,"tag":425,"props":13131,"children":13132},{"style":432},[13133],{"type":52,"value":440},{"type":46,"tag":425,"props":13135,"children":13136},{"style":432},[13137],{"type":52,"value":369},{"type":46,"tag":425,"props":13139,"children":13140},{"style":432},[13141],{"type":52,"value":458},{"type":46,"tag":425,"props":13143,"children":13144},{"style":461},[13145],{"type":52,"value":8163},{"type":46,"tag":425,"props":13147,"children":13148},{"style":432},[13149],{"type":52,"value":440},{"type":46,"tag":425,"props":13151,"children":13152},{"style":432},[13153],{"type":52,"value":1399},{"type":46,"tag":425,"props":13155,"children":13157},{"class":427,"line":13156},184,[13158,13162,13166,13170,13174,13179],{"type":46,"tag":425,"props":13159,"children":13160},{"style":432},[13161],{"type":52,"value":1261},{"type":46,"tag":425,"props":13163,"children":13164},{"style":733},[13165],{"type":52,"value":1412},{"type":46,"tag":425,"props":13167,"children":13168},{"style":432},[13169],{"type":52,"value":440},{"type":46,"tag":425,"props":13171,"children":13172},{"style":432},[13173],{"type":52,"value":369},{"type":46,"tag":425,"props":13175,"children":13176},{"style":756},[13177],{"type":52,"value":13178}," 1.1",{"type":46,"tag":425,"props":13180,"children":13181},{"style":432},[13182],{"type":52,"value":1399},{"type":46,"tag":425,"props":13184,"children":13186},{"class":427,"line":13185},185,[13187,13191,13195,13199,13203,13207,13211,13215,13220],{"type":46,"tag":425,"props":13188,"children":13189},{"style":432},[13190],{"type":52,"value":1261},{"type":46,"tag":425,"props":13192,"children":13193},{"style":733},[13194],{"type":52,"value":1442},{"type":46,"tag":425,"props":13196,"children":13197},{"style":432},[13198],{"type":52,"value":440},{"type":46,"tag":425,"props":13200,"children":13201},{"style":432},[13202],{"type":52,"value":369},{"type":46,"tag":425,"props":13204,"children":13205},{"style":432},[13206],{"type":52,"value":1455},{"type":46,"tag":425,"props":13208,"children":13209},{"style":756},[13210],{"type":52,"value":9109},{"type":46,"tag":425,"props":13212,"children":13213},{"style":432},[13214],{"type":52,"value":473},{"type":46,"tag":425,"props":13216,"children":13217},{"style":756},[13218],{"type":52,"value":13219}," 192",{"type":46,"tag":425,"props":13221,"children":13222},{"style":432},[13223],{"type":52,"value":1474},{"type":46,"tag":425,"props":13225,"children":13227},{"class":427,"line":13226},186,[13228,13232,13236,13240,13244,13248,13253,13257],{"type":46,"tag":425,"props":13229,"children":13230},{"style":432},[13231],{"type":52,"value":1261},{"type":46,"tag":425,"props":13233,"children":13234},{"style":733},[13235],{"type":52,"value":1487},{"type":46,"tag":425,"props":13237,"children":13238},{"style":432},[13239],{"type":52,"value":440},{"type":46,"tag":425,"props":13241,"children":13242},{"style":432},[13243],{"type":52,"value":369},{"type":46,"tag":425,"props":13245,"children":13246},{"style":432},[13247],{"type":52,"value":458},{"type":46,"tag":425,"props":13249,"children":13250},{"style":461},[13251],{"type":52,"value":13252},"e9b99301-3af1-4d19-ab78-3fd0e8946fd1",{"type":46,"tag":425,"props":13254,"children":13255},{"style":432},[13256],{"type":52,"value":440},{"type":46,"tag":425,"props":13258,"children":13259},{"style":432},[13260],{"type":52,"value":1399},{"type":46,"tag":425,"props":13262,"children":13264},{"class":427,"line":13263},187,[13265,13269,13273,13277,13281,13285,13290],{"type":46,"tag":425,"props":13266,"children":13267},{"style":432},[13268],{"type":52,"value":1261},{"type":46,"tag":425,"props":13270,"children":13271},{"style":733},[13272],{"type":52,"value":404},{"type":46,"tag":425,"props":13274,"children":13275},{"style":432},[13276],{"type":52,"value":440},{"type":46,"tag":425,"props":13278,"children":13279},{"style":432},[13280],{"type":52,"value":369},{"type":46,"tag":425,"props":13282,"children":13283},{"style":432},[13284],{"type":52,"value":458},{"type":46,"tag":425,"props":13286,"children":13287},{"style":461},[13288],{"type":52,"value":13289},"Default data loader",{"type":46,"tag":425,"props":13291,"children":13292},{"style":432},[13293],{"type":52,"value":1342},{"type":46,"tag":425,"props":13295,"children":13297},{"class":427,"line":13296},188,[13298],{"type":46,"tag":425,"props":13299,"children":13300},{"style":432},[13301],{"type":52,"value":5090},{"type":46,"tag":425,"props":13303,"children":13305},{"class":427,"line":13304},189,[13306],{"type":46,"tag":425,"props":13307,"children":13308},{"style":432},[13309],{"type":52,"value":5099},{"type":46,"tag":425,"props":13311,"children":13313},{"class":427,"line":13312},190,[13314,13318,13322,13326,13330],{"type":46,"tag":425,"props":13315,"children":13316},{"style":432},[13317],{"type":52,"value":708},{"type":46,"tag":425,"props":13319,"children":13320},{"style":443},[13321],{"type":52,"value":5112},{"type":46,"tag":425,"props":13323,"children":13324},{"style":432},[13325],{"type":52,"value":440},{"type":46,"tag":425,"props":13327,"children":13328},{"style":432},[13329],{"type":52,"value":369},{"type":46,"tag":425,"props":13331,"children":13332},{"style":432},[13333],{"type":52,"value":1279},{"type":46,"tag":425,"props":13335,"children":13337},{"class":427,"line":13336},191,[13338,13342,13346,13350,13354],{"type":46,"tag":425,"props":13339,"children":13340},{"style":432},[13341],{"type":52,"value":5133},{"type":46,"tag":425,"props":13343,"children":13344},{"style":733},[13345],{"type":52,"value":9186},{"type":46,"tag":425,"props":13347,"children":13348},{"style":432},[13349],{"type":52,"value":440},{"type":46,"tag":425,"props":13351,"children":13352},{"style":432},[13353],{"type":52,"value":369},{"type":46,"tag":425,"props":13355,"children":13356},{"style":432},[13357],{"type":52,"value":1279},{"type":46,"tag":425,"props":13359,"children":13361},{"class":427,"line":13360},192,[13362,13366,13370,13374,13378],{"type":46,"tag":425,"props":13363,"children":13364},{"style":432},[13365],{"type":52,"value":1261},{"type":46,"tag":425,"props":13367,"children":13368},{"style":756},[13369],{"type":52,"value":8118},{"type":46,"tag":425,"props":13371,"children":13372},{"style":432},[13373],{"type":52,"value":440},{"type":46,"tag":425,"props":13375,"children":13376},{"style":432},[13377],{"type":52,"value":369},{"type":46,"tag":425,"props":13379,"children":13380},{"style":432},[13381],{"type":52,"value":13382}," [[\n",{"type":46,"tag":425,"props":13384,"children":13386},{"class":427,"line":13385},193,[13387,13392,13396,13400,13404,13408,13412,13416,13420,13424,13428,13432,13436,13440,13444,13448,13452,13456,13460,13464,13468,13472,13476],{"type":46,"tag":425,"props":13388,"children":13389},{"style":432},[13390],{"type":52,"value":13391},"        {",{"type":46,"tag":425,"props":13393,"children":13394},{"style":432},[13395],{"type":52,"value":440},{"type":46,"tag":425,"props":13397,"children":13398},{"style":1317},[13399],{"type":52,"value":5184},{"type":46,"tag":425,"props":13401,"children":13402},{"style":432},[13403],{"type":52,"value":440},{"type":46,"tag":425,"props":13405,"children":13406},{"style":432},[13407],{"type":52,"value":369},{"type":46,"tag":425,"props":13409,"children":13410},{"style":432},[13411],{"type":52,"value":458},{"type":46,"tag":425,"props":13413,"children":13414},{"style":461},[13415],{"type":52,"value":92},{"type":46,"tag":425,"props":13417,"children":13418},{"style":432},[13419],{"type":52,"value":440},{"type":46,"tag":425,"props":13421,"children":13422},{"style":432},[13423],{"type":52,"value":473},{"type":46,"tag":425,"props":13425,"children":13426},{"style":432},[13427],{"type":52,"value":458},{"type":46,"tag":425,"props":13429,"children":13430},{"style":1317},[13431],{"type":52,"value":1373},{"type":46,"tag":425,"props":13433,"children":13434},{"style":432},[13435],{"type":52,"value":440},{"type":46,"tag":425,"props":13437,"children":13438},{"style":432},[13439],{"type":52,"value":369},{"type":46,"tag":425,"props":13441,"children":13442},{"style":432},[13443],{"type":52,"value":458},{"type":46,"tag":425,"props":13445,"children":13446},{"style":461},[13447],{"type":52,"value":8118},{"type":46,"tag":425,"props":13449,"children":13450},{"style":432},[13451],{"type":52,"value":440},{"type":46,"tag":425,"props":13453,"children":13454},{"style":432},[13455],{"type":52,"value":473},{"type":46,"tag":425,"props":13457,"children":13458},{"style":432},[13459],{"type":52,"value":458},{"type":46,"tag":425,"props":13461,"children":13462},{"style":1317},[13463],{"type":52,"value":5249},{"type":46,"tag":425,"props":13465,"children":13466},{"style":432},[13467],{"type":52,"value":440},{"type":46,"tag":425,"props":13469,"children":13470},{"style":432},[13471],{"type":52,"value":369},{"type":46,"tag":425,"props":13473,"children":13474},{"style":756},[13475],{"type":52,"value":5262},{"type":46,"tag":425,"props":13477,"children":13478},{"style":432},[13479],{"type":52,"value":1699},{"type":46,"tag":425,"props":13481,"children":13483},{"class":427,"line":13482},194,[13484,13488,13492,13496,13500,13504,13508,13512,13516,13520,13524,13528,13532,13536,13540,13544,13548,13552,13556,13560,13564,13568,13572],{"type":46,"tag":425,"props":13485,"children":13486},{"style":432},[13487],{"type":52,"value":13391},{"type":46,"tag":425,"props":13489,"children":13490},{"style":432},[13491],{"type":52,"value":440},{"type":46,"tag":425,"props":13493,"children":13494},{"style":1317},[13495],{"type":52,"value":5184},{"type":46,"tag":425,"props":13497,"children":13498},{"style":432},[13499],{"type":52,"value":440},{"type":46,"tag":425,"props":13501,"children":13502},{"style":432},[13503],{"type":52,"value":369},{"type":46,"tag":425,"props":13505,"children":13506},{"style":432},[13507],{"type":52,"value":458},{"type":46,"tag":425,"props":13509,"children":13510},{"style":461},[13511],{"type":52,"value":10604},{"type":46,"tag":425,"props":13513,"children":13514},{"style":432},[13515],{"type":52,"value":440},{"type":46,"tag":425,"props":13517,"children":13518},{"style":432},[13519],{"type":52,"value":473},{"type":46,"tag":425,"props":13521,"children":13522},{"style":432},[13523],{"type":52,"value":458},{"type":46,"tag":425,"props":13525,"children":13526},{"style":1317},[13527],{"type":52,"value":1373},{"type":46,"tag":425,"props":13529,"children":13530},{"style":432},[13531],{"type":52,"value":440},{"type":46,"tag":425,"props":13533,"children":13534},{"style":432},[13535],{"type":52,"value":369},{"type":46,"tag":425,"props":13537,"children":13538},{"style":432},[13539],{"type":52,"value":458},{"type":46,"tag":425,"props":13541,"children":13542},{"style":461},[13543],{"type":52,"value":8118},{"type":46,"tag":425,"props":13545,"children":13546},{"style":432},[13547],{"type":52,"value":440},{"type":46,"tag":425,"props":13549,"children":13550},{"style":432},[13551],{"type":52,"value":473},{"type":46,"tag":425,"props":13553,"children":13554},{"style":432},[13555],{"type":52,"value":458},{"type":46,"tag":425,"props":13557,"children":13558},{"style":1317},[13559],{"type":52,"value":5249},{"type":46,"tag":425,"props":13561,"children":13562},{"style":432},[13563],{"type":52,"value":440},{"type":46,"tag":425,"props":13565,"children":13566},{"style":432},[13567],{"type":52,"value":369},{"type":46,"tag":425,"props":13569,"children":13570},{"style":756},[13571],{"type":52,"value":5262},{"type":46,"tag":425,"props":13573,"children":13574},{"style":432},[13575],{"type":52,"value":507},{"type":46,"tag":425,"props":13577,"children":13579},{"class":427,"line":13578},195,[13580],{"type":46,"tag":425,"props":13581,"children":13582},{"style":432},[13583],{"type":52,"value":13584},"      ]]\n",{"type":46,"tag":425,"props":13586,"children":13588},{"class":427,"line":13587},196,[13589],{"type":46,"tag":425,"props":13590,"children":13591},{"style":432},[13592],{"type":52,"value":1553},{"type":46,"tag":425,"props":13594,"children":13596},{"class":427,"line":13595},197,[13597,13601,13605,13609,13613],{"type":46,"tag":425,"props":13598,"children":13599},{"style":432},[13600],{"type":52,"value":5133},{"type":46,"tag":425,"props":13602,"children":13603},{"style":733},[13604],{"type":52,"value":9414},{"type":46,"tag":425,"props":13606,"children":13607},{"style":432},[13608],{"type":52,"value":440},{"type":46,"tag":425,"props":13610,"children":13611},{"style":432},[13612],{"type":52,"value":369},{"type":46,"tag":425,"props":13614,"children":13615},{"style":432},[13616],{"type":52,"value":1279},{"type":46,"tag":425,"props":13618,"children":13620},{"class":427,"line":13619},198,[13621,13625,13629,13633,13637,13641,13645,13649,13653,13657,13661,13665,13669,13673,13677,13681,13685,13689,13693,13697,13701,13705,13709,13713,13717,13721,13725],{"type":46,"tag":425,"props":13622,"children":13623},{"style":432},[13624],{"type":52,"value":1261},{"type":46,"tag":425,"props":13626,"children":13627},{"style":756},[13628],{"type":52,"value":606},{"type":46,"tag":425,"props":13630,"children":13631},{"style":432},[13632],{"type":52,"value":440},{"type":46,"tag":425,"props":13634,"children":13635},{"style":432},[13636],{"type":52,"value":369},{"type":46,"tag":425,"props":13638,"children":13639},{"style":432},[13640],{"type":52,"value":5175},{"type":46,"tag":425,"props":13642,"children":13643},{"style":432},[13644],{"type":52,"value":440},{"type":46,"tag":425,"props":13646,"children":13647},{"style":1317},[13648],{"type":52,"value":5184},{"type":46,"tag":425,"props":13650,"children":13651},{"style":432},[13652],{"type":52,"value":440},{"type":46,"tag":425,"props":13654,"children":13655},{"style":432},[13656],{"type":52,"value":369},{"type":46,"tag":425,"props":13658,"children":13659},{"style":432},[13660],{"type":52,"value":458},{"type":46,"tag":425,"props":13662,"children":13663},{"style":461},[13664],{"type":52,"value":1541},{"type":46,"tag":425,"props":13666,"children":13667},{"style":432},[13668],{"type":52,"value":440},{"type":46,"tag":425,"props":13670,"children":13671},{"style":432},[13672],{"type":52,"value":473},{"type":46,"tag":425,"props":13674,"children":13675},{"style":432},[13676],{"type":52,"value":458},{"type":46,"tag":425,"props":13678,"children":13679},{"style":1317},[13680],{"type":52,"value":1373},{"type":46,"tag":425,"props":13682,"children":13683},{"style":432},[13684],{"type":52,"value":440},{"type":46,"tag":425,"props":13686,"children":13687},{"style":432},[13688],{"type":52,"value":369},{"type":46,"tag":425,"props":13690,"children":13691},{"style":432},[13692],{"type":52,"value":458},{"type":46,"tag":425,"props":13694,"children":13695},{"style":461},[13696],{"type":52,"value":606},{"type":46,"tag":425,"props":13698,"children":13699},{"style":432},[13700],{"type":52,"value":440},{"type":46,"tag":425,"props":13702,"children":13703},{"style":432},[13704],{"type":52,"value":473},{"type":46,"tag":425,"props":13706,"children":13707},{"style":432},[13708],{"type":52,"value":458},{"type":46,"tag":425,"props":13710,"children":13711},{"style":1317},[13712],{"type":52,"value":5249},{"type":46,"tag":425,"props":13714,"children":13715},{"style":432},[13716],{"type":52,"value":440},{"type":46,"tag":425,"props":13718,"children":13719},{"style":432},[13720],{"type":52,"value":369},{"type":46,"tag":425,"props":13722,"children":13723},{"style":756},[13724],{"type":52,"value":5262},{"type":46,"tag":425,"props":13726,"children":13727},{"style":432},[13728],{"type":52,"value":5267},{"type":46,"tag":425,"props":13730,"children":13732},{"class":427,"line":13731},199,[13733],{"type":46,"tag":425,"props":13734,"children":13735},{"style":432},[13736],{"type":52,"value":1553},{"type":46,"tag":425,"props":13738,"children":13740},{"class":427,"line":13739},200,[13741,13745,13749,13753,13757],{"type":46,"tag":425,"props":13742,"children":13743},{"style":432},[13744],{"type":52,"value":5133},{"type":46,"tag":425,"props":13746,"children":13747},{"style":733},[13748],{"type":52,"value":1906},{"type":46,"tag":425,"props":13750,"children":13751},{"style":432},[13752],{"type":52,"value":440},{"type":46,"tag":425,"props":13754,"children":13755},{"style":432},[13756],{"type":52,"value":369},{"type":46,"tag":425,"props":13758,"children":13759},{"style":432},[13760],{"type":52,"value":1279},{"type":46,"tag":425,"props":13762,"children":13764},{"class":427,"line":13763},201,[13765,13769,13773,13777,13781,13785,13789,13793,13797,13801,13805,13809,13813,13817,13821,13825,13829,13833,13837,13841,13845,13849,13853,13857,13861,13865,13869],{"type":46,"tag":425,"props":13766,"children":13767},{"style":432},[13768],{"type":52,"value":1261},{"type":46,"tag":425,"props":13770,"children":13771},{"style":756},[13772],{"type":52,"value":5162},{"type":46,"tag":425,"props":13774,"children":13775},{"style":432},[13776],{"type":52,"value":440},{"type":46,"tag":425,"props":13778,"children":13779},{"style":432},[13780],{"type":52,"value":369},{"type":46,"tag":425,"props":13782,"children":13783},{"style":432},[13784],{"type":52,"value":5175},{"type":46,"tag":425,"props":13786,"children":13787},{"style":432},[13788],{"type":52,"value":440},{"type":46,"tag":425,"props":13790,"children":13791},{"style":1317},[13792],{"type":52,"value":5184},{"type":46,"tag":425,"props":13794,"children":13795},{"style":432},[13796],{"type":52,"value":440},{"type":46,"tag":425,"props":13798,"children":13799},{"style":432},[13800],{"type":52,"value":369},{"type":46,"tag":425,"props":13802,"children":13803},{"style":432},[13804],{"type":52,"value":458},{"type":46,"tag":425,"props":13806,"children":13807},{"style":461},[13808],{"type":52,"value":1541},{"type":46,"tag":425,"props":13810,"children":13811},{"style":432},[13812],{"type":52,"value":440},{"type":46,"tag":425,"props":13814,"children":13815},{"style":432},[13816],{"type":52,"value":473},{"type":46,"tag":425,"props":13818,"children":13819},{"style":432},[13820],{"type":52,"value":458},{"type":46,"tag":425,"props":13822,"children":13823},{"style":1317},[13824],{"type":52,"value":1373},{"type":46,"tag":425,"props":13826,"children":13827},{"style":432},[13828],{"type":52,"value":440},{"type":46,"tag":425,"props":13830,"children":13831},{"style":432},[13832],{"type":52,"value":369},{"type":46,"tag":425,"props":13834,"children":13835},{"style":432},[13836],{"type":52,"value":458},{"type":46,"tag":425,"props":13838,"children":13839},{"style":461},[13840],{"type":52,"value":5162},{"type":46,"tag":425,"props":13842,"children":13843},{"style":432},[13844],{"type":52,"value":440},{"type":46,"tag":425,"props":13846,"children":13847},{"style":432},[13848],{"type":52,"value":473},{"type":46,"tag":425,"props":13850,"children":13851},{"style":432},[13852],{"type":52,"value":458},{"type":46,"tag":425,"props":13854,"children":13855},{"style":1317},[13856],{"type":52,"value":5249},{"type":46,"tag":425,"props":13858,"children":13859},{"style":432},[13860],{"type":52,"value":440},{"type":46,"tag":425,"props":13862,"children":13863},{"style":432},[13864],{"type":52,"value":369},{"type":46,"tag":425,"props":13866,"children":13867},{"style":756},[13868],{"type":52,"value":5262},{"type":46,"tag":425,"props":13870,"children":13871},{"style":432},[13872],{"type":52,"value":5267},{"type":46,"tag":425,"props":13874,"children":13876},{"class":427,"line":13875},202,[13877],{"type":46,"tag":425,"props":13878,"children":13879},{"style":432},[13880],{"type":52,"value":1553},{"type":46,"tag":425,"props":13882,"children":13884},{"class":427,"line":13883},203,[13885,13889,13893,13897,13901],{"type":46,"tag":425,"props":13886,"children":13887},{"style":432},[13888],{"type":52,"value":5133},{"type":46,"tag":425,"props":13890,"children":13891},{"style":733},[13892],{"type":52,"value":10604},{"type":46,"tag":425,"props":13894,"children":13895},{"style":432},[13896],{"type":52,"value":440},{"type":46,"tag":425,"props":13898,"children":13899},{"style":432},[13900],{"type":52,"value":369},{"type":46,"tag":425,"props":13902,"children":13903},{"style":432},[13904],{"type":52,"value":1279},{"type":46,"tag":425,"props":13906,"children":13908},{"class":427,"line":13907},204,[13909,13913,13917,13921,13925,13929,13933,13937,13941,13945,13949,13953,13957,13961,13965,13969,13973,13977,13981,13985,13989,13993,13997,14001,14005,14009,14013],{"type":46,"tag":425,"props":13910,"children":13911},{"style":432},[13912],{"type":52,"value":1261},{"type":46,"tag":425,"props":13914,"children":13915},{"style":756},[13916],{"type":52,"value":598},{"type":46,"tag":425,"props":13918,"children":13919},{"style":432},[13920],{"type":52,"value":440},{"type":46,"tag":425,"props":13922,"children":13923},{"style":432},[13924],{"type":52,"value":369},{"type":46,"tag":425,"props":13926,"children":13927},{"style":432},[13928],{"type":52,"value":5175},{"type":46,"tag":425,"props":13930,"children":13931},{"style":432},[13932],{"type":52,"value":440},{"type":46,"tag":425,"props":13934,"children":13935},{"style":1317},[13936],{"type":52,"value":5184},{"type":46,"tag":425,"props":13938,"children":13939},{"style":432},[13940],{"type":52,"value":440},{"type":46,"tag":425,"props":13942,"children":13943},{"style":432},[13944],{"type":52,"value":369},{"type":46,"tag":425,"props":13946,"children":13947},{"style":432},[13948],{"type":52,"value":458},{"type":46,"tag":425,"props":13950,"children":13951},{"style":461},[13952],{"type":52,"value":1541},{"type":46,"tag":425,"props":13954,"children":13955},{"style":432},[13956],{"type":52,"value":440},{"type":46,"tag":425,"props":13958,"children":13959},{"style":432},[13960],{"type":52,"value":473},{"type":46,"tag":425,"props":13962,"children":13963},{"style":432},[13964],{"type":52,"value":458},{"type":46,"tag":425,"props":13966,"children":13967},{"style":1317},[13968],{"type":52,"value":1373},{"type":46,"tag":425,"props":13970,"children":13971},{"style":432},[13972],{"type":52,"value":440},{"type":46,"tag":425,"props":13974,"children":13975},{"style":432},[13976],{"type":52,"value":369},{"type":46,"tag":425,"props":13978,"children":13979},{"style":432},[13980],{"type":52,"value":458},{"type":46,"tag":425,"props":13982,"children":13983},{"style":461},[13984],{"type":52,"value":598},{"type":46,"tag":425,"props":13986,"children":13987},{"style":432},[13988],{"type":52,"value":440},{"type":46,"tag":425,"props":13990,"children":13991},{"style":432},[13992],{"type":52,"value":473},{"type":46,"tag":425,"props":13994,"children":13995},{"style":432},[13996],{"type":52,"value":458},{"type":46,"tag":425,"props":13998,"children":13999},{"style":1317},[14000],{"type":52,"value":5249},{"type":46,"tag":425,"props":14002,"children":14003},{"style":432},[14004],{"type":52,"value":440},{"type":46,"tag":425,"props":14006,"children":14007},{"style":432},[14008],{"type":52,"value":369},{"type":46,"tag":425,"props":14010,"children":14011},{"style":756},[14012],{"type":52,"value":5262},{"type":46,"tag":425,"props":14014,"children":14015},{"style":432},[14016],{"type":52,"value":5267},{"type":46,"tag":425,"props":14018,"children":14020},{"class":427,"line":14019},205,[14021],{"type":46,"tag":425,"props":14022,"children":14023},{"style":432},[14024],{"type":52,"value":1553},{"type":46,"tag":425,"props":14026,"children":14028},{"class":427,"line":14027},206,[14029,14033,14037,14041,14045],{"type":46,"tag":425,"props":14030,"children":14031},{"style":432},[14032],{"type":52,"value":5133},{"type":46,"tag":425,"props":14034,"children":14035},{"style":733},[14036],{"type":52,"value":3091},{"type":46,"tag":425,"props":14038,"children":14039},{"style":432},[14040],{"type":52,"value":440},{"type":46,"tag":425,"props":14042,"children":14043},{"style":432},[14044],{"type":52,"value":369},{"type":46,"tag":425,"props":14046,"children":14047},{"style":432},[14048],{"type":52,"value":1279},{"type":46,"tag":425,"props":14050,"children":14052},{"class":427,"line":14051},207,[14053,14057,14061,14065,14069,14073,14077,14081,14085,14089,14093,14097,14101,14105,14109,14113,14117,14121,14125,14129,14133,14137,14141,14145,14149,14153,14157],{"type":46,"tag":425,"props":14054,"children":14055},{"style":432},[14056],{"type":52,"value":1261},{"type":46,"tag":425,"props":14058,"children":14059},{"style":756},[14060],{"type":52,"value":606},{"type":46,"tag":425,"props":14062,"children":14063},{"style":432},[14064],{"type":52,"value":440},{"type":46,"tag":425,"props":14066,"children":14067},{"style":432},[14068],{"type":52,"value":369},{"type":46,"tag":425,"props":14070,"children":14071},{"style":432},[14072],{"type":52,"value":5175},{"type":46,"tag":425,"props":14074,"children":14075},{"style":432},[14076],{"type":52,"value":440},{"type":46,"tag":425,"props":14078,"children":14079},{"style":1317},[14080],{"type":52,"value":5184},{"type":46,"tag":425,"props":14082,"children":14083},{"style":432},[14084],{"type":52,"value":440},{"type":46,"tag":425,"props":14086,"children":14087},{"style":432},[14088],{"type":52,"value":369},{"type":46,"tag":425,"props":14090,"children":14091},{"style":432},[14092],{"type":52,"value":458},{"type":46,"tag":425,"props":14094,"children":14095},{"style":461},[14096],{"type":52,"value":3570},{"type":46,"tag":425,"props":14098,"children":14099},{"style":432},[14100],{"type":52,"value":440},{"type":46,"tag":425,"props":14102,"children":14103},{"style":432},[14104],{"type":52,"value":473},{"type":46,"tag":425,"props":14106,"children":14107},{"style":432},[14108],{"type":52,"value":458},{"type":46,"tag":425,"props":14110,"children":14111},{"style":1317},[14112],{"type":52,"value":1373},{"type":46,"tag":425,"props":14114,"children":14115},{"style":432},[14116],{"type":52,"value":440},{"type":46,"tag":425,"props":14118,"children":14119},{"style":432},[14120],{"type":52,"value":369},{"type":46,"tag":425,"props":14122,"children":14123},{"style":432},[14124],{"type":52,"value":458},{"type":46,"tag":425,"props":14126,"children":14127},{"style":461},[14128],{"type":52,"value":606},{"type":46,"tag":425,"props":14130,"children":14131},{"style":432},[14132],{"type":52,"value":440},{"type":46,"tag":425,"props":14134,"children":14135},{"style":432},[14136],{"type":52,"value":473},{"type":46,"tag":425,"props":14138,"children":14139},{"style":432},[14140],{"type":52,"value":458},{"type":46,"tag":425,"props":14142,"children":14143},{"style":1317},[14144],{"type":52,"value":5249},{"type":46,"tag":425,"props":14146,"children":14147},{"style":432},[14148],{"type":52,"value":440},{"type":46,"tag":425,"props":14150,"children":14151},{"style":432},[14152],{"type":52,"value":369},{"type":46,"tag":425,"props":14154,"children":14155},{"style":756},[14156],{"type":52,"value":5262},{"type":46,"tag":425,"props":14158,"children":14159},{"style":432},[14160],{"type":52,"value":5267},{"type":46,"tag":425,"props":14162,"children":14164},{"class":427,"line":14163},208,[14165],{"type":46,"tag":425,"props":14166,"children":14167},{"style":432},[14168],{"type":52,"value":1553},{"type":46,"tag":425,"props":14170,"children":14172},{"class":427,"line":14171},209,[14173,14177,14181,14185,14189],{"type":46,"tag":425,"props":14174,"children":14175},{"style":432},[14176],{"type":52,"value":5133},{"type":46,"tag":425,"props":14178,"children":14179},{"style":733},[14180],{"type":52,"value":3570},{"type":46,"tag":425,"props":14182,"children":14183},{"style":432},[14184],{"type":52,"value":440},{"type":46,"tag":425,"props":14186,"children":14187},{"style":432},[14188],{"type":52,"value":369},{"type":46,"tag":425,"props":14190,"children":14191},{"style":432},[14192],{"type":52,"value":1279},{"type":46,"tag":425,"props":14194,"children":14196},{"class":427,"line":14195},210,[14197,14201,14205,14209,14213,14217,14221,14225,14229,14233,14237,14241,14245,14249,14253,14257,14261,14265,14269,14273,14277,14281,14285,14289,14293,14297,14301],{"type":46,"tag":425,"props":14198,"children":14199},{"style":432},[14200],{"type":52,"value":1261},{"type":46,"tag":425,"props":14202,"children":14203},{"style":756},[14204],{"type":52,"value":606},{"type":46,"tag":425,"props":14206,"children":14207},{"style":432},[14208],{"type":52,"value":440},{"type":46,"tag":425,"props":14210,"children":14211},{"style":432},[14212],{"type":52,"value":369},{"type":46,"tag":425,"props":14214,"children":14215},{"style":432},[14216],{"type":52,"value":5175},{"type":46,"tag":425,"props":14218,"children":14219},{"style":432},[14220],{"type":52,"value":440},{"type":46,"tag":425,"props":14222,"children":14223},{"style":1317},[14224],{"type":52,"value":5184},{"type":46,"tag":425,"props":14226,"children":14227},{"style":432},[14228],{"type":52,"value":440},{"type":46,"tag":425,"props":14230,"children":14231},{"style":432},[14232],{"type":52,"value":369},{"type":46,"tag":425,"props":14234,"children":14235},{"style":432},[14236],{"type":52,"value":458},{"type":46,"tag":425,"props":14238,"children":14239},{"style":461},[14240],{"type":52,"value":3839},{"type":46,"tag":425,"props":14242,"children":14243},{"style":432},[14244],{"type":52,"value":440},{"type":46,"tag":425,"props":14246,"children":14247},{"style":432},[14248],{"type":52,"value":473},{"type":46,"tag":425,"props":14250,"children":14251},{"style":432},[14252],{"type":52,"value":458},{"type":46,"tag":425,"props":14254,"children":14255},{"style":1317},[14256],{"type":52,"value":1373},{"type":46,"tag":425,"props":14258,"children":14259},{"style":432},[14260],{"type":52,"value":440},{"type":46,"tag":425,"props":14262,"children":14263},{"style":432},[14264],{"type":52,"value":369},{"type":46,"tag":425,"props":14266,"children":14267},{"style":432},[14268],{"type":52,"value":458},{"type":46,"tag":425,"props":14270,"children":14271},{"style":461},[14272],{"type":52,"value":606},{"type":46,"tag":425,"props":14274,"children":14275},{"style":432},[14276],{"type":52,"value":440},{"type":46,"tag":425,"props":14278,"children":14279},{"style":432},[14280],{"type":52,"value":473},{"type":46,"tag":425,"props":14282,"children":14283},{"style":432},[14284],{"type":52,"value":458},{"type":46,"tag":425,"props":14286,"children":14287},{"style":1317},[14288],{"type":52,"value":5249},{"type":46,"tag":425,"props":14290,"children":14291},{"style":432},[14292],{"type":52,"value":440},{"type":46,"tag":425,"props":14294,"children":14295},{"style":432},[14296],{"type":52,"value":369},{"type":46,"tag":425,"props":14298,"children":14299},{"style":756},[14300],{"type":52,"value":5262},{"type":46,"tag":425,"props":14302,"children":14303},{"style":432},[14304],{"type":52,"value":5267},{"type":46,"tag":425,"props":14306,"children":14308},{"class":427,"line":14307},211,[14309],{"type":46,"tag":425,"props":14310,"children":14311},{"style":432},[14312],{"type":52,"value":1553},{"type":46,"tag":425,"props":14314,"children":14316},{"class":427,"line":14315},212,[14317,14321,14325,14329,14333],{"type":46,"tag":425,"props":14318,"children":14319},{"style":432},[14320],{"type":52,"value":5133},{"type":46,"tag":425,"props":14322,"children":14323},{"style":733},[14324],{"type":52,"value":3839},{"type":46,"tag":425,"props":14326,"children":14327},{"style":432},[14328],{"type":52,"value":440},{"type":46,"tag":425,"props":14330,"children":14331},{"style":432},[14332],{"type":52,"value":369},{"type":46,"tag":425,"props":14334,"children":14335},{"style":432},[14336],{"type":52,"value":1279},{"type":46,"tag":425,"props":14338,"children":14340},{"class":427,"line":14339},213,[14341,14345,14349,14353,14357,14361,14365,14369,14373,14377,14381,14385,14389,14393,14397,14401,14405,14409,14413,14417,14421,14425,14429,14433,14437,14441,14445],{"type":46,"tag":425,"props":14342,"children":14343},{"style":432},[14344],{"type":52,"value":1261},{"type":46,"tag":425,"props":14346,"children":14347},{"style":756},[14348],{"type":52,"value":606},{"type":46,"tag":425,"props":14350,"children":14351},{"style":432},[14352],{"type":52,"value":440},{"type":46,"tag":425,"props":14354,"children":14355},{"style":432},[14356],{"type":52,"value":369},{"type":46,"tag":425,"props":14358,"children":14359},{"style":432},[14360],{"type":52,"value":5175},{"type":46,"tag":425,"props":14362,"children":14363},{"style":432},[14364],{"type":52,"value":440},{"type":46,"tag":425,"props":14366,"children":14367},{"style":1317},[14368],{"type":52,"value":5184},{"type":46,"tag":425,"props":14370,"children":14371},{"style":432},[14372],{"type":52,"value":440},{"type":46,"tag":425,"props":14374,"children":14375},{"style":432},[14376],{"type":52,"value":369},{"type":46,"tag":425,"props":14378,"children":14379},{"style":432},[14380],{"type":52,"value":458},{"type":46,"tag":425,"props":14382,"children":14383},{"style":461},[14384],{"type":52,"value":4203},{"type":46,"tag":425,"props":14386,"children":14387},{"style":432},[14388],{"type":52,"value":440},{"type":46,"tag":425,"props":14390,"children":14391},{"style":432},[14392],{"type":52,"value":473},{"type":46,"tag":425,"props":14394,"children":14395},{"style":432},[14396],{"type":52,"value":458},{"type":46,"tag":425,"props":14398,"children":14399},{"style":1317},[14400],{"type":52,"value":1373},{"type":46,"tag":425,"props":14402,"children":14403},{"style":432},[14404],{"type":52,"value":440},{"type":46,"tag":425,"props":14406,"children":14407},{"style":432},[14408],{"type":52,"value":369},{"type":46,"tag":425,"props":14410,"children":14411},{"style":432},[14412],{"type":52,"value":458},{"type":46,"tag":425,"props":14414,"children":14415},{"style":461},[14416],{"type":52,"value":606},{"type":46,"tag":425,"props":14418,"children":14419},{"style":432},[14420],{"type":52,"value":440},{"type":46,"tag":425,"props":14422,"children":14423},{"style":432},[14424],{"type":52,"value":473},{"type":46,"tag":425,"props":14426,"children":14427},{"style":432},[14428],{"type":52,"value":458},{"type":46,"tag":425,"props":14430,"children":14431},{"style":1317},[14432],{"type":52,"value":5249},{"type":46,"tag":425,"props":14434,"children":14435},{"style":432},[14436],{"type":52,"value":440},{"type":46,"tag":425,"props":14438,"children":14439},{"style":432},[14440],{"type":52,"value":369},{"type":46,"tag":425,"props":14442,"children":14443},{"style":756},[14444],{"type":52,"value":5262},{"type":46,"tag":425,"props":14446,"children":14447},{"style":432},[14448],{"type":52,"value":5267},{"type":46,"tag":425,"props":14450,"children":14452},{"class":427,"line":14451},214,[14453],{"type":46,"tag":425,"props":14454,"children":14455},{"style":432},[14456],{"type":52,"value":1553},{"type":46,"tag":425,"props":14458,"children":14460},{"class":427,"line":14459},215,[14461,14465,14469,14473,14477],{"type":46,"tag":425,"props":14462,"children":14463},{"style":432},[14464],{"type":52,"value":5133},{"type":46,"tag":425,"props":14466,"children":14467},{"style":733},[14468],{"type":52,"value":12464},{"type":46,"tag":425,"props":14470,"children":14471},{"style":432},[14472],{"type":52,"value":440},{"type":46,"tag":425,"props":14474,"children":14475},{"style":432},[14476],{"type":52,"value":369},{"type":46,"tag":425,"props":14478,"children":14479},{"style":432},[14480],{"type":52,"value":1279},{"type":46,"tag":425,"props":14482,"children":14484},{"class":427,"line":14483},216,[14485,14489,14494,14498,14502,14506,14510,14514,14518,14522,14526,14530,14534,14538,14542,14546,14550,14554,14558,14562,14566,14570,14574,14578,14582,14586,14590],{"type":46,"tag":425,"props":14486,"children":14487},{"style":432},[14488],{"type":52,"value":1261},{"type":46,"tag":425,"props":14490,"children":14491},{"style":756},[14492],{"type":52,"value":14493},"ai_textSplitter",{"type":46,"tag":425,"props":14495,"children":14496},{"style":432},[14497],{"type":52,"value":440},{"type":46,"tag":425,"props":14499,"children":14500},{"style":432},[14501],{"type":52,"value":369},{"type":46,"tag":425,"props":14503,"children":14504},{"style":432},[14505],{"type":52,"value":5175},{"type":46,"tag":425,"props":14507,"children":14508},{"style":432},[14509],{"type":52,"value":440},{"type":46,"tag":425,"props":14511,"children":14512},{"style":1317},[14513],{"type":52,"value":5184},{"type":46,"tag":425,"props":14515,"children":14516},{"style":432},[14517],{"type":52,"value":440},{"type":46,"tag":425,"props":14519,"children":14520},{"style":432},[14521],{"type":52,"value":369},{"type":46,"tag":425,"props":14523,"children":14524},{"style":432},[14525],{"type":52,"value":458},{"type":46,"tag":425,"props":14527,"children":14528},{"style":461},[14529],{"type":52,"value":13289},{"type":46,"tag":425,"props":14531,"children":14532},{"style":432},[14533],{"type":52,"value":440},{"type":46,"tag":425,"props":14535,"children":14536},{"style":432},[14537],{"type":52,"value":473},{"type":46,"tag":425,"props":14539,"children":14540},{"style":432},[14541],{"type":52,"value":458},{"type":46,"tag":425,"props":14543,"children":14544},{"style":1317},[14545],{"type":52,"value":1373},{"type":46,"tag":425,"props":14547,"children":14548},{"style":432},[14549],{"type":52,"value":440},{"type":46,"tag":425,"props":14551,"children":14552},{"style":432},[14553],{"type":52,"value":369},{"type":46,"tag":425,"props":14555,"children":14556},{"style":432},[14557],{"type":52,"value":458},{"type":46,"tag":425,"props":14559,"children":14560},{"style":461},[14561],{"type":52,"value":14493},{"type":46,"tag":425,"props":14563,"children":14564},{"style":432},[14565],{"type":52,"value":440},{"type":46,"tag":425,"props":14567,"children":14568},{"style":432},[14569],{"type":52,"value":473},{"type":46,"tag":425,"props":14571,"children":14572},{"style":432},[14573],{"type":52,"value":458},{"type":46,"tag":425,"props":14575,"children":14576},{"style":1317},[14577],{"type":52,"value":5249},{"type":46,"tag":425,"props":14579,"children":14580},{"style":432},[14581],{"type":52,"value":440},{"type":46,"tag":425,"props":14583,"children":14584},{"style":432},[14585],{"type":52,"value":369},{"type":46,"tag":425,"props":14587,"children":14588},{"style":756},[14589],{"type":52,"value":5262},{"type":46,"tag":425,"props":14591,"children":14592},{"style":432},[14593],{"type":52,"value":5267},{"type":46,"tag":425,"props":14595,"children":14597},{"class":427,"line":14596},217,[14598],{"type":46,"tag":425,"props":14599,"children":14600},{"style":432},[14601],{"type":52,"value":1553},{"type":46,"tag":425,"props":14603,"children":14605},{"class":427,"line":14604},218,[14606,14610,14614,14618,14622],{"type":46,"tag":425,"props":14607,"children":14608},{"style":432},[14609],{"type":52,"value":5133},{"type":46,"tag":425,"props":14611,"children":14612},{"style":733},[14613],{"type":52,"value":4203},{"type":46,"tag":425,"props":14615,"children":14616},{"style":432},[14617],{"type":52,"value":440},{"type":46,"tag":425,"props":14619,"children":14620},{"style":432},[14621],{"type":52,"value":369},{"type":46,"tag":425,"props":14623,"children":14624},{"style":432},[14625],{"type":52,"value":1279},{"type":46,"tag":425,"props":14627,"children":14629},{"class":427,"line":14628},219,[14630,14634,14638,14642,14646,14650,14654,14658,14662,14666,14670,14674,14678,14682,14686,14690,14694,14698,14702,14706,14710,14714,14718,14722,14726,14730,14734],{"type":46,"tag":425,"props":14631,"children":14632},{"style":432},[14633],{"type":52,"value":1261},{"type":46,"tag":425,"props":14635,"children":14636},{"style":756},[14637],{"type":52,"value":606},{"type":46,"tag":425,"props":14639,"children":14640},{"style":432},[14641],{"type":52,"value":440},{"type":46,"tag":425,"props":14643,"children":14644},{"style":432},[14645],{"type":52,"value":369},{"type":46,"tag":425,"props":14647,"children":14648},{"style":432},[14649],{"type":52,"value":5175},{"type":46,"tag":425,"props":14651,"children":14652},{"style":432},[14653],{"type":52,"value":440},{"type":46,"tag":425,"props":14655,"children":14656},{"style":1317},[14657],{"type":52,"value":5184},{"type":46,"tag":425,"props":14659,"children":14660},{"style":432},[14661],{"type":52,"value":440},{"type":46,"tag":425,"props":14663,"children":14664},{"style":432},[14665],{"type":52,"value":369},{"type":46,"tag":425,"props":14667,"children":14668},{"style":432},[14669],{"type":52,"value":458},{"type":46,"tag":425,"props":14671,"children":14672},{"style":461},[14673],{"type":52,"value":92},{"type":46,"tag":425,"props":14675,"children":14676},{"style":432},[14677],{"type":52,"value":440},{"type":46,"tag":425,"props":14679,"children":14680},{"style":432},[14681],{"type":52,"value":473},{"type":46,"tag":425,"props":14683,"children":14684},{"style":432},[14685],{"type":52,"value":458},{"type":46,"tag":425,"props":14687,"children":14688},{"style":1317},[14689],{"type":52,"value":1373},{"type":46,"tag":425,"props":14691,"children":14692},{"style":432},[14693],{"type":52,"value":440},{"type":46,"tag":425,"props":14695,"children":14696},{"style":432},[14697],{"type":52,"value":369},{"type":46,"tag":425,"props":14699,"children":14700},{"style":432},[14701],{"type":52,"value":458},{"type":46,"tag":425,"props":14703,"children":14704},{"style":461},[14705],{"type":52,"value":606},{"type":46,"tag":425,"props":14707,"children":14708},{"style":432},[14709],{"type":52,"value":440},{"type":46,"tag":425,"props":14711,"children":14712},{"style":432},[14713],{"type":52,"value":473},{"type":46,"tag":425,"props":14715,"children":14716},{"style":432},[14717],{"type":52,"value":458},{"type":46,"tag":425,"props":14719,"children":14720},{"style":1317},[14721],{"type":52,"value":5249},{"type":46,"tag":425,"props":14723,"children":14724},{"style":432},[14725],{"type":52,"value":440},{"type":46,"tag":425,"props":14727,"children":14728},{"style":432},[14729],{"type":52,"value":369},{"type":46,"tag":425,"props":14731,"children":14732},{"style":756},[14733],{"type":52,"value":5262},{"type":46,"tag":425,"props":14735,"children":14736},{"style":432},[14737],{"type":52,"value":5267},{"type":46,"tag":425,"props":14739,"children":14741},{"class":427,"line":14740},220,[14742],{"type":46,"tag":425,"props":14743,"children":14744},{"style":432},[14745],{"type":52,"value":1553},{"type":46,"tag":425,"props":14747,"children":14749},{"class":427,"line":14748},221,[14750,14754,14758,14762,14766],{"type":46,"tag":425,"props":14751,"children":14752},{"style":432},[14753],{"type":52,"value":5133},{"type":46,"tag":425,"props":14755,"children":14756},{"style":733},[14757],{"type":52,"value":13289},{"type":46,"tag":425,"props":14759,"children":14760},{"style":432},[14761],{"type":52,"value":440},{"type":46,"tag":425,"props":14763,"children":14764},{"style":432},[14765],{"type":52,"value":369},{"type":46,"tag":425,"props":14767,"children":14768},{"style":432},[14769],{"type":52,"value":1279},{"type":46,"tag":425,"props":14771,"children":14773},{"class":427,"line":14772},222,[14774,14778,14783,14787,14791,14795,14799,14803,14807,14811,14815,14819,14823,14827,14831,14835,14839,14843,14847,14851,14855,14859,14863,14867,14871,14875,14879],{"type":46,"tag":425,"props":14775,"children":14776},{"style":432},[14777],{"type":52,"value":1261},{"type":46,"tag":425,"props":14779,"children":14780},{"style":756},[14781],{"type":52,"value":14782},"ai_document",{"type":46,"tag":425,"props":14784,"children":14785},{"style":432},[14786],{"type":52,"value":440},{"type":46,"tag":425,"props":14788,"children":14789},{"style":432},[14790],{"type":52,"value":369},{"type":46,"tag":425,"props":14792,"children":14793},{"style":432},[14794],{"type":52,"value":5175},{"type":46,"tag":425,"props":14796,"children":14797},{"style":432},[14798],{"type":52,"value":440},{"type":46,"tag":425,"props":14800,"children":14801},{"style":1317},[14802],{"type":52,"value":5184},{"type":46,"tag":425,"props":14804,"children":14805},{"style":432},[14806],{"type":52,"value":440},{"type":46,"tag":425,"props":14808,"children":14809},{"style":432},[14810],{"type":52,"value":369},{"type":46,"tag":425,"props":14812,"children":14813},{"style":432},[14814],{"type":52,"value":458},{"type":46,"tag":425,"props":14816,"children":14817},{"style":461},[14818],{"type":52,"value":92},{"type":46,"tag":425,"props":14820,"children":14821},{"style":432},[14822],{"type":52,"value":440},{"type":46,"tag":425,"props":14824,"children":14825},{"style":432},[14826],{"type":52,"value":473},{"type":46,"tag":425,"props":14828,"children":14829},{"style":432},[14830],{"type":52,"value":458},{"type":46,"tag":425,"props":14832,"children":14833},{"style":1317},[14834],{"type":52,"value":1373},{"type":46,"tag":425,"props":14836,"children":14837},{"style":432},[14838],{"type":52,"value":440},{"type":46,"tag":425,"props":14840,"children":14841},{"style":432},[14842],{"type":52,"value":369},{"type":46,"tag":425,"props":14844,"children":14845},{"style":432},[14846],{"type":52,"value":458},{"type":46,"tag":425,"props":14848,"children":14849},{"style":461},[14850],{"type":52,"value":14782},{"type":46,"tag":425,"props":14852,"children":14853},{"style":432},[14854],{"type":52,"value":440},{"type":46,"tag":425,"props":14856,"children":14857},{"style":432},[14858],{"type":52,"value":473},{"type":46,"tag":425,"props":14860,"children":14861},{"style":432},[14862],{"type":52,"value":458},{"type":46,"tag":425,"props":14864,"children":14865},{"style":1317},[14866],{"type":52,"value":5249},{"type":46,"tag":425,"props":14868,"children":14869},{"style":432},[14870],{"type":52,"value":440},{"type":46,"tag":425,"props":14872,"children":14873},{"style":432},[14874],{"type":52,"value":369},{"type":46,"tag":425,"props":14876,"children":14877},{"style":756},[14878],{"type":52,"value":5262},{"type":46,"tag":425,"props":14880,"children":14881},{"style":432},[14882],{"type":52,"value":5267},{"type":46,"tag":425,"props":14884,"children":14886},{"class":427,"line":14885},223,[14887],{"type":46,"tag":425,"props":14888,"children":14889},{"style":432},[14890],{"type":52,"value":5090},{"type":46,"tag":425,"props":14892,"children":14894},{"class":427,"line":14893},224,[14895],{"type":46,"tag":425,"props":14896,"children":14897},{"style":432},[14898],{"type":52,"value":6148},{"type":46,"tag":425,"props":14900,"children":14902},{"class":427,"line":14901},225,[14903,14907,14911,14915,14919],{"type":46,"tag":425,"props":14904,"children":14905},{"style":432},[14906],{"type":52,"value":708},{"type":46,"tag":425,"props":14908,"children":14909},{"style":443},[14910],{"type":52,"value":6161},{"type":46,"tag":425,"props":14912,"children":14913},{"style":432},[14914],{"type":52,"value":440},{"type":46,"tag":425,"props":14916,"children":14917},{"style":432},[14918],{"type":52,"value":369},{"type":46,"tag":425,"props":14920,"children":14921},{"style":432},[14922],{"type":52,"value":2918},{"type":46,"tag":425,"props":14924,"children":14926},{"class":427,"line":14925},226,[14927,14931,14935,14939,14943,14947,14951,14955,14959,14963],{"type":46,"tag":425,"props":14928,"children":14929},{"style":432},[14930],{"type":52,"value":708},{"type":46,"tag":425,"props":14932,"children":14933},{"style":443},[14934],{"type":52,"value":6186},{"type":46,"tag":425,"props":14936,"children":14937},{"style":432},[14938],{"type":52,"value":440},{"type":46,"tag":425,"props":14940,"children":14941},{"style":432},[14942],{"type":52,"value":369},{"type":46,"tag":425,"props":14944,"children":14945},{"style":432},[14946],{"type":52,"value":726},{"type":46,"tag":425,"props":14948,"children":14949},{"style":432},[14950],{"type":52,"value":440},{"type":46,"tag":425,"props":14952,"children":14953},{"style":733},[14954],{"type":52,"value":6207},{"type":46,"tag":425,"props":14956,"children":14957},{"style":432},[14958],{"type":52,"value":440},{"type":46,"tag":425,"props":14960,"children":14961},{"style":432},[14962],{"type":52,"value":369},{"type":46,"tag":425,"props":14964,"children":14965},{"style":432},[14966],{"type":52,"value":6220},{"type":46,"tag":425,"props":14968,"children":14970},{"class":427,"line":14969},227,[14971],{"type":46,"tag":425,"props":14972,"children":14973},{"style":432},[14974],{"type":52,"value":507},{"type":46,"tag":113,"props":14976,"children":14977},{},[],{"type":46,"tag":117,"props":14979,"children":14981},{"id":14980},"debugging-guidance",[14982],{"type":52,"value":14983},"Debugging guidance",{"type":46,"tag":55,"props":14985,"children":14986},{},[14987],{"type":52,"value":14988},"When a user reports a broken workflow, ask which node is failing and what error they see, then refer to these common issues:",{"type":46,"tag":6243,"props":14990,"children":14991},{},[14992,15013],{"type":46,"tag":6247,"props":14993,"children":14994},{},[14995],{"type":46,"tag":6251,"props":14996,"children":14997},{},[14998,15003,15008],{"type":46,"tag":6255,"props":14999,"children":15000},{},[15001],{"type":52,"value":15002},"Error \u002F Symptom",{"type":46,"tag":6255,"props":15004,"children":15005},{},[15006],{"type":52,"value":15007},"Cause",{"type":46,"tag":6255,"props":15009,"children":15010},{},[15011],{"type":52,"value":15012},"Fix",{"type":46,"tag":6266,"props":15014,"children":15015},{},[15016,15040,15065,15083,15106,15124],{"type":46,"tag":6251,"props":15017,"children":15018},{},[15019,15024,15035],{"type":46,"tag":6273,"props":15020,"children":15021},{},[15022],{"type":52,"value":15023},"\"Assistant not found\"",{"type":46,"tag":6273,"props":15025,"children":15026},{},[15027,15033],{"type":46,"tag":77,"props":15028,"children":15030},{"className":15029},[],[15031],{"type":52,"value":15032},"assistantData.name",{"type":52,"value":15034}," doesn't match an existing assistant",{"type":46,"tag":6273,"props":15036,"children":15037},{},[15038],{"type":52,"value":15039},"Create the assistant in the Pinecone Console first, then match the name exactly",{"type":46,"tag":6251,"props":15041,"children":15042},{},[15043,15048,15053],{"type":46,"tag":6273,"props":15044,"children":15045},{},[15046],{"type":52,"value":15047},"\"Invalid credentials\"",{"type":46,"tag":6273,"props":15049,"children":15050},{},[15051],{"type":52,"value":15052},"Pinecone API key not set or wrong credential on the node",{"type":46,"tag":6273,"props":15054,"children":15055},{},[15056,15058,15063],{"type":52,"value":15057},"Re-select the ",{"type":46,"tag":77,"props":15059,"children":15061},{"className":15060},[],[15062],{"type":52,"value":632},{"type":52,"value":15064}," credential on each Pinecone node",{"type":46,"tag":6251,"props":15066,"children":15067},{},[15068,15073,15078],{"type":46,"tag":6273,"props":15069,"children":15070},{},[15071],{"type":52,"value":15072},"\"Dimension mismatch\"",{"type":46,"tag":6273,"props":15074,"children":15075},{},[15076],{"type":52,"value":15077},"Embedding model dimensions don't match the index",{"type":46,"tag":6273,"props":15079,"children":15080},{},[15081],{"type":52,"value":15082},"Index and embeddings node must use the same dimensions (e.g., 1536 for text-embedding-3-small)",{"type":46,"tag":6251,"props":15084,"children":15085},{},[15086,15091,15101],{"type":46,"tag":6273,"props":15087,"children":15088},{},[15089],{"type":52,"value":15090},"Tool never called by Agent",{"type":46,"tag":6273,"props":15092,"children":15093},{},[15094,15099],{"type":46,"tag":77,"props":15095,"children":15097},{"className":15096},[],[15098],{"type":52,"value":8186},{"type":52,"value":15100}," is vague",{"type":46,"tag":6273,"props":15102,"children":15103},{},[15104],{"type":52,"value":15105},"Make the description specific: what data is in the store, what questions it can answer",{"type":46,"tag":6251,"props":15107,"children":15108},{},[15109,15114,15119],{"type":46,"tag":6273,"props":15110,"children":15111},{},[15112],{"type":52,"value":15113},"No results returned",{"type":46,"tag":6273,"props":15115,"children":15116},{},[15117],{"type":52,"value":15118},"Ingestion didn't run, or topK too low",{"type":46,"tag":6273,"props":15120,"children":15121},{},[15122],{"type":52,"value":15123},"Run Phase 1 first; try increasing topK to 20+",{"type":46,"tag":6251,"props":15125,"children":15126},{},[15127,15132,15137],{"type":46,"tag":6273,"props":15128,"children":15129},{},[15130],{"type":52,"value":15131},"HTTP node calling Pinecone API",{"type":46,"tag":6273,"props":15133,"children":15134},{},[15135],{"type":52,"value":15136},"Wrong pattern",{"type":46,"tag":6273,"props":15138,"children":15139},{},[15140,15142,15147,15149],{"type":52,"value":15141},"Replace with ",{"type":46,"tag":77,"props":15143,"children":15145},{"className":15144},[],[15146],{"type":52,"value":286},{"type":52,"value":15148}," or ",{"type":46,"tag":77,"props":15150,"children":15152},{"className":15151},[],[15153],{"type":52,"value":99},{"type":46,"tag":113,"props":15155,"children":15156},{},[],{"type":46,"tag":117,"props":15158,"children":15160},{"id":15159},"best-practices-review-checklist",[15161],{"type":52,"value":15162},"Best practices review checklist",{"type":46,"tag":55,"props":15164,"children":15165},{},[15166],{"type":52,"value":15167},"When reviewing an existing workflow:",{"type":46,"tag":386,"props":15169,"children":15170},{},[15171,15181,15191,15232,15241,15257,15267,15289,15313,15344,15354],{"type":46,"tag":65,"props":15172,"children":15173},{},[15174,15179],{"type":46,"tag":69,"props":15175,"children":15176},{},[15177],{"type":52,"value":15178},"No HTTP nodes calling Pinecone endpoints",{"type":52,"value":15180}," — replace any with the proper Pinecone node",{"type":46,"tag":65,"props":15182,"children":15183},{},[15184,15189],{"type":46,"tag":69,"props":15185,"children":15186},{},[15187],{"type":52,"value":15188},"Vector Store",{"type":52,"value":15190},": same Embeddings node connected to both insert and retrieve-as-tool instances",{"type":46,"tag":65,"props":15192,"children":15193},{},[15194,15199,15200,15205,15207,15212,15213,15218,15220,15225,15227],{"type":46,"tag":69,"props":15195,"children":15196},{},[15197],{"type":52,"value":15198},"Assistant",{"type":52,"value":695},{"type":46,"tag":77,"props":15201,"children":15203},{"className":15202},[],[15204],{"type":52,"value":4334},{"type":52,"value":15206}," includes both ",{"type":46,"tag":77,"props":15208,"children":15210},{"className":15209},[],[15211],{"type":52,"value":404},{"type":52,"value":406},{"type":46,"tag":77,"props":15214,"children":15216},{"className":15215},[],[15217],{"type":52,"value":412},{"type":52,"value":15219},"; ",{"type":46,"tag":77,"props":15221,"children":15223},{"className":15222},[],[15224],{"type":52,"value":525},{"type":52,"value":15226}," is present in ",{"type":46,"tag":77,"props":15228,"children":15230},{"className":15229},[],[15231],{"type":52,"value":533},{"type":46,"tag":65,"props":15233,"children":15234},{},[15235,15239],{"type":46,"tag":69,"props":15236,"children":15237},{},[15238],{"type":52,"value":8186},{"type":52,"value":15240}," is specific and descriptive (not generic like \"a vector store\")",{"type":46,"tag":65,"props":15242,"children":15243},{},[15244,15249,15250,15255],{"type":46,"tag":69,"props":15245,"children":15246},{},[15247],{"type":52,"value":15248},"Vector Store metadata",{"type":52,"value":695},{"type":46,"tag":77,"props":15251,"children":15253},{"className":15252},[],[15254],{"type":52,"value":8213},{"type":52,"value":15256}," stored in the Default Data Loader metadata for source citations",{"type":46,"tag":65,"props":15258,"children":15259},{},[15260,15265],{"type":46,"tag":69,"props":15261,"children":15262},{},[15263],{"type":52,"value":15264},"Assistant file metadata",{"type":52,"value":15266},": files uploaded with meaningful key-value metadata when filtering will be needed later",{"type":46,"tag":65,"props":15268,"children":15269},{},[15270,15275,15276,15281,15282,15287],{"type":46,"tag":69,"props":15271,"children":15272},{},[15273],{"type":52,"value":15274},"Metadata filter",{"type":52,"value":695},{"type":46,"tag":77,"props":15277,"children":15279},{"className":15278},[],[15280],{"type":52,"value":6887},{"type":52,"value":406},{"type":46,"tag":77,"props":15283,"children":15285},{"className":15284},[],[15286],{"type":52,"value":7525},{"type":52,"value":15288}," use a metadata filter (not both filter fields at once) when scoping to a subset of files",{"type":46,"tag":65,"props":15290,"children":15291},{},[15292,15297,15298,15304,15306,15311],{"type":46,"tag":69,"props":15293,"children":15294},{},[15295],{"type":52,"value":15296},"Multimodal upload",{"type":52,"value":695},{"type":46,"tag":77,"props":15299,"children":15301},{"className":15300},[],[15302],{"type":52,"value":15303},"multimodalFile: true",{"type":52,"value":15305}," is set on ",{"type":46,"tag":77,"props":15307,"children":15309},{"className":15308},[],[15310],{"type":52,"value":1052},{"type":52,"value":15312}," when PDFs contain images or charts — this is required to index visual content and is NOT the default",{"type":46,"tag":65,"props":15314,"children":15315},{},[15316,15321,15322,15328,15329,15335,15337,15342],{"type":46,"tag":69,"props":15317,"children":15318},{},[15319],{"type":52,"value":15320},"Multimodal retrieval",{"type":52,"value":695},{"type":46,"tag":77,"props":15323,"children":15325},{"className":15324},[],[15326],{"type":52,"value":15327},"includeMultimodalContext: true",{"type":52,"value":406},{"type":46,"tag":77,"props":15330,"children":15332},{"className":15331},[],[15333],{"type":52,"value":15334},"includeBinaryContent: true",{"type":52,"value":15336}," on ",{"type":46,"tag":77,"props":15338,"children":15340},{"className":15339},[],[15341],{"type":52,"value":7525},{"type":52,"value":15343}," when the workflow needs image chunks alongside text",{"type":46,"tag":65,"props":15345,"children":15346},{},[15347,15352],{"type":46,"tag":69,"props":15348,"children":15349},{},[15350],{"type":52,"value":15351},"Chunk size",{"type":52,"value":15353}," is appropriate for the content type (see chunking guidance above)",{"type":46,"tag":65,"props":15355,"children":15356},{},[15357,15362],{"type":46,"tag":69,"props":15358,"children":15359},{},[15360],{"type":52,"value":15361},"Index exists",{"type":52,"value":15363}," with correct dimensions before the workflow runs",{"type":46,"tag":15365,"props":15366,"children":15367},"style",{},[15368],{"type":52,"value":15369},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":15371,"total":1363},[15372,15389,15403,15417,15427,15439,15451],{"slug":15373,"name":15373,"fn":15374,"description":15375,"org":15376,"tags":15377,"stars":23,"repoUrl":24,"updatedAt":15388},"pinecone-assistant","manage Pinecone Assistants for document Q&A","Create, manage, and chat with Pinecone Assistants for document Q&A with citations. Handles all assistant operations - create, upload, sync, chat, context retrieval, and list. Recognizes natural language like \"create an assistant from my docs\", \"ask my assistant about X\", or \"upload my docs to Pinecone\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[15378,15381,15384,15385],{"name":15379,"slug":15380,"type":15},"Documents","documents",{"name":15382,"slug":15383,"type":15},"LLM","llm",{"name":9,"slug":8,"type":15},{"name":15386,"slug":15387,"type":15},"Search","search","2026-07-13T06:02:40.044479",{"slug":15390,"name":15390,"fn":15391,"description":15392,"org":15393,"tags":15394,"stars":23,"repoUrl":24,"updatedAt":15402},"pinecone-cli","manage Pinecone resources via CLI","Guide for using the Pinecone CLI (pc) to manage Pinecone resources from the terminal. The CLI supports ALL index types (standard, integrated, sparse) and all vector operations — unlike the MCP which only supports integrated indexes. Use for batch operations, vector management, backups, namespaces, CI\u002FCD automation, and full control over Pinecone resources.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[15395,15398,15401],{"name":15396,"slug":15397,"type":15},"CLI","cli",{"name":15399,"slug":15400,"type":15},"Database","database",{"name":9,"slug":8,"type":15},"2026-07-13T06:02:31.804044",{"slug":15404,"name":15404,"fn":15405,"description":15406,"org":15407,"tags":15408,"stars":23,"repoUrl":24,"updatedAt":15416},"pinecone-docs","search Pinecone developer documentation","Curated documentation reference for developers building with Pinecone. Contains links to official docs organized by topic and data format references. Use when writing Pinecone code, looking up API parameters, or needing the correct format for vectors or records.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[15409,15412,15413],{"name":15410,"slug":15411,"type":15},"Documentation","documentation",{"name":9,"slug":8,"type":15},{"name":15414,"slug":15415,"type":15},"Reference","reference","2026-07-13T06:02:35.982565",{"slug":15418,"name":15418,"fn":15419,"description":15420,"org":15421,"tags":15422,"stars":23,"repoUrl":24,"updatedAt":15426},"pinecone-full-text-search","build and query Pinecone full-text search indexes","Create, ingest into, and query a Pinecone full-text-search (FTS) index using the preview API (2026-01.alpha, public preview). Use when the user or agent asks to build a text search index on Pinecone, add dense or sparse vector fields, ingest documents, construct score_by clauses (text \u002F query_string \u002F dense_vector \u002F sparse_vector), or compose with text-match filters ($match_phrase \u002F $match_all \u002F $match_any). Ships `scripts\u002Fingest.py` for safe bulk ingestion (batch_upsert + error inspection + readiness polling); query construction is documented inline in this skill — write `documents.search(...)` calls directly, validated against `pc.preview.indexes.describe(...)` output.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[15423,15424,15425],{"name":15399,"slug":15400,"type":15},{"name":9,"slug":8,"type":15},{"name":15386,"slug":15387,"type":15},"2026-07-13T06:02:43.249808",{"slug":15428,"name":15428,"fn":15429,"description":15430,"org":15431,"tags":15432,"stars":23,"repoUrl":24,"updatedAt":15438},"pinecone-help","get started with Pinecone agent skills","Overview of all available Pinecone skills and what a user needs to get started. Invoke when a user asks what skills are available, how to get started with Pinecone, or what they need to set up before using any Pinecone skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[15433,15434,15437],{"name":15410,"slug":15411,"type":15},{"name":15435,"slug":15436,"type":15},"Onboarding","onboarding",{"name":9,"slug":8,"type":15},"2026-07-13T06:02:37.342095",{"slug":15440,"name":15440,"fn":15441,"description":15442,"org":15443,"tags":15444,"stars":23,"repoUrl":24,"updatedAt":15450},"pinecone-mcp","reference Pinecone MCP server tools","Reference for the Pinecone MCP server tools. Documents all available tools - list-indexes, describe-index, describe-index-stats, create-index-for-model, upsert-records, search-records, cascading-search, and rerank-documents. Use when an agent needs to understand what Pinecone MCP tools are available, how to use them, or what parameters they accept.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[15445,15446,15449],{"name":15410,"slug":15411,"type":15},{"name":15447,"slug":15448,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-07-13T06:02:33.158312",{"slug":4,"name":4,"fn":5,"description":6,"org":15452,"tags":15453,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[15454,15455,15456,15457],{"name":14,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},{"name":21,"slug":22,"type":15},{"items":15459,"total":1702},[15460,15473,15482,15492,15501,15511,15522,15532,15544,15556,15563,15569],{"slug":15461,"name":15462,"fn":15374,"description":15375,"org":15463,"tags":15464,"stars":3065,"repoUrl":15471,"updatedAt":15472},"pineconeassistant","pinecone:assistant",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[15465,15468,15469,15470],{"name":15466,"slug":15467,"type":15},"Knowledge Management","knowledge-management",{"name":15382,"slug":15383,"type":15},{"name":9,"slug":8,"type":15},{"name":15386,"slug":15387,"type":15},"https:\u002F\u002Fgithub.com\u002Fpinecone-io\u002Fpinecone-claude-code-plugin","2026-07-13T06:02:15.573985",{"slug":15474,"name":15475,"fn":15391,"description":15392,"org":15476,"tags":15477,"stars":3065,"repoUrl":15471,"updatedAt":15481},"pineconecli","pinecone:cli",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[15478,15479,15480],{"name":15396,"slug":15397,"type":15},{"name":15399,"slug":15400,"type":15},{"name":9,"slug":8,"type":15},"2026-07-13T06:02:07.032383",{"slug":15483,"name":15484,"fn":15405,"description":15406,"org":15485,"tags":15486,"stars":3065,"repoUrl":15471,"updatedAt":15491},"pineconedocs","pinecone:docs",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[15487,15488,15489,15490],{"name":15410,"slug":15411,"type":15},{"name":9,"slug":8,"type":15},{"name":15414,"slug":15415,"type":15},{"name":15386,"slug":15387,"type":15},"2026-07-13T06:02:12.996533",{"slug":15493,"name":15494,"fn":15419,"description":15420,"org":15495,"tags":15496,"stars":3065,"repoUrl":15471,"updatedAt":15500},"pineconefull-text-search","pinecone:full-text-search",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[15497,15498,15499],{"name":15399,"slug":15400,"type":15},{"name":9,"slug":8,"type":15},{"name":15386,"slug":15387,"type":15},"2026-07-13T06:02:18.270055",{"slug":15502,"name":15503,"fn":15504,"description":15430,"org":15505,"tags":15506,"stars":3065,"repoUrl":15471,"updatedAt":15510},"pineconehelp","pinecone:help","provide Pinecone skill guidance",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[15507,15508,15509],{"name":15410,"slug":15411,"type":15},{"name":9,"slug":8,"type":15},{"name":15414,"slug":15415,"type":15},"2026-07-13T06:02:11.702305",{"slug":15512,"name":15513,"fn":15514,"description":15442,"org":15515,"tags":15516,"stars":3065,"repoUrl":15471,"updatedAt":15521},"pineconemcp","pinecone:mcp","use Pinecone MCP server tools",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[15517,15518,15519,15520],{"name":15399,"slug":15400,"type":15},{"name":15447,"slug":15448,"type":15},{"name":9,"slug":8,"type":15},{"name":15386,"slug":15387,"type":15},"2026-07-16T05:59:21.318686",{"slug":15523,"name":15524,"fn":5,"description":6,"org":15525,"tags":15526,"stars":3065,"repoUrl":15471,"updatedAt":15531},"pineconen8n","pinecone:n8n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[15527,15528,15529,15530],{"name":14,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":17,"slug":18,"type":15},{"name":21,"slug":22,"type":15},"2026-07-13T06:02:05.735702",{"slug":15533,"name":15534,"fn":15535,"description":15536,"org":15537,"tags":15538,"stars":3065,"repoUrl":15471,"updatedAt":15543},"pineconequery","pinecone:query","query Pinecone integrated indexes with text","Query integrated indexes using text with Pinecone MCP. IMPORTANT - This skill ONLY works with integrated indexes (indexes with built-in Pinecone embedding models like multilingual-e5-large). For standard indexes or advanced vector operations, use the CLI skill instead. Requires PINECONE_API_KEY environment variable and Pinecone MCP server to be configured.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[15539,15540,15541,15542],{"name":15399,"slug":15400,"type":15},{"name":15447,"slug":15448,"type":15},{"name":9,"slug":8,"type":15},{"name":15386,"slug":15387,"type":15},"2026-07-13T06:02:14.255922",{"slug":15545,"name":15546,"fn":15547,"description":15548,"org":15549,"tags":15550,"stars":3065,"repoUrl":15471,"updatedAt":15555},"pineconequickstart","pinecone:quickstart","run interactive Pinecone quickstart for developers","Interactive Pinecone quickstart for new developers. Choose between two paths - Database (create an integrated index, upsert data, and query using Pinecone MCP + Python) or Assistant (create a Pinecone Assistant for document Q&A). Use when a user wants to get started with Pinecone for the first time or wants a guided tour of Pinecone's tools.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[15551,15552,15553,15554],{"name":15399,"slug":15400,"type":15},{"name":15447,"slug":15448,"type":15},{"name":15435,"slug":15436,"type":15},{"name":9,"slug":8,"type":15},"2026-07-13T06:02:16.886569",{"slug":15373,"name":15373,"fn":15374,"description":15375,"org":15557,"tags":15558,"stars":23,"repoUrl":24,"updatedAt":15388},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[15559,15560,15561,15562],{"name":15379,"slug":15380,"type":15},{"name":15382,"slug":15383,"type":15},{"name":9,"slug":8,"type":15},{"name":15386,"slug":15387,"type":15},{"slug":15390,"name":15390,"fn":15391,"description":15392,"org":15564,"tags":15565,"stars":23,"repoUrl":24,"updatedAt":15402},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[15566,15567,15568],{"name":15396,"slug":15397,"type":15},{"name":15399,"slug":15400,"type":15},{"name":9,"slug":8,"type":15},{"slug":15404,"name":15404,"fn":15405,"description":15406,"org":15570,"tags":15571,"stars":23,"repoUrl":24,"updatedAt":15416},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[15572,15573,15574],{"name":15410,"slug":15411,"type":15},{"name":9,"slug":8,"type":15},{"name":15414,"slug":15415,"type":15}]