[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-pinecone-pineconen8n":3,"mdc-7yds7d-key":45,"related-org-pinecone-pineconen8n":15376,"related-repo-pinecone-pineconen8n":15523},{"slug":4,"name":5,"fn":6,"description":7,"org":8,"tags":13,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":40,"sourceUrl":43,"mdContent":44},"pineconen8n","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":9,"name":10,"logoUrl":11,"githubOrg":12},"pinecone","Pinecone","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fpinecone.png","pinecone-io",[14,17,20,21],{"name":15,"slug":15,"type":16},"n8n","tag",{"name":18,"slug":19,"type":16},"RAG","rag",{"name":10,"slug":9,"type":16},{"name":22,"slug":23,"type":16},"Workflow Automation","workflow-automation",67,"https:\u002F\u002Fgithub.com\u002Fpinecone-io\u002Fpinecone-claude-code-plugin","2026-07-13T06:02:05.735702",null,12,[30,31,32,33,34,35,9,36,37,38,39],"anthropic-claude","claude-code","claude-code-plugin","claude-code-plugin-marketplace","hybrid-search","mcp","retrieval-augmented-generation","semantic-search","skills","vector-database",{"repoUrl":25,"stars":24,"forks":28,"topics":41,"description":42},[30,31,32,33,34,35,9,36,37,38,39],"The official Pinecone marketplace for Claude Code Plugins","https:\u002F\u002Fgithub.com\u002Fpinecone-io\u002Fpinecone-claude-code-plugin\u002Ftree\u002FHEAD\u002Fskills\u002Fn8n","---\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, Read\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":46,"body":48},{"name":5,"description":7,"allowed-tools":47},"Write, Read",{"type":49,"children":50},"root",[51,60,66,108,118,122,129,134,157,160,166,171,179,192,202,207,215,238,245,263,266,272,279,304,310,333,339,344,354,366,376,385,391,1062,1068,1073,1125,1137,1213,6235,6241,6248,6309,6340,6406,6775,6781,6794,7257,7277,7413,7419,7431,7916,7963,7966,7972,7978,7986,7991,8016,8021,8034,8042,8051,8059,8068,8073,8244,8250,8284,8290,8295,8328,8334,8339,8405,8414,8477,14981,14984,14990,14995,15160,15163,15169,15174,15370],{"type":52,"tag":53,"props":54,"children":56},"element","h1",{"id":55},"pinecone-n8n-workflow-skill",[57],{"type":58,"value":59},"text","Pinecone n8n Workflow Skill",{"type":52,"tag":61,"props":62,"children":63},"p",{},[64],{"type":58,"value":65},"This skill helps you build n8n workflows with Pinecone nodes following best practices. It covers two Pinecone nodes:",{"type":52,"tag":67,"props":68,"children":69},"ul",{},[70,91],{"type":52,"tag":71,"props":72,"children":73},"li",{},[74,80,82,89],{"type":52,"tag":75,"props":76,"children":77},"strong",{},[78],{"type":58,"value":79},"Pinecone Assistant",{"type":58,"value":81}," (",{"type":52,"tag":83,"props":84,"children":86},"code",{"className":85},[],[87],{"type":58,"value":88},"@pinecone-database\u002Fn8n-nodes-pinecone-assistant",{"type":58,"value":90},") — recommended for most use cases",{"type":52,"tag":71,"props":92,"children":93},{},[94,99,100,106],{"type":52,"tag":75,"props":95,"children":96},{},[97],{"type":58,"value":98},"Pinecone Vector Store",{"type":58,"value":81},{"type":52,"tag":83,"props":101,"children":103},{"className":102},[],[104],{"type":58,"value":105},"@n8n\u002Fn8n-nodes-langchain.vectorStorePinecone",{"type":58,"value":107},") — for advanced control",{"type":52,"tag":61,"props":109,"children":110},{},[111,116],{"type":52,"tag":75,"props":112,"children":113},{},[114],{"type":58,"value":115},"Core rule:",{"type":58,"value":117}," Always use the node's built-in resources and operations. Never suggest using the HTTP node to call the Pinecone REST API directly.",{"type":52,"tag":119,"props":120,"children":121},"hr",{},[],{"type":52,"tag":123,"props":124,"children":126},"h2",{"id":125},"step-1-understand-the-users-scenario",[127],{"type":58,"value":128},"Step 1: Understand the user's scenario",{"type":52,"tag":61,"props":130,"children":131},{},[132],{"type":58,"value":133},"Ask the user what they're trying to do:",{"type":52,"tag":67,"props":135,"children":136},{},[137,142,147,152],{"type":52,"tag":71,"props":138,"children":139},{},[140],{"type":58,"value":141},"Build a new workflow from scratch",{"type":52,"tag":71,"props":143,"children":144},{},[145],{"type":58,"value":146},"Configure or understand a specific Pinecone node",{"type":52,"tag":71,"props":148,"children":149},{},[150],{"type":58,"value":151},"Debug a workflow that isn't working",{"type":52,"tag":71,"props":153,"children":154},{},[155],{"type":58,"value":156},"Review an existing workflow for best practices",{"type":52,"tag":119,"props":158,"children":159},{},[],{"type":52,"tag":123,"props":161,"children":163},{"id":162},"step-2-node-selection-for-new-workflows-and-configuration-questions",[164],{"type":58,"value":165},"Step 2: Node selection (for new workflows and configuration questions)",{"type":52,"tag":61,"props":167,"children":168},{},[169],{"type":58,"value":170},"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":52,"tag":61,"props":172,"children":173},{},[174],{"type":52,"tag":75,"props":175,"children":176},{},[177],{"type":58,"value":178},"Only skip this step if:",{"type":52,"tag":67,"props":180,"children":181},{},[182,187],{"type":52,"tag":71,"props":183,"children":184},{},[185],{"type":58,"value":186},"The user explicitly names a specific node (e.g. \"I want to use the Vector Store node\", \"help me set up pineconeAssistant\")",{"type":52,"tag":71,"props":188,"children":189},{},[190],{"type":58,"value":191},"The user is debugging or configuring an existing workflow that already has a specific Pinecone node in it",{"type":52,"tag":61,"props":193,"children":194},{},[195,200],{"type":52,"tag":75,"props":196,"children":197},{},[198],{"type":58,"value":199},"If the user has not named a node, always ask or recommend the Assistant node first.",{"type":58,"value":201}," If the user said \"use defaults\" or you cannot ask, default to the Pinecone Assistant node and proceed with the Assistant path.",{"type":52,"tag":61,"props":203,"children":204},{},[205],{"type":58,"value":206},"Ask the user which node they want to use, presenting these two options:",{"type":52,"tag":61,"props":208,"children":209},{},[210],{"type":52,"tag":75,"props":211,"children":212},{},[213],{"type":58,"value":214},"Pinecone Assistant (Recommended)",{"type":52,"tag":67,"props":216,"children":217},{},[218,223,228,233],{"type":52,"tag":71,"props":219,"children":220},{},[221],{"type":58,"value":222},"Fully managed RAG — Pinecone handles chunking, embedding, and indexing automatically",{"type":52,"tag":71,"props":224,"children":225},{},[226],{"type":58,"value":227},"Built-in citations with file names and URLs",{"type":52,"tag":71,"props":229,"children":230},{},[231],{"type":58,"value":232},"Simpler setup: no embedding model or text splitter needed in n8n",{"type":52,"tag":71,"props":234,"children":235},{},[236],{"type":58,"value":237},"Great for: document Q&A, chat with files, knowledge base search",{"type":52,"tag":61,"props":239,"children":240},{},[241],{"type":52,"tag":75,"props":242,"children":243},{},[244],{"type":58,"value":98},{"type":52,"tag":67,"props":246,"children":247},{},[248,253,258],{"type":52,"tag":71,"props":249,"children":250},{},[251],{"type":58,"value":252},"Full control over embedding model, chunking strategy, and metadata",{"type":52,"tag":71,"props":254,"children":255},{},[256],{"type":58,"value":257},"Works with any embedding model (OpenAI, Cohere, HuggingFace, etc.)",{"type":52,"tag":71,"props":259,"children":260},{},[261],{"type":58,"value":262},"Required when: you need custom embeddings, have an existing Pinecone index, need metadata filtering, or need fine-grained control over chunking",{"type":52,"tag":119,"props":264,"children":265},{},[],{"type":52,"tag":123,"props":267,"children":269},{"id":268},"pinecone-assistant-node-best-practices-and-workflow-generation",[270],{"type":58,"value":271},"Pinecone Assistant Node — Best Practices and Workflow Generation",{"type":52,"tag":273,"props":274,"children":276},"h3",{"id":275},"node-package-names",[277],{"type":58,"value":278},"Node package names",{"type":52,"tag":67,"props":280,"children":281},{},[282,293],{"type":52,"tag":71,"props":283,"children":284},{},[285,287],{"type":58,"value":286},"File operations (upload, list, delete): ",{"type":52,"tag":83,"props":288,"children":290},{"className":289},[],[291],{"type":58,"value":292},"@pinecone-database\u002Fn8n-nodes-pinecone-assistant.pineconeAssistant",{"type":52,"tag":71,"props":294,"children":295},{},[296,298],{"type":58,"value":297},"Chat\u002Fretrieval as AI Agent tool: ",{"type":52,"tag":83,"props":299,"children":301},{"className":300},[],[302],{"type":58,"value":303},"@pinecone-database\u002Fn8n-nodes-pinecone-assistant.pineconeAssistantTool",{"type":52,"tag":273,"props":305,"children":307},{"id":306},"prerequisites",[308],{"type":58,"value":309},"Prerequisites",{"type":52,"tag":67,"props":311,"children":312},{},[313,328],{"type":52,"tag":71,"props":314,"children":315},{},[316,318,326],{"type":58,"value":317},"Create a Pinecone Assistant in the Pinecone Console at ",{"type":52,"tag":319,"props":320,"children":324},"a",{"href":321,"rel":322},"https:\u002F\u002Fapp.pinecone.io\u002Forganizations\u002F-\u002Fprojects\u002F-\u002Fassistant",[323],"nofollow",[325],{"type":58,"value":321},{"type":58,"value":327}," before running the workflow",{"type":52,"tag":71,"props":329,"children":330},{},[331],{"type":58,"value":332},"Set up a Pinecone credential in n8n with your API key",{"type":52,"tag":273,"props":334,"children":336},{"id":335},"workflow-architecture",[337],{"type":58,"value":338},"Workflow architecture",{"type":52,"tag":61,"props":340,"children":341},{},[342],{"type":58,"value":343},"The standard pattern is a two-phase workflow:",{"type":52,"tag":61,"props":345,"children":346},{},[347,352],{"type":52,"tag":75,"props":348,"children":349},{},[350],{"type":58,"value":351},"Phase 1 — Ingestion",{"type":58,"value":353}," (run once or on a schedule):",{"type":52,"tag":355,"props":356,"children":360},"pre",{"className":357,"code":359,"language":58},[358],"language-text","Manual Trigger → Set file URLs → Split Out → HTTP Request (download) → Pinecone Assistant (uploadFile)\n",[361],{"type":52,"tag":83,"props":362,"children":364},{"__ignoreMap":363},"",[365],{"type":58,"value":359},{"type":52,"tag":61,"props":367,"children":368},{},[369,374],{"type":52,"tag":75,"props":370,"children":371},{},[372],{"type":58,"value":373},"Phase 2 — Chat",{"type":58,"value":375},":",{"type":52,"tag":355,"props":377,"children":380},{"className":378,"code":379,"language":58},[358],"Chat Trigger → AI Agent ← Pinecone Assistant Tool (connected as ai_tool)\n                        ← OpenAI Chat Model (connected as ai_languageModel)\n",[381],{"type":52,"tag":83,"props":382,"children":383},{"__ignoreMap":363},[384],{"type":58,"value":379},{"type":52,"tag":273,"props":386,"children":388},{"id":387},"key-configuration-rules",[389],{"type":58,"value":390},"Key configuration rules",{"type":52,"tag":392,"props":393,"children":394},"ol",{},[395,524,589,613,623,641,835,1036],{"type":52,"tag":71,"props":396,"children":397},{},[398,403,405,411,413,419,421,514,516,522],{"type":52,"tag":75,"props":399,"children":400},{},[401],{"type":58,"value":402},"assistantData parameter",{"type":58,"value":404},": Always include BOTH ",{"type":52,"tag":83,"props":406,"children":408},{"className":407},[],[409],{"type":58,"value":410},"name",{"type":58,"value":412}," and ",{"type":52,"tag":83,"props":414,"children":416},{"className":415},[],[417],{"type":58,"value":418},"host",{"type":58,"value":420}," fields:\n",{"type":52,"tag":355,"props":422,"children":426},{"className":423,"code":424,"language":425,"meta":363,"style":363},"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",[427],{"type":52,"tag":83,"props":428,"children":429},{"__ignoreMap":363},[430],{"type":52,"tag":431,"props":432,"children":435},"span",{"class":433,"line":434},"line",1,[436,442,447,452,456,460,465,471,475,480,484,488,492,496,500,505,509],{"type":52,"tag":431,"props":437,"children":439},{"style":438},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[440],{"type":58,"value":441},"{",{"type":52,"tag":431,"props":443,"children":444},{"style":438},[445],{"type":58,"value":446},"\"",{"type":52,"tag":431,"props":448,"children":450},{"style":449},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[451],{"type":58,"value":410},{"type":52,"tag":431,"props":453,"children":454},{"style":438},[455],{"type":58,"value":446},{"type":52,"tag":431,"props":457,"children":458},{"style":438},[459],{"type":58,"value":375},{"type":52,"tag":431,"props":461,"children":462},{"style":438},[463],{"type":58,"value":464}," \"",{"type":52,"tag":431,"props":466,"children":468},{"style":467},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[469],{"type":58,"value":470},"your-assistant-name",{"type":52,"tag":431,"props":472,"children":473},{"style":438},[474],{"type":58,"value":446},{"type":52,"tag":431,"props":476,"children":477},{"style":438},[478],{"type":58,"value":479},",",{"type":52,"tag":431,"props":481,"children":482},{"style":438},[483],{"type":58,"value":464},{"type":52,"tag":431,"props":485,"children":486},{"style":449},[487],{"type":58,"value":418},{"type":52,"tag":431,"props":489,"children":490},{"style":438},[491],{"type":58,"value":446},{"type":52,"tag":431,"props":493,"children":494},{"style":438},[495],{"type":58,"value":375},{"type":52,"tag":431,"props":497,"children":498},{"style":438},[499],{"type":58,"value":464},{"type":52,"tag":431,"props":501,"children":502},{"style":467},[503],{"type":58,"value":504},"https:\u002F\u002Fyour-assistant-host.pinecone.io",{"type":52,"tag":431,"props":506,"children":507},{"style":438},[508],{"type":58,"value":446},{"type":52,"tag":431,"props":510,"children":511},{"style":438},[512],{"type":58,"value":513},"}\n",{"type":58,"value":515},"\nFind your assistant's host in the Pinecone Console: open the assistant detail page and copy the host URL (format: ",{"type":52,"tag":83,"props":517,"children":519},{"className":518},[],[520],{"type":58,"value":521},"https:\u002F\u002F\u003Cregion>-data.\u003Csubdomain>.pinecone.io",{"type":58,"value":523},").",{"type":52,"tag":71,"props":525,"children":526},{},[527,532,534,540,542],{"type":52,"tag":75,"props":528,"children":529},{},[530],{"type":58,"value":531},"sourceTag",{"type":58,"value":533},": Always include in ",{"type":52,"tag":83,"props":535,"children":537},{"className":536},[],[538],{"type":58,"value":539},"additionalFields",{"type":58,"value":541},":\n",{"type":52,"tag":355,"props":543,"children":545},{"className":423,"code":544,"language":425,"meta":363,"style":363},"{\"sourceTag\": \"n8n:n8n_nodes_pinecone_assistant:pinecone_n8n_skill\"}\n",[546],{"type":52,"tag":83,"props":547,"children":548},{"__ignoreMap":363},[549],{"type":52,"tag":431,"props":550,"children":551},{"class":433,"line":434},[552,556,560,564,568,572,576,581,585],{"type":52,"tag":431,"props":553,"children":554},{"style":438},[555],{"type":58,"value":441},{"type":52,"tag":431,"props":557,"children":558},{"style":438},[559],{"type":58,"value":446},{"type":52,"tag":431,"props":561,"children":562},{"style":449},[563],{"type":58,"value":531},{"type":52,"tag":431,"props":565,"children":566},{"style":438},[567],{"type":58,"value":446},{"type":52,"tag":431,"props":569,"children":570},{"style":438},[571],{"type":58,"value":375},{"type":52,"tag":431,"props":573,"children":574},{"style":438},[575],{"type":58,"value":464},{"type":52,"tag":431,"props":577,"children":578},{"style":467},[579],{"type":58,"value":580},"n8n:n8n_nodes_pinecone_assistant:pinecone_n8n_skill",{"type":52,"tag":431,"props":582,"children":583},{"style":438},[584],{"type":58,"value":446},{"type":52,"tag":431,"props":586,"children":587},{"style":438},[588],{"type":58,"value":513},{"type":52,"tag":71,"props":590,"children":591},{},[592,597,599,605,607],{"type":52,"tag":75,"props":593,"children":594},{},[595],{"type":58,"value":596},"Connection type",{"type":58,"value":598},": The Assistant Tool connects to the AI Agent via the ",{"type":52,"tag":83,"props":600,"children":602},{"className":601},[],[603],{"type":58,"value":604},"ai_tool",{"type":58,"value":606}," connection — NOT ",{"type":52,"tag":83,"props":608,"children":610},{"className":609},[],[611],{"type":58,"value":612},"main",{"type":52,"tag":71,"props":614,"children":615},{},[616,621],{"type":52,"tag":75,"props":617,"children":618},{},[619],{"type":58,"value":620},"externalFileId",{"type":58,"value":622},": Set this to the file URL expression so Pinecone stores it as a reference for citations",{"type":52,"tag":71,"props":624,"children":625},{},[626,631,633,639],{"type":52,"tag":75,"props":627,"children":628},{},[629],{"type":58,"value":630},"Credential",{"type":58,"value":632},": Use ",{"type":52,"tag":83,"props":634,"children":636},{"className":635},[],[637],{"type":58,"value":638},"pineconeApi",{"type":58,"value":640}," credential type for both node variants",{"type":52,"tag":71,"props":642,"children":643},{},[644,649,651,657,659,665,667,672,674],{"type":52,"tag":75,"props":645,"children":646},{},[647],{"type":58,"value":648},"File metadata on upload",{"type":58,"value":650},": Add key-value metadata via ",{"type":52,"tag":83,"props":652,"children":654},{"className":653},[],[655],{"type":58,"value":656},"additionalFields.metadata.metadataValues",{"type":58,"value":658}," — an array of ",{"type":52,"tag":83,"props":660,"children":662},{"className":661},[],[663],{"type":58,"value":664},"{\"key\": \"...\", \"value\": \"...\"}",{"type":58,"value":666}," objects. The ",{"type":52,"tag":83,"props":668,"children":670},{"className":669},[],[671],{"type":58,"value":620},{"type":58,"value":673}," is automatically added to metadata; do not include it manually. Example:\n",{"type":52,"tag":355,"props":675,"children":677},{"className":423,"code":676,"language":425,"meta":363,"style":363},"\"additionalFields\": {\n  \"metadata\": {\"metadataValues\": [{\"key\": \"department\", \"value\": \"legal\"}]}\n}\n",[678],{"type":52,"tag":83,"props":679,"children":680},{"__ignoreMap":363},[681,707,827],{"type":52,"tag":431,"props":682,"children":683},{"class":433,"line":434},[684,688,692,696,702],{"type":52,"tag":431,"props":685,"children":686},{"style":438},[687],{"type":58,"value":446},{"type":52,"tag":431,"props":689,"children":690},{"style":467},[691],{"type":58,"value":539},{"type":52,"tag":431,"props":693,"children":694},{"style":438},[695],{"type":58,"value":446},{"type":52,"tag":431,"props":697,"children":699},{"style":698},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[700],{"type":58,"value":701},": ",{"type":52,"tag":431,"props":703,"children":704},{"style":438},[705],{"type":58,"value":706},"{\n",{"type":52,"tag":431,"props":708,"children":710},{"class":433,"line":709},2,[711,716,721,725,729,734,738,744,748,752,757,761,767,771,775,779,784,788,792,796,801,805,809,813,818,822],{"type":52,"tag":431,"props":712,"children":713},{"style":438},[714],{"type":58,"value":715},"  \"",{"type":52,"tag":431,"props":717,"children":718},{"style":449},[719],{"type":58,"value":720},"metadata",{"type":52,"tag":431,"props":722,"children":723},{"style":438},[724],{"type":58,"value":446},{"type":52,"tag":431,"props":726,"children":727},{"style":438},[728],{"type":58,"value":375},{"type":52,"tag":431,"props":730,"children":731},{"style":438},[732],{"type":58,"value":733}," {",{"type":52,"tag":431,"props":735,"children":736},{"style":438},[737],{"type":58,"value":446},{"type":52,"tag":431,"props":739,"children":741},{"style":740},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[742],{"type":58,"value":743},"metadataValues",{"type":52,"tag":431,"props":745,"children":746},{"style":438},[747],{"type":58,"value":446},{"type":52,"tag":431,"props":749,"children":750},{"style":438},[751],{"type":58,"value":375},{"type":52,"tag":431,"props":753,"children":754},{"style":438},[755],{"type":58,"value":756}," [{",{"type":52,"tag":431,"props":758,"children":759},{"style":438},[760],{"type":58,"value":446},{"type":52,"tag":431,"props":762,"children":764},{"style":763},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[765],{"type":58,"value":766},"key",{"type":52,"tag":431,"props":768,"children":769},{"style":438},[770],{"type":58,"value":446},{"type":52,"tag":431,"props":772,"children":773},{"style":438},[774],{"type":58,"value":375},{"type":52,"tag":431,"props":776,"children":777},{"style":438},[778],{"type":58,"value":464},{"type":52,"tag":431,"props":780,"children":781},{"style":467},[782],{"type":58,"value":783},"department",{"type":52,"tag":431,"props":785,"children":786},{"style":438},[787],{"type":58,"value":446},{"type":52,"tag":431,"props":789,"children":790},{"style":438},[791],{"type":58,"value":479},{"type":52,"tag":431,"props":793,"children":794},{"style":438},[795],{"type":58,"value":464},{"type":52,"tag":431,"props":797,"children":798},{"style":763},[799],{"type":58,"value":800},"value",{"type":52,"tag":431,"props":802,"children":803},{"style":438},[804],{"type":58,"value":446},{"type":52,"tag":431,"props":806,"children":807},{"style":438},[808],{"type":58,"value":375},{"type":52,"tag":431,"props":810,"children":811},{"style":438},[812],{"type":58,"value":464},{"type":52,"tag":431,"props":814,"children":815},{"style":467},[816],{"type":58,"value":817},"legal",{"type":52,"tag":431,"props":819,"children":820},{"style":438},[821],{"type":58,"value":446},{"type":52,"tag":431,"props":823,"children":824},{"style":438},[825],{"type":58,"value":826},"}]}\n",{"type":52,"tag":431,"props":828,"children":830},{"class":433,"line":829},3,[831],{"type":52,"tag":431,"props":832,"children":833},{"style":438},[834],{"type":58,"value":513},{"type":52,"tag":71,"props":836,"children":837},{},[838,843,844,850,852,858,860,866,868,874,876,882,883,889,891],{"type":52,"tag":75,"props":839,"children":840},{},[841],{"type":58,"value":842},"Metadata filtering on listFiles",{"type":58,"value":632},{"type":52,"tag":83,"props":845,"children":847},{"className":846},[],[848],{"type":58,"value":849},"additionalFields.metadataFilter.metadataValues",{"type":58,"value":851}," (same ",{"type":52,"tag":83,"props":853,"children":855},{"className":854},[],[856],{"type":58,"value":857},"{key, value}",{"type":58,"value":859}," array) for simple equality filters, or ",{"type":52,"tag":83,"props":861,"children":863},{"className":862},[],[864],{"type":58,"value":865},"additionalFields.advancedMetadataFilter",{"type":58,"value":867}," (a JSON string) for operators like ",{"type":52,"tag":83,"props":869,"children":871},{"className":870},[],[872],{"type":58,"value":873},"$or",{"type":58,"value":875},", ",{"type":52,"tag":83,"props":877,"children":879},{"className":878},[],[880],{"type":58,"value":881},"$ne",{"type":58,"value":875},{"type":52,"tag":83,"props":884,"children":886},{"className":885},[],[887],{"type":58,"value":888},"$in",{"type":58,"value":890},". Cannot set both at once. Example simple filter:\n",{"type":52,"tag":355,"props":892,"children":894},{"className":423,"code":893,"language":425,"meta":363,"style":363},"\"additionalFields\": {\n  \"metadataFilter\": {\"metadataValues\": [{\"key\": \"department\", \"value\": \"legal\"}]}\n}\n",[895],{"type":52,"tag":83,"props":896,"children":897},{"__ignoreMap":363},[898,921,1029],{"type":52,"tag":431,"props":899,"children":900},{"class":433,"line":434},[901,905,909,913,917],{"type":52,"tag":431,"props":902,"children":903},{"style":438},[904],{"type":58,"value":446},{"type":52,"tag":431,"props":906,"children":907},{"style":467},[908],{"type":58,"value":539},{"type":52,"tag":431,"props":910,"children":911},{"style":438},[912],{"type":58,"value":446},{"type":52,"tag":431,"props":914,"children":915},{"style":698},[916],{"type":58,"value":701},{"type":52,"tag":431,"props":918,"children":919},{"style":438},[920],{"type":58,"value":706},{"type":52,"tag":431,"props":922,"children":923},{"class":433,"line":709},[924,928,933,937,941,945,949,953,957,961,965,969,973,977,981,985,989,993,997,1001,1005,1009,1013,1017,1021,1025],{"type":52,"tag":431,"props":925,"children":926},{"style":438},[927],{"type":58,"value":715},{"type":52,"tag":431,"props":929,"children":930},{"style":449},[931],{"type":58,"value":932},"metadataFilter",{"type":52,"tag":431,"props":934,"children":935},{"style":438},[936],{"type":58,"value":446},{"type":52,"tag":431,"props":938,"children":939},{"style":438},[940],{"type":58,"value":375},{"type":52,"tag":431,"props":942,"children":943},{"style":438},[944],{"type":58,"value":733},{"type":52,"tag":431,"props":946,"children":947},{"style":438},[948],{"type":58,"value":446},{"type":52,"tag":431,"props":950,"children":951},{"style":740},[952],{"type":58,"value":743},{"type":52,"tag":431,"props":954,"children":955},{"style":438},[956],{"type":58,"value":446},{"type":52,"tag":431,"props":958,"children":959},{"style":438},[960],{"type":58,"value":375},{"type":52,"tag":431,"props":962,"children":963},{"style":438},[964],{"type":58,"value":756},{"type":52,"tag":431,"props":966,"children":967},{"style":438},[968],{"type":58,"value":446},{"type":52,"tag":431,"props":970,"children":971},{"style":763},[972],{"type":58,"value":766},{"type":52,"tag":431,"props":974,"children":975},{"style":438},[976],{"type":58,"value":446},{"type":52,"tag":431,"props":978,"children":979},{"style":438},[980],{"type":58,"value":375},{"type":52,"tag":431,"props":982,"children":983},{"style":438},[984],{"type":58,"value":464},{"type":52,"tag":431,"props":986,"children":987},{"style":467},[988],{"type":58,"value":783},{"type":52,"tag":431,"props":990,"children":991},{"style":438},[992],{"type":58,"value":446},{"type":52,"tag":431,"props":994,"children":995},{"style":438},[996],{"type":58,"value":479},{"type":52,"tag":431,"props":998,"children":999},{"style":438},[1000],{"type":58,"value":464},{"type":52,"tag":431,"props":1002,"children":1003},{"style":763},[1004],{"type":58,"value":800},{"type":52,"tag":431,"props":1006,"children":1007},{"style":438},[1008],{"type":58,"value":446},{"type":52,"tag":431,"props":1010,"children":1011},{"style":438},[1012],{"type":58,"value":375},{"type":52,"tag":431,"props":1014,"children":1015},{"style":438},[1016],{"type":58,"value":464},{"type":52,"tag":431,"props":1018,"children":1019},{"style":467},[1020],{"type":58,"value":817},{"type":52,"tag":431,"props":1022,"children":1023},{"style":438},[1024],{"type":58,"value":446},{"type":52,"tag":431,"props":1026,"children":1027},{"style":438},[1028],{"type":58,"value":826},{"type":52,"tag":431,"props":1030,"children":1031},{"class":433,"line":829},[1032],{"type":52,"tag":431,"props":1033,"children":1034},{"style":438},[1035],{"type":58,"value":513},{"type":52,"tag":71,"props":1037,"children":1038},{},[1039,1044,1046,1052,1054,1060],{"type":52,"tag":75,"props":1040,"children":1041},{},[1042],{"type":58,"value":1043},"Multimodal PDF upload",{"type":58,"value":1045},": Set ",{"type":52,"tag":83,"props":1047,"children":1049},{"className":1048},[],[1050],{"type":58,"value":1051},"additionalFields.multimodalFile: true",{"type":58,"value":1053}," on the ",{"type":52,"tag":83,"props":1055,"children":1057},{"className":1056},[],[1058],{"type":58,"value":1059},"uploadFile",{"type":58,"value":1061}," 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":52,"tag":273,"props":1063,"children":1065},{"id":1064},"generating-workflow-json-for-the-assistant-path",[1066],{"type":58,"value":1067},"Generating workflow JSON for the Assistant path",{"type":52,"tag":61,"props":1069,"children":1070},{},[1071],{"type":58,"value":1072},"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":52,"tag":67,"props":1074,"children":1075},{},[1076,1104,1109,1120],{"type":52,"tag":71,"props":1077,"children":1078},{},[1079,1081,1087,1089,1095,1096,1102],{"type":58,"value":1080},"Assistant name: ",{"type":52,"tag":83,"props":1082,"children":1084},{"className":1083},[],[1085],{"type":58,"value":1086},"n8n-assistant",{"type":58,"value":1088}," (use ",{"type":52,"tag":83,"props":1090,"children":1092},{"className":1091},[],[1093],{"type":58,"value":1094},"n8n-assistant-1",{"type":58,"value":875},{"type":52,"tag":83,"props":1097,"children":1099},{"className":1098},[],[1100],{"type":58,"value":1101},"n8n-assistant-2",{"type":58,"value":1103},", etc. for multiples; must match an existing assistant in the Pinecone Console)",{"type":52,"tag":71,"props":1105,"children":1106},{},[1107],{"type":58,"value":1108},"File URLs: sample Pinecone release notes PDFs",{"type":52,"tag":71,"props":1110,"children":1111},{},[1112,1114],{"type":58,"value":1113},"LLM model: ",{"type":52,"tag":83,"props":1115,"children":1117},{"className":1116},[],[1118],{"type":58,"value":1119},"gpt-5-mini",{"type":52,"tag":71,"props":1121,"children":1122},{},[1123],{"type":58,"value":1124},"System message: generic prompt about retrieving from the assistant with citations",{"type":52,"tag":61,"props":1126,"children":1127},{},[1128,1130,1135],{"type":58,"value":1129},"The JSON below is a ",{"type":52,"tag":75,"props":1131,"children":1132},{},[1133],{"type":58,"value":1134},"reference configuration",{"type":58,"value":1136}," 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":52,"tag":67,"props":1138,"children":1139},{},[1140,1151,1169,1186,1202],{"type":52,"tag":71,"props":1141,"children":1142},{},[1143,1149],{"type":52,"tag":83,"props":1144,"children":1146},{"className":1145},[],[1147],{"type":58,"value":1148},"[ASSISTANT_NAME]",{"type":58,"value":1150}," — assistant name",{"type":52,"tag":71,"props":1152,"children":1153},{},[1154,1160,1162,1167],{"type":52,"tag":83,"props":1155,"children":1157},{"className":1156},[],[1158],{"type":58,"value":1159},"[ASSISTANT_HOST]",{"type":58,"value":1161}," — assistant host URL from the Pinecone Console (e.g. ",{"type":52,"tag":83,"props":1163,"children":1165},{"className":1164},[],[1166],{"type":58,"value":504},{"type":58,"value":1168},")",{"type":52,"tag":71,"props":1170,"children":1171},{},[1172,1178,1180],{"type":52,"tag":83,"props":1173,"children":1175},{"className":1174},[],[1176],{"type":58,"value":1177},"[USER_FILE_URLS_ARRAY]",{"type":58,"value":1179}," — JSON array of file URL strings, e.g. ",{"type":52,"tag":83,"props":1181,"children":1183},{"className":1182},[],[1184],{"type":58,"value":1185},"[\"https:\u002F\u002Fexample.com\u002Fdoc.pdf\"]",{"type":52,"tag":71,"props":1187,"children":1188},{},[1189,1195,1197],{"type":52,"tag":83,"props":1190,"children":1192},{"className":1191},[],[1193],{"type":58,"value":1194},"[USER_MODEL]",{"type":58,"value":1196}," — LLM model name, e.g. ",{"type":52,"tag":83,"props":1198,"children":1200},{"className":1199},[],[1201],{"type":58,"value":1119},{"type":52,"tag":71,"props":1203,"children":1204},{},[1205,1211],{"type":52,"tag":83,"props":1206,"children":1208},{"className":1207},[],[1209],{"type":58,"value":1210},"[USER_TOPIC]",{"type":58,"value":1212}," — short description of what the assistant knows, for the system message",{"type":52,"tag":355,"props":1214,"children":1216},{"className":423,"code":1215,"language":425,"meta":363,"style":363},"{\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",[1217],{"type":52,"tag":83,"props":1218,"children":1219},{"__ignoreMap":363},[1220,1227,1252,1260,1287,1313,1350,1359,1368,1407,1437,1482,1519,1552,1561,1569,1593,1707,1732,1740,1777,1806,1848,1885,1918,1926,1934,1958,1996,2026,2056,2082,2090,2127,2169,2198,2235,2268,2276,2284,2308,2345,2374,2402,2426,2434,2470,2511,2539,2576,2609,2617,2625,2670,2707,2736,2777,2814,2851,2885,2893,2901,2926,2963,2991,3033,3070,3102,3110,3118,3142,3167,3191,3200,3239,3276,3312,3345,3354,3363,3372,3396,3404,3441,3470,3511,3548,3581,3589,3597,3674,3711,3739,3780,3817,3850,3858,3866,3890,3928,4029,4037,4074,4103,4144,4181,4214,4222,4230,4254,4291,4328,4432,4469,4525,4533,4569,4597,4638,4675,4708,4716,4724,4748,4848,4904,4912,4948,4976,5018,5055,5088,5097,5106,5131,5156,5274,5282,5306,5418,5426,5450,5562,5570,5594,5706,5714,5738,5850,5858,5882,5994,6002,6026,6138,6146,6155,6180,6227],{"type":52,"tag":431,"props":1221,"children":1222},{"class":433,"line":434},[1223],{"type":52,"tag":431,"props":1224,"children":1225},{"style":438},[1226],{"type":58,"value":706},{"type":52,"tag":431,"props":1228,"children":1229},{"class":433,"line":709},[1230,1234,1239,1243,1247],{"type":52,"tag":431,"props":1231,"children":1232},{"style":438},[1233],{"type":58,"value":715},{"type":52,"tag":431,"props":1235,"children":1236},{"style":449},[1237],{"type":58,"value":1238},"nodes",{"type":52,"tag":431,"props":1240,"children":1241},{"style":438},[1242],{"type":58,"value":446},{"type":52,"tag":431,"props":1244,"children":1245},{"style":438},[1246],{"type":58,"value":375},{"type":52,"tag":431,"props":1248,"children":1249},{"style":438},[1250],{"type":58,"value":1251}," [\n",{"type":52,"tag":431,"props":1253,"children":1254},{"class":433,"line":829},[1255],{"type":52,"tag":431,"props":1256,"children":1257},{"style":438},[1258],{"type":58,"value":1259},"    {\n",{"type":52,"tag":431,"props":1261,"children":1263},{"class":433,"line":1262},4,[1264,1269,1274,1278,1282],{"type":52,"tag":431,"props":1265,"children":1266},{"style":438},[1267],{"type":58,"value":1268},"      \"",{"type":52,"tag":431,"props":1270,"children":1271},{"style":740},[1272],{"type":58,"value":1273},"parameters",{"type":52,"tag":431,"props":1275,"children":1276},{"style":438},[1277],{"type":58,"value":446},{"type":52,"tag":431,"props":1279,"children":1280},{"style":438},[1281],{"type":58,"value":375},{"type":52,"tag":431,"props":1283,"children":1284},{"style":438},[1285],{"type":58,"value":1286}," {\n",{"type":52,"tag":431,"props":1288,"children":1290},{"class":433,"line":1289},5,[1291,1296,1301,1305,1309],{"type":52,"tag":431,"props":1292,"children":1293},{"style":438},[1294],{"type":58,"value":1295},"        \"",{"type":52,"tag":431,"props":1297,"children":1298},{"style":763},[1299],{"type":58,"value":1300},"options",{"type":52,"tag":431,"props":1302,"children":1303},{"style":438},[1304],{"type":58,"value":446},{"type":52,"tag":431,"props":1306,"children":1307},{"style":438},[1308],{"type":58,"value":375},{"type":52,"tag":431,"props":1310,"children":1311},{"style":438},[1312],{"type":58,"value":1286},{"type":52,"tag":431,"props":1314,"children":1316},{"class":433,"line":1315},6,[1317,1322,1328,1332,1336,1340,1345],{"type":52,"tag":431,"props":1318,"children":1319},{"style":438},[1320],{"type":58,"value":1321},"          \"",{"type":52,"tag":431,"props":1323,"children":1325},{"style":1324},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[1326],{"type":58,"value":1327},"systemMessage",{"type":52,"tag":431,"props":1329,"children":1330},{"style":438},[1331],{"type":58,"value":446},{"type":52,"tag":431,"props":1333,"children":1334},{"style":438},[1335],{"type":58,"value":375},{"type":52,"tag":431,"props":1337,"children":1338},{"style":438},[1339],{"type":58,"value":464},{"type":52,"tag":431,"props":1341,"children":1342},{"style":467},[1343],{"type":58,"value":1344},"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":52,"tag":431,"props":1346,"children":1347},{"style":438},[1348],{"type":58,"value":1349},"\"\n",{"type":52,"tag":431,"props":1351,"children":1353},{"class":433,"line":1352},7,[1354],{"type":52,"tag":431,"props":1355,"children":1356},{"style":438},[1357],{"type":58,"value":1358},"        }\n",{"type":52,"tag":431,"props":1360,"children":1362},{"class":433,"line":1361},8,[1363],{"type":52,"tag":431,"props":1364,"children":1365},{"style":438},[1366],{"type":58,"value":1367},"      },\n",{"type":52,"tag":431,"props":1369,"children":1371},{"class":433,"line":1370},9,[1372,1376,1381,1385,1389,1393,1398,1402],{"type":52,"tag":431,"props":1373,"children":1374},{"style":438},[1375],{"type":58,"value":1268},{"type":52,"tag":431,"props":1377,"children":1378},{"style":740},[1379],{"type":58,"value":1380},"type",{"type":52,"tag":431,"props":1382,"children":1383},{"style":438},[1384],{"type":58,"value":446},{"type":52,"tag":431,"props":1386,"children":1387},{"style":438},[1388],{"type":58,"value":375},{"type":52,"tag":431,"props":1390,"children":1391},{"style":438},[1392],{"type":58,"value":464},{"type":52,"tag":431,"props":1394,"children":1395},{"style":467},[1396],{"type":58,"value":1397},"@n8n\u002Fn8n-nodes-langchain.agent",{"type":52,"tag":431,"props":1399,"children":1400},{"style":438},[1401],{"type":58,"value":446},{"type":52,"tag":431,"props":1403,"children":1404},{"style":438},[1405],{"type":58,"value":1406},",\n",{"type":52,"tag":431,"props":1408,"children":1410},{"class":433,"line":1409},10,[1411,1415,1420,1424,1428,1433],{"type":52,"tag":431,"props":1412,"children":1413},{"style":438},[1414],{"type":58,"value":1268},{"type":52,"tag":431,"props":1416,"children":1417},{"style":740},[1418],{"type":58,"value":1419},"typeVersion",{"type":52,"tag":431,"props":1421,"children":1422},{"style":438},[1423],{"type":58,"value":446},{"type":52,"tag":431,"props":1425,"children":1426},{"style":438},[1427],{"type":58,"value":375},{"type":52,"tag":431,"props":1429,"children":1430},{"style":763},[1431],{"type":58,"value":1432}," 2.2",{"type":52,"tag":431,"props":1434,"children":1435},{"style":438},[1436],{"type":58,"value":1406},{"type":52,"tag":431,"props":1438,"children":1440},{"class":433,"line":1439},11,[1441,1445,1450,1454,1458,1463,1468,1472,1477],{"type":52,"tag":431,"props":1442,"children":1443},{"style":438},[1444],{"type":58,"value":1268},{"type":52,"tag":431,"props":1446,"children":1447},{"style":740},[1448],{"type":58,"value":1449},"position",{"type":52,"tag":431,"props":1451,"children":1452},{"style":438},[1453],{"type":58,"value":446},{"type":52,"tag":431,"props":1455,"children":1456},{"style":438},[1457],{"type":58,"value":375},{"type":52,"tag":431,"props":1459,"children":1460},{"style":438},[1461],{"type":58,"value":1462}," [",{"type":52,"tag":431,"props":1464,"children":1465},{"style":763},[1466],{"type":58,"value":1467},"2208",{"type":52,"tag":431,"props":1469,"children":1470},{"style":438},[1471],{"type":58,"value":479},{"type":52,"tag":431,"props":1473,"children":1474},{"style":763},[1475],{"type":58,"value":1476}," 784",{"type":52,"tag":431,"props":1478,"children":1479},{"style":438},[1480],{"type":58,"value":1481},"],\n",{"type":52,"tag":431,"props":1483,"children":1484},{"class":433,"line":28},[1485,1489,1494,1498,1502,1506,1511,1515],{"type":52,"tag":431,"props":1486,"children":1487},{"style":438},[1488],{"type":58,"value":1268},{"type":52,"tag":431,"props":1490,"children":1491},{"style":740},[1492],{"type":58,"value":1493},"id",{"type":52,"tag":431,"props":1495,"children":1496},{"style":438},[1497],{"type":58,"value":446},{"type":52,"tag":431,"props":1499,"children":1500},{"style":438},[1501],{"type":58,"value":375},{"type":52,"tag":431,"props":1503,"children":1504},{"style":438},[1505],{"type":58,"value":464},{"type":52,"tag":431,"props":1507,"children":1508},{"style":467},[1509],{"type":58,"value":1510},"e4c65881-120c-4a7c-854b-138611c8dfa3",{"type":52,"tag":431,"props":1512,"children":1513},{"style":438},[1514],{"type":58,"value":446},{"type":52,"tag":431,"props":1516,"children":1517},{"style":438},[1518],{"type":58,"value":1406},{"type":52,"tag":431,"props":1520,"children":1522},{"class":433,"line":1521},13,[1523,1527,1531,1535,1539,1543,1548],{"type":52,"tag":431,"props":1524,"children":1525},{"style":438},[1526],{"type":58,"value":1268},{"type":52,"tag":431,"props":1528,"children":1529},{"style":740},[1530],{"type":58,"value":410},{"type":52,"tag":431,"props":1532,"children":1533},{"style":438},[1534],{"type":58,"value":446},{"type":52,"tag":431,"props":1536,"children":1537},{"style":438},[1538],{"type":58,"value":375},{"type":52,"tag":431,"props":1540,"children":1541},{"style":438},[1542],{"type":58,"value":464},{"type":52,"tag":431,"props":1544,"children":1545},{"style":467},[1546],{"type":58,"value":1547},"AI Agent",{"type":52,"tag":431,"props":1549,"children":1550},{"style":438},[1551],{"type":58,"value":1349},{"type":52,"tag":431,"props":1553,"children":1555},{"class":433,"line":1554},14,[1556],{"type":52,"tag":431,"props":1557,"children":1558},{"style":438},[1559],{"type":58,"value":1560},"    },\n",{"type":52,"tag":431,"props":1562,"children":1564},{"class":433,"line":1563},15,[1565],{"type":52,"tag":431,"props":1566,"children":1567},{"style":438},[1568],{"type":58,"value":1259},{"type":52,"tag":431,"props":1570,"children":1572},{"class":433,"line":1571},16,[1573,1577,1581,1585,1589],{"type":52,"tag":431,"props":1574,"children":1575},{"style":438},[1576],{"type":58,"value":1268},{"type":52,"tag":431,"props":1578,"children":1579},{"style":740},[1580],{"type":58,"value":1273},{"type":52,"tag":431,"props":1582,"children":1583},{"style":438},[1584],{"type":58,"value":446},{"type":52,"tag":431,"props":1586,"children":1587},{"style":438},[1588],{"type":58,"value":375},{"type":52,"tag":431,"props":1590,"children":1591},{"style":438},[1592],{"type":58,"value":1286},{"type":52,"tag":431,"props":1594,"children":1596},{"class":433,"line":1595},17,[1597,1601,1606,1610,1614,1618,1622,1627,1631,1635,1640,1644,1649,1653,1657,1661,1666,1670,1674,1678,1682,1686,1690,1694,1698,1702],{"type":52,"tag":431,"props":1598,"children":1599},{"style":438},[1600],{"type":58,"value":1295},{"type":52,"tag":431,"props":1602,"children":1603},{"style":763},[1604],{"type":58,"value":1605},"model",{"type":52,"tag":431,"props":1607,"children":1608},{"style":438},[1609],{"type":58,"value":446},{"type":52,"tag":431,"props":1611,"children":1612},{"style":438},[1613],{"type":58,"value":375},{"type":52,"tag":431,"props":1615,"children":1616},{"style":438},[1617],{"type":58,"value":733},{"type":52,"tag":431,"props":1619,"children":1620},{"style":438},[1621],{"type":58,"value":446},{"type":52,"tag":431,"props":1623,"children":1624},{"style":1324},[1625],{"type":58,"value":1626},"__rl",{"type":52,"tag":431,"props":1628,"children":1629},{"style":438},[1630],{"type":58,"value":446},{"type":52,"tag":431,"props":1632,"children":1633},{"style":438},[1634],{"type":58,"value":375},{"type":52,"tag":431,"props":1636,"children":1637},{"style":438},[1638],{"type":58,"value":1639}," true,",{"type":52,"tag":431,"props":1641,"children":1642},{"style":438},[1643],{"type":58,"value":464},{"type":52,"tag":431,"props":1645,"children":1646},{"style":1324},[1647],{"type":58,"value":1648},"mode",{"type":52,"tag":431,"props":1650,"children":1651},{"style":438},[1652],{"type":58,"value":446},{"type":52,"tag":431,"props":1654,"children":1655},{"style":438},[1656],{"type":58,"value":375},{"type":52,"tag":431,"props":1658,"children":1659},{"style":438},[1660],{"type":58,"value":464},{"type":52,"tag":431,"props":1662,"children":1663},{"style":467},[1664],{"type":58,"value":1665},"list",{"type":52,"tag":431,"props":1667,"children":1668},{"style":438},[1669],{"type":58,"value":446},{"type":52,"tag":431,"props":1671,"children":1672},{"style":438},[1673],{"type":58,"value":479},{"type":52,"tag":431,"props":1675,"children":1676},{"style":438},[1677],{"type":58,"value":464},{"type":52,"tag":431,"props":1679,"children":1680},{"style":1324},[1681],{"type":58,"value":800},{"type":52,"tag":431,"props":1683,"children":1684},{"style":438},[1685],{"type":58,"value":446},{"type":52,"tag":431,"props":1687,"children":1688},{"style":438},[1689],{"type":58,"value":375},{"type":52,"tag":431,"props":1691,"children":1692},{"style":438},[1693],{"type":58,"value":464},{"type":52,"tag":431,"props":1695,"children":1696},{"style":467},[1697],{"type":58,"value":1194},{"type":52,"tag":431,"props":1699,"children":1700},{"style":438},[1701],{"type":58,"value":446},{"type":52,"tag":431,"props":1703,"children":1704},{"style":438},[1705],{"type":58,"value":1706},"},\n",{"type":52,"tag":431,"props":1708,"children":1710},{"class":433,"line":1709},18,[1711,1715,1719,1723,1727],{"type":52,"tag":431,"props":1712,"children":1713},{"style":438},[1714],{"type":58,"value":1295},{"type":52,"tag":431,"props":1716,"children":1717},{"style":763},[1718],{"type":58,"value":1300},{"type":52,"tag":431,"props":1720,"children":1721},{"style":438},[1722],{"type":58,"value":446},{"type":52,"tag":431,"props":1724,"children":1725},{"style":438},[1726],{"type":58,"value":375},{"type":52,"tag":431,"props":1728,"children":1729},{"style":438},[1730],{"type":58,"value":1731}," {}\n",{"type":52,"tag":431,"props":1733,"children":1735},{"class":433,"line":1734},19,[1736],{"type":52,"tag":431,"props":1737,"children":1738},{"style":438},[1739],{"type":58,"value":1367},{"type":52,"tag":431,"props":1741,"children":1743},{"class":433,"line":1742},20,[1744,1748,1752,1756,1760,1764,1769,1773],{"type":52,"tag":431,"props":1745,"children":1746},{"style":438},[1747],{"type":58,"value":1268},{"type":52,"tag":431,"props":1749,"children":1750},{"style":740},[1751],{"type":58,"value":1380},{"type":52,"tag":431,"props":1753,"children":1754},{"style":438},[1755],{"type":58,"value":446},{"type":52,"tag":431,"props":1757,"children":1758},{"style":438},[1759],{"type":58,"value":375},{"type":52,"tag":431,"props":1761,"children":1762},{"style":438},[1763],{"type":58,"value":464},{"type":52,"tag":431,"props":1765,"children":1766},{"style":467},[1767],{"type":58,"value":1768},"@n8n\u002Fn8n-nodes-langchain.lmChatOpenAi",{"type":52,"tag":431,"props":1770,"children":1771},{"style":438},[1772],{"type":58,"value":446},{"type":52,"tag":431,"props":1774,"children":1775},{"style":438},[1776],{"type":58,"value":1406},{"type":52,"tag":431,"props":1778,"children":1780},{"class":433,"line":1779},21,[1781,1785,1789,1793,1797,1802],{"type":52,"tag":431,"props":1782,"children":1783},{"style":438},[1784],{"type":58,"value":1268},{"type":52,"tag":431,"props":1786,"children":1787},{"style":740},[1788],{"type":58,"value":1419},{"type":52,"tag":431,"props":1790,"children":1791},{"style":438},[1792],{"type":58,"value":446},{"type":52,"tag":431,"props":1794,"children":1795},{"style":438},[1796],{"type":58,"value":375},{"type":52,"tag":431,"props":1798,"children":1799},{"style":763},[1800],{"type":58,"value":1801}," 1.2",{"type":52,"tag":431,"props":1803,"children":1804},{"style":438},[1805],{"type":58,"value":1406},{"type":52,"tag":431,"props":1807,"children":1809},{"class":433,"line":1808},22,[1810,1814,1818,1822,1826,1830,1835,1839,1844],{"type":52,"tag":431,"props":1811,"children":1812},{"style":438},[1813],{"type":58,"value":1268},{"type":52,"tag":431,"props":1815,"children":1816},{"style":740},[1817],{"type":58,"value":1449},{"type":52,"tag":431,"props":1819,"children":1820},{"style":438},[1821],{"type":58,"value":446},{"type":52,"tag":431,"props":1823,"children":1824},{"style":438},[1825],{"type":58,"value":375},{"type":52,"tag":431,"props":1827,"children":1828},{"style":438},[1829],{"type":58,"value":1462},{"type":52,"tag":431,"props":1831,"children":1832},{"style":763},[1833],{"type":58,"value":1834},"2144",{"type":52,"tag":431,"props":1836,"children":1837},{"style":438},[1838],{"type":58,"value":479},{"type":52,"tag":431,"props":1840,"children":1841},{"style":763},[1842],{"type":58,"value":1843}," 1008",{"type":52,"tag":431,"props":1845,"children":1846},{"style":438},[1847],{"type":58,"value":1481},{"type":52,"tag":431,"props":1849,"children":1851},{"class":433,"line":1850},23,[1852,1856,1860,1864,1868,1872,1877,1881],{"type":52,"tag":431,"props":1853,"children":1854},{"style":438},[1855],{"type":58,"value":1268},{"type":52,"tag":431,"props":1857,"children":1858},{"style":740},[1859],{"type":58,"value":1493},{"type":52,"tag":431,"props":1861,"children":1862},{"style":438},[1863],{"type":58,"value":446},{"type":52,"tag":431,"props":1865,"children":1866},{"style":438},[1867],{"type":58,"value":375},{"type":52,"tag":431,"props":1869,"children":1870},{"style":438},[1871],{"type":58,"value":464},{"type":52,"tag":431,"props":1873,"children":1874},{"style":467},[1875],{"type":58,"value":1876},"b3ea858d-b62d-4022-8241-8872e403839a",{"type":52,"tag":431,"props":1878,"children":1879},{"style":438},[1880],{"type":58,"value":446},{"type":52,"tag":431,"props":1882,"children":1883},{"style":438},[1884],{"type":58,"value":1406},{"type":52,"tag":431,"props":1886,"children":1888},{"class":433,"line":1887},24,[1889,1893,1897,1901,1905,1909,1914],{"type":52,"tag":431,"props":1890,"children":1891},{"style":438},[1892],{"type":58,"value":1268},{"type":52,"tag":431,"props":1894,"children":1895},{"style":740},[1896],{"type":58,"value":410},{"type":52,"tag":431,"props":1898,"children":1899},{"style":438},[1900],{"type":58,"value":446},{"type":52,"tag":431,"props":1902,"children":1903},{"style":438},[1904],{"type":58,"value":375},{"type":52,"tag":431,"props":1906,"children":1907},{"style":438},[1908],{"type":58,"value":464},{"type":52,"tag":431,"props":1910,"children":1911},{"style":467},[1912],{"type":58,"value":1913},"OpenAI Chat Model",{"type":52,"tag":431,"props":1915,"children":1916},{"style":438},[1917],{"type":58,"value":1349},{"type":52,"tag":431,"props":1919,"children":1921},{"class":433,"line":1920},25,[1922],{"type":52,"tag":431,"props":1923,"children":1924},{"style":438},[1925],{"type":58,"value":1560},{"type":52,"tag":431,"props":1927,"children":1929},{"class":433,"line":1928},26,[1930],{"type":52,"tag":431,"props":1931,"children":1932},{"style":438},[1933],{"type":58,"value":1259},{"type":52,"tag":431,"props":1935,"children":1937},{"class":433,"line":1936},27,[1938,1942,1946,1950,1954],{"type":52,"tag":431,"props":1939,"children":1940},{"style":438},[1941],{"type":58,"value":1268},{"type":52,"tag":431,"props":1943,"children":1944},{"style":740},[1945],{"type":58,"value":1273},{"type":52,"tag":431,"props":1947,"children":1948},{"style":438},[1949],{"type":58,"value":446},{"type":52,"tag":431,"props":1951,"children":1952},{"style":438},[1953],{"type":58,"value":375},{"type":52,"tag":431,"props":1955,"children":1956},{"style":438},[1957],{"type":58,"value":1286},{"type":52,"tag":431,"props":1959,"children":1961},{"class":433,"line":1960},28,[1962,1966,1971,1975,1979,1983,1988,1992],{"type":52,"tag":431,"props":1963,"children":1964},{"style":438},[1965],{"type":58,"value":1295},{"type":52,"tag":431,"props":1967,"children":1968},{"style":763},[1969],{"type":58,"value":1970},"content",{"type":52,"tag":431,"props":1972,"children":1973},{"style":438},[1974],{"type":58,"value":446},{"type":52,"tag":431,"props":1976,"children":1977},{"style":438},[1978],{"type":58,"value":375},{"type":52,"tag":431,"props":1980,"children":1981},{"style":438},[1982],{"type":58,"value":464},{"type":52,"tag":431,"props":1984,"children":1985},{"style":467},[1986],{"type":58,"value":1987},"## 1. Upload files to Pinecone Assistant",{"type":52,"tag":431,"props":1989,"children":1990},{"style":438},[1991],{"type":58,"value":446},{"type":52,"tag":431,"props":1993,"children":1994},{"style":438},[1995],{"type":58,"value":1406},{"type":52,"tag":431,"props":1997,"children":1999},{"class":433,"line":1998},29,[2000,2004,2009,2013,2017,2022],{"type":52,"tag":431,"props":2001,"children":2002},{"style":438},[2003],{"type":58,"value":1295},{"type":52,"tag":431,"props":2005,"children":2006},{"style":763},[2007],{"type":58,"value":2008},"height",{"type":52,"tag":431,"props":2010,"children":2011},{"style":438},[2012],{"type":58,"value":446},{"type":52,"tag":431,"props":2014,"children":2015},{"style":438},[2016],{"type":58,"value":375},{"type":52,"tag":431,"props":2018,"children":2019},{"style":763},[2020],{"type":58,"value":2021}," 384",{"type":52,"tag":431,"props":2023,"children":2024},{"style":438},[2025],{"type":58,"value":1406},{"type":52,"tag":431,"props":2027,"children":2029},{"class":433,"line":2028},30,[2030,2034,2039,2043,2047,2052],{"type":52,"tag":431,"props":2031,"children":2032},{"style":438},[2033],{"type":58,"value":1295},{"type":52,"tag":431,"props":2035,"children":2036},{"style":763},[2037],{"type":58,"value":2038},"width",{"type":52,"tag":431,"props":2040,"children":2041},{"style":438},[2042],{"type":58,"value":446},{"type":52,"tag":431,"props":2044,"children":2045},{"style":438},[2046],{"type":58,"value":375},{"type":52,"tag":431,"props":2048,"children":2049},{"style":763},[2050],{"type":58,"value":2051}," 1104",{"type":52,"tag":431,"props":2053,"children":2054},{"style":438},[2055],{"type":58,"value":1406},{"type":52,"tag":431,"props":2057,"children":2059},{"class":433,"line":2058},31,[2060,2064,2069,2073,2077],{"type":52,"tag":431,"props":2061,"children":2062},{"style":438},[2063],{"type":58,"value":1295},{"type":52,"tag":431,"props":2065,"children":2066},{"style":763},[2067],{"type":58,"value":2068},"color",{"type":52,"tag":431,"props":2070,"children":2071},{"style":438},[2072],{"type":58,"value":446},{"type":52,"tag":431,"props":2074,"children":2075},{"style":438},[2076],{"type":58,"value":375},{"type":52,"tag":431,"props":2078,"children":2079},{"style":763},[2080],{"type":58,"value":2081}," 7\n",{"type":52,"tag":431,"props":2083,"children":2085},{"class":433,"line":2084},32,[2086],{"type":52,"tag":431,"props":2087,"children":2088},{"style":438},[2089],{"type":58,"value":1367},{"type":52,"tag":431,"props":2091,"children":2093},{"class":433,"line":2092},33,[2094,2098,2102,2106,2110,2114,2119,2123],{"type":52,"tag":431,"props":2095,"children":2096},{"style":438},[2097],{"type":58,"value":1268},{"type":52,"tag":431,"props":2099,"children":2100},{"style":740},[2101],{"type":58,"value":1380},{"type":52,"tag":431,"props":2103,"children":2104},{"style":438},[2105],{"type":58,"value":446},{"type":52,"tag":431,"props":2107,"children":2108},{"style":438},[2109],{"type":58,"value":375},{"type":52,"tag":431,"props":2111,"children":2112},{"style":438},[2113],{"type":58,"value":464},{"type":52,"tag":431,"props":2115,"children":2116},{"style":467},[2117],{"type":58,"value":2118},"n8n-nodes-base.stickyNote",{"type":52,"tag":431,"props":2120,"children":2121},{"style":438},[2122],{"type":58,"value":446},{"type":52,"tag":431,"props":2124,"children":2125},{"style":438},[2126],{"type":58,"value":1406},{"type":52,"tag":431,"props":2128,"children":2130},{"class":433,"line":2129},34,[2131,2135,2139,2143,2147,2151,2156,2160,2165],{"type":52,"tag":431,"props":2132,"children":2133},{"style":438},[2134],{"type":58,"value":1268},{"type":52,"tag":431,"props":2136,"children":2137},{"style":740},[2138],{"type":58,"value":1449},{"type":52,"tag":431,"props":2140,"children":2141},{"style":438},[2142],{"type":58,"value":446},{"type":52,"tag":431,"props":2144,"children":2145},{"style":438},[2146],{"type":58,"value":375},{"type":52,"tag":431,"props":2148,"children":2149},{"style":438},[2150],{"type":58,"value":1462},{"type":52,"tag":431,"props":2152,"children":2153},{"style":763},[2154],{"type":58,"value":2155},"1616",{"type":52,"tag":431,"props":2157,"children":2158},{"style":438},[2159],{"type":58,"value":479},{"type":52,"tag":431,"props":2161,"children":2162},{"style":763},[2163],{"type":58,"value":2164}," 288",{"type":52,"tag":431,"props":2166,"children":2167},{"style":438},[2168],{"type":58,"value":1481},{"type":52,"tag":431,"props":2170,"children":2172},{"class":433,"line":2171},35,[2173,2177,2181,2185,2189,2194],{"type":52,"tag":431,"props":2174,"children":2175},{"style":438},[2176],{"type":58,"value":1268},{"type":52,"tag":431,"props":2178,"children":2179},{"style":740},[2180],{"type":58,"value":1419},{"type":52,"tag":431,"props":2182,"children":2183},{"style":438},[2184],{"type":58,"value":446},{"type":52,"tag":431,"props":2186,"children":2187},{"style":438},[2188],{"type":58,"value":375},{"type":52,"tag":431,"props":2190,"children":2191},{"style":763},[2192],{"type":58,"value":2193}," 1",{"type":52,"tag":431,"props":2195,"children":2196},{"style":438},[2197],{"type":58,"value":1406},{"type":52,"tag":431,"props":2199,"children":2201},{"class":433,"line":2200},36,[2202,2206,2210,2214,2218,2222,2227,2231],{"type":52,"tag":431,"props":2203,"children":2204},{"style":438},[2205],{"type":58,"value":1268},{"type":52,"tag":431,"props":2207,"children":2208},{"style":740},[2209],{"type":58,"value":1493},{"type":52,"tag":431,"props":2211,"children":2212},{"style":438},[2213],{"type":58,"value":446},{"type":52,"tag":431,"props":2215,"children":2216},{"style":438},[2217],{"type":58,"value":375},{"type":52,"tag":431,"props":2219,"children":2220},{"style":438},[2221],{"type":58,"value":464},{"type":52,"tag":431,"props":2223,"children":2224},{"style":467},[2225],{"type":58,"value":2226},"9cfcdb71-2986-47a3-8f03-250fcab1048d",{"type":52,"tag":431,"props":2228,"children":2229},{"style":438},[2230],{"type":58,"value":446},{"type":52,"tag":431,"props":2232,"children":2233},{"style":438},[2234],{"type":58,"value":1406},{"type":52,"tag":431,"props":2236,"children":2238},{"class":433,"line":2237},37,[2239,2243,2247,2251,2255,2259,2264],{"type":52,"tag":431,"props":2240,"children":2241},{"style":438},[2242],{"type":58,"value":1268},{"type":52,"tag":431,"props":2244,"children":2245},{"style":740},[2246],{"type":58,"value":410},{"type":52,"tag":431,"props":2248,"children":2249},{"style":438},[2250],{"type":58,"value":446},{"type":52,"tag":431,"props":2252,"children":2253},{"style":438},[2254],{"type":58,"value":375},{"type":52,"tag":431,"props":2256,"children":2257},{"style":438},[2258],{"type":58,"value":464},{"type":52,"tag":431,"props":2260,"children":2261},{"style":467},[2262],{"type":58,"value":2263},"Sticky Note1",{"type":52,"tag":431,"props":2265,"children":2266},{"style":438},[2267],{"type":58,"value":1349},{"type":52,"tag":431,"props":2269,"children":2271},{"class":433,"line":2270},38,[2272],{"type":52,"tag":431,"props":2273,"children":2274},{"style":438},[2275],{"type":58,"value":1560},{"type":52,"tag":431,"props":2277,"children":2279},{"class":433,"line":2278},39,[2280],{"type":52,"tag":431,"props":2281,"children":2282},{"style":438},[2283],{"type":58,"value":1259},{"type":52,"tag":431,"props":2285,"children":2287},{"class":433,"line":2286},40,[2288,2292,2296,2300,2304],{"type":52,"tag":431,"props":2289,"children":2290},{"style":438},[2291],{"type":58,"value":1268},{"type":52,"tag":431,"props":2293,"children":2294},{"style":740},[2295],{"type":58,"value":1273},{"type":52,"tag":431,"props":2297,"children":2298},{"style":438},[2299],{"type":58,"value":446},{"type":52,"tag":431,"props":2301,"children":2302},{"style":438},[2303],{"type":58,"value":375},{"type":52,"tag":431,"props":2305,"children":2306},{"style":438},[2307],{"type":58,"value":1286},{"type":52,"tag":431,"props":2309,"children":2311},{"class":433,"line":2310},41,[2312,2316,2320,2324,2328,2332,2337,2341],{"type":52,"tag":431,"props":2313,"children":2314},{"style":438},[2315],{"type":58,"value":1295},{"type":52,"tag":431,"props":2317,"children":2318},{"style":763},[2319],{"type":58,"value":1970},{"type":52,"tag":431,"props":2321,"children":2322},{"style":438},[2323],{"type":58,"value":446},{"type":52,"tag":431,"props":2325,"children":2326},{"style":438},[2327],{"type":58,"value":375},{"type":52,"tag":431,"props":2329,"children":2330},{"style":438},[2331],{"type":58,"value":464},{"type":52,"tag":431,"props":2333,"children":2334},{"style":467},[2335],{"type":58,"value":2336},"## 2. Chat with your docs",{"type":52,"tag":431,"props":2338,"children":2339},{"style":438},[2340],{"type":58,"value":446},{"type":52,"tag":431,"props":2342,"children":2343},{"style":438},[2344],{"type":58,"value":1406},{"type":52,"tag":431,"props":2346,"children":2348},{"class":433,"line":2347},42,[2349,2353,2357,2361,2365,2370],{"type":52,"tag":431,"props":2350,"children":2351},{"style":438},[2352],{"type":58,"value":1295},{"type":52,"tag":431,"props":2354,"children":2355},{"style":763},[2356],{"type":58,"value":2008},{"type":52,"tag":431,"props":2358,"children":2359},{"style":438},[2360],{"type":58,"value":446},{"type":52,"tag":431,"props":2362,"children":2363},{"style":438},[2364],{"type":58,"value":375},{"type":52,"tag":431,"props":2366,"children":2367},{"style":763},[2368],{"type":58,"value":2369}," 512",{"type":52,"tag":431,"props":2371,"children":2372},{"style":438},[2373],{"type":58,"value":1406},{"type":52,"tag":431,"props":2375,"children":2377},{"class":433,"line":2376},43,[2378,2382,2386,2390,2394,2398],{"type":52,"tag":431,"props":2379,"children":2380},{"style":438},[2381],{"type":58,"value":1295},{"type":52,"tag":431,"props":2383,"children":2384},{"style":763},[2385],{"type":58,"value":2038},{"type":52,"tag":431,"props":2387,"children":2388},{"style":438},[2389],{"type":58,"value":446},{"type":52,"tag":431,"props":2391,"children":2392},{"style":438},[2393],{"type":58,"value":375},{"type":52,"tag":431,"props":2395,"children":2396},{"style":763},[2397],{"type":58,"value":2051},{"type":52,"tag":431,"props":2399,"children":2400},{"style":438},[2401],{"type":58,"value":1406},{"type":52,"tag":431,"props":2403,"children":2405},{"class":433,"line":2404},44,[2406,2410,2414,2418,2422],{"type":52,"tag":431,"props":2407,"children":2408},{"style":438},[2409],{"type":58,"value":1295},{"type":52,"tag":431,"props":2411,"children":2412},{"style":763},[2413],{"type":58,"value":2068},{"type":52,"tag":431,"props":2415,"children":2416},{"style":438},[2417],{"type":58,"value":446},{"type":52,"tag":431,"props":2419,"children":2420},{"style":438},[2421],{"type":58,"value":375},{"type":52,"tag":431,"props":2423,"children":2424},{"style":763},[2425],{"type":58,"value":2081},{"type":52,"tag":431,"props":2427,"children":2429},{"class":433,"line":2428},45,[2430],{"type":52,"tag":431,"props":2431,"children":2432},{"style":438},[2433],{"type":58,"value":1367},{"type":52,"tag":431,"props":2435,"children":2437},{"class":433,"line":2436},46,[2438,2442,2446,2450,2454,2458,2462,2466],{"type":52,"tag":431,"props":2439,"children":2440},{"style":438},[2441],{"type":58,"value":1268},{"type":52,"tag":431,"props":2443,"children":2444},{"style":740},[2445],{"type":58,"value":1380},{"type":52,"tag":431,"props":2447,"children":2448},{"style":438},[2449],{"type":58,"value":446},{"type":52,"tag":431,"props":2451,"children":2452},{"style":438},[2453],{"type":58,"value":375},{"type":52,"tag":431,"props":2455,"children":2456},{"style":438},[2457],{"type":58,"value":464},{"type":52,"tag":431,"props":2459,"children":2460},{"style":467},[2461],{"type":58,"value":2118},{"type":52,"tag":431,"props":2463,"children":2464},{"style":438},[2465],{"type":58,"value":446},{"type":52,"tag":431,"props":2467,"children":2468},{"style":438},[2469],{"type":58,"value":1406},{"type":52,"tag":431,"props":2471,"children":2473},{"class":433,"line":2472},47,[2474,2478,2482,2486,2490,2494,2498,2502,2507],{"type":52,"tag":431,"props":2475,"children":2476},{"style":438},[2477],{"type":58,"value":1268},{"type":52,"tag":431,"props":2479,"children":2480},{"style":740},[2481],{"type":58,"value":1449},{"type":52,"tag":431,"props":2483,"children":2484},{"style":438},[2485],{"type":58,"value":446},{"type":52,"tag":431,"props":2487,"children":2488},{"style":438},[2489],{"type":58,"value":375},{"type":52,"tag":431,"props":2491,"children":2492},{"style":438},[2493],{"type":58,"value":1462},{"type":52,"tag":431,"props":2495,"children":2496},{"style":763},[2497],{"type":58,"value":2155},{"type":52,"tag":431,"props":2499,"children":2500},{"style":438},[2501],{"type":58,"value":479},{"type":52,"tag":431,"props":2503,"children":2504},{"style":763},[2505],{"type":58,"value":2506}," 688",{"type":52,"tag":431,"props":2508,"children":2509},{"style":438},[2510],{"type":58,"value":1481},{"type":52,"tag":431,"props":2512,"children":2514},{"class":433,"line":2513},48,[2515,2519,2523,2527,2531,2535],{"type":52,"tag":431,"props":2516,"children":2517},{"style":438},[2518],{"type":58,"value":1268},{"type":52,"tag":431,"props":2520,"children":2521},{"style":740},[2522],{"type":58,"value":1419},{"type":52,"tag":431,"props":2524,"children":2525},{"style":438},[2526],{"type":58,"value":446},{"type":52,"tag":431,"props":2528,"children":2529},{"style":438},[2530],{"type":58,"value":375},{"type":52,"tag":431,"props":2532,"children":2533},{"style":763},[2534],{"type":58,"value":2193},{"type":52,"tag":431,"props":2536,"children":2537},{"style":438},[2538],{"type":58,"value":1406},{"type":52,"tag":431,"props":2540,"children":2542},{"class":433,"line":2541},49,[2543,2547,2551,2555,2559,2563,2568,2572],{"type":52,"tag":431,"props":2544,"children":2545},{"style":438},[2546],{"type":58,"value":1268},{"type":52,"tag":431,"props":2548,"children":2549},{"style":740},[2550],{"type":58,"value":1493},{"type":52,"tag":431,"props":2552,"children":2553},{"style":438},[2554],{"type":58,"value":446},{"type":52,"tag":431,"props":2556,"children":2557},{"style":438},[2558],{"type":58,"value":375},{"type":52,"tag":431,"props":2560,"children":2561},{"style":438},[2562],{"type":58,"value":464},{"type":52,"tag":431,"props":2564,"children":2565},{"style":467},[2566],{"type":58,"value":2567},"d7f2f4b8-2e45-4902-8949-202b8b2c699b",{"type":52,"tag":431,"props":2569,"children":2570},{"style":438},[2571],{"type":58,"value":446},{"type":52,"tag":431,"props":2573,"children":2574},{"style":438},[2575],{"type":58,"value":1406},{"type":52,"tag":431,"props":2577,"children":2579},{"class":433,"line":2578},50,[2580,2584,2588,2592,2596,2600,2605],{"type":52,"tag":431,"props":2581,"children":2582},{"style":438},[2583],{"type":58,"value":1268},{"type":52,"tag":431,"props":2585,"children":2586},{"style":740},[2587],{"type":58,"value":410},{"type":52,"tag":431,"props":2589,"children":2590},{"style":438},[2591],{"type":58,"value":446},{"type":52,"tag":431,"props":2593,"children":2594},{"style":438},[2595],{"type":58,"value":375},{"type":52,"tag":431,"props":2597,"children":2598},{"style":438},[2599],{"type":58,"value":464},{"type":52,"tag":431,"props":2601,"children":2602},{"style":467},[2603],{"type":58,"value":2604},"Sticky Note2",{"type":52,"tag":431,"props":2606,"children":2607},{"style":438},[2608],{"type":58,"value":1349},{"type":52,"tag":431,"props":2610,"children":2612},{"class":433,"line":2611},51,[2613],{"type":52,"tag":431,"props":2614,"children":2615},{"style":438},[2616],{"type":58,"value":1560},{"type":52,"tag":431,"props":2618,"children":2620},{"class":433,"line":2619},52,[2621],{"type":52,"tag":431,"props":2622,"children":2623},{"style":438},[2624],{"type":58,"value":1259},{"type":52,"tag":431,"props":2626,"children":2628},{"class":433,"line":2627},53,[2629,2633,2637,2641,2645,2649,2653,2657,2661,2665],{"type":52,"tag":431,"props":2630,"children":2631},{"style":438},[2632],{"type":58,"value":1268},{"type":52,"tag":431,"props":2634,"children":2635},{"style":740},[2636],{"type":58,"value":1273},{"type":52,"tag":431,"props":2638,"children":2639},{"style":438},[2640],{"type":58,"value":446},{"type":52,"tag":431,"props":2642,"children":2643},{"style":438},[2644],{"type":58,"value":375},{"type":52,"tag":431,"props":2646,"children":2647},{"style":438},[2648],{"type":58,"value":733},{"type":52,"tag":431,"props":2650,"children":2651},{"style":438},[2652],{"type":58,"value":446},{"type":52,"tag":431,"props":2654,"children":2655},{"style":763},[2656],{"type":58,"value":1300},{"type":52,"tag":431,"props":2658,"children":2659},{"style":438},[2660],{"type":58,"value":446},{"type":52,"tag":431,"props":2662,"children":2663},{"style":438},[2664],{"type":58,"value":375},{"type":52,"tag":431,"props":2666,"children":2667},{"style":438},[2668],{"type":58,"value":2669}," {}},\n",{"type":52,"tag":431,"props":2671,"children":2673},{"class":433,"line":2672},54,[2674,2678,2682,2686,2690,2694,2699,2703],{"type":52,"tag":431,"props":2675,"children":2676},{"style":438},[2677],{"type":58,"value":1268},{"type":52,"tag":431,"props":2679,"children":2680},{"style":740},[2681],{"type":58,"value":1380},{"type":52,"tag":431,"props":2683,"children":2684},{"style":438},[2685],{"type":58,"value":446},{"type":52,"tag":431,"props":2687,"children":2688},{"style":438},[2689],{"type":58,"value":375},{"type":52,"tag":431,"props":2691,"children":2692},{"style":438},[2693],{"type":58,"value":464},{"type":52,"tag":431,"props":2695,"children":2696},{"style":467},[2697],{"type":58,"value":2698},"@n8n\u002Fn8n-nodes-langchain.chatTrigger",{"type":52,"tag":431,"props":2700,"children":2701},{"style":438},[2702],{"type":58,"value":446},{"type":52,"tag":431,"props":2704,"children":2705},{"style":438},[2706],{"type":58,"value":1406},{"type":52,"tag":431,"props":2708,"children":2710},{"class":433,"line":2709},55,[2711,2715,2719,2723,2727,2732],{"type":52,"tag":431,"props":2712,"children":2713},{"style":438},[2714],{"type":58,"value":1268},{"type":52,"tag":431,"props":2716,"children":2717},{"style":740},[2718],{"type":58,"value":1419},{"type":52,"tag":431,"props":2720,"children":2721},{"style":438},[2722],{"type":58,"value":446},{"type":52,"tag":431,"props":2724,"children":2725},{"style":438},[2726],{"type":58,"value":375},{"type":52,"tag":431,"props":2728,"children":2729},{"style":763},[2730],{"type":58,"value":2731}," 1.3",{"type":52,"tag":431,"props":2733,"children":2734},{"style":438},[2735],{"type":58,"value":1406},{"type":52,"tag":431,"props":2737,"children":2739},{"class":433,"line":2738},56,[2740,2744,2748,2752,2756,2760,2765,2769,2773],{"type":52,"tag":431,"props":2741,"children":2742},{"style":438},[2743],{"type":58,"value":1268},{"type":52,"tag":431,"props":2745,"children":2746},{"style":740},[2747],{"type":58,"value":1449},{"type":52,"tag":431,"props":2749,"children":2750},{"style":438},[2751],{"type":58,"value":446},{"type":52,"tag":431,"props":2753,"children":2754},{"style":438},[2755],{"type":58,"value":375},{"type":52,"tag":431,"props":2757,"children":2758},{"style":438},[2759],{"type":58,"value":1462},{"type":52,"tag":431,"props":2761,"children":2762},{"style":763},[2763],{"type":58,"value":2764},"1840",{"type":52,"tag":431,"props":2766,"children":2767},{"style":438},[2768],{"type":58,"value":479},{"type":52,"tag":431,"props":2770,"children":2771},{"style":763},[2772],{"type":58,"value":1476},{"type":52,"tag":431,"props":2774,"children":2775},{"style":438},[2776],{"type":58,"value":1481},{"type":52,"tag":431,"props":2778,"children":2780},{"class":433,"line":2779},57,[2781,2785,2789,2793,2797,2801,2806,2810],{"type":52,"tag":431,"props":2782,"children":2783},{"style":438},[2784],{"type":58,"value":1268},{"type":52,"tag":431,"props":2786,"children":2787},{"style":740},[2788],{"type":58,"value":1493},{"type":52,"tag":431,"props":2790,"children":2791},{"style":438},[2792],{"type":58,"value":446},{"type":52,"tag":431,"props":2794,"children":2795},{"style":438},[2796],{"type":58,"value":375},{"type":52,"tag":431,"props":2798,"children":2799},{"style":438},[2800],{"type":58,"value":464},{"type":52,"tag":431,"props":2802,"children":2803},{"style":467},[2804],{"type":58,"value":2805},"4d2a6aa1-ca4d-4165-a635-7ef53084636b",{"type":52,"tag":431,"props":2807,"children":2808},{"style":438},[2809],{"type":58,"value":446},{"type":52,"tag":431,"props":2811,"children":2812},{"style":438},[2813],{"type":58,"value":1406},{"type":52,"tag":431,"props":2815,"children":2817},{"class":433,"line":2816},58,[2818,2822,2826,2830,2834,2838,2843,2847],{"type":52,"tag":431,"props":2819,"children":2820},{"style":438},[2821],{"type":58,"value":1268},{"type":52,"tag":431,"props":2823,"children":2824},{"style":740},[2825],{"type":58,"value":410},{"type":52,"tag":431,"props":2827,"children":2828},{"style":438},[2829],{"type":58,"value":446},{"type":52,"tag":431,"props":2831,"children":2832},{"style":438},[2833],{"type":58,"value":375},{"type":52,"tag":431,"props":2835,"children":2836},{"style":438},[2837],{"type":58,"value":464},{"type":52,"tag":431,"props":2839,"children":2840},{"style":467},[2841],{"type":58,"value":2842},"Chat input",{"type":52,"tag":431,"props":2844,"children":2845},{"style":438},[2846],{"type":58,"value":446},{"type":52,"tag":431,"props":2848,"children":2849},{"style":438},[2850],{"type":58,"value":1406},{"type":52,"tag":431,"props":2852,"children":2854},{"class":433,"line":2853},59,[2855,2859,2864,2868,2872,2876,2881],{"type":52,"tag":431,"props":2856,"children":2857},{"style":438},[2858],{"type":58,"value":1268},{"type":52,"tag":431,"props":2860,"children":2861},{"style":740},[2862],{"type":58,"value":2863},"webhookId",{"type":52,"tag":431,"props":2865,"children":2866},{"style":438},[2867],{"type":58,"value":446},{"type":52,"tag":431,"props":2869,"children":2870},{"style":438},[2871],{"type":58,"value":375},{"type":52,"tag":431,"props":2873,"children":2874},{"style":438},[2875],{"type":58,"value":464},{"type":52,"tag":431,"props":2877,"children":2878},{"style":467},[2879],{"type":58,"value":2880},"4672d1f8-d2bb-4059-8761-7aa5792814c0",{"type":52,"tag":431,"props":2882,"children":2883},{"style":438},[2884],{"type":58,"value":1349},{"type":52,"tag":431,"props":2886,"children":2888},{"class":433,"line":2887},60,[2889],{"type":52,"tag":431,"props":2890,"children":2891},{"style":438},[2892],{"type":58,"value":1560},{"type":52,"tag":431,"props":2894,"children":2896},{"class":433,"line":2895},61,[2897],{"type":52,"tag":431,"props":2898,"children":2899},{"style":438},[2900],{"type":58,"value":1259},{"type":52,"tag":431,"props":2902,"children":2904},{"class":433,"line":2903},62,[2905,2909,2913,2917,2921],{"type":52,"tag":431,"props":2906,"children":2907},{"style":438},[2908],{"type":58,"value":1268},{"type":52,"tag":431,"props":2910,"children":2911},{"style":740},[2912],{"type":58,"value":1273},{"type":52,"tag":431,"props":2914,"children":2915},{"style":438},[2916],{"type":58,"value":446},{"type":52,"tag":431,"props":2918,"children":2919},{"style":438},[2920],{"type":58,"value":375},{"type":52,"tag":431,"props":2922,"children":2923},{"style":438},[2924],{"type":58,"value":2925}," {},\n",{"type":52,"tag":431,"props":2927,"children":2929},{"class":433,"line":2928},63,[2930,2934,2938,2942,2946,2950,2955,2959],{"type":52,"tag":431,"props":2931,"children":2932},{"style":438},[2933],{"type":58,"value":1268},{"type":52,"tag":431,"props":2935,"children":2936},{"style":740},[2937],{"type":58,"value":1380},{"type":52,"tag":431,"props":2939,"children":2940},{"style":438},[2941],{"type":58,"value":446},{"type":52,"tag":431,"props":2943,"children":2944},{"style":438},[2945],{"type":58,"value":375},{"type":52,"tag":431,"props":2947,"children":2948},{"style":438},[2949],{"type":58,"value":464},{"type":52,"tag":431,"props":2951,"children":2952},{"style":467},[2953],{"type":58,"value":2954},"n8n-nodes-base.manualTrigger",{"type":52,"tag":431,"props":2956,"children":2957},{"style":438},[2958],{"type":58,"value":446},{"type":52,"tag":431,"props":2960,"children":2961},{"style":438},[2962],{"type":58,"value":1406},{"type":52,"tag":431,"props":2964,"children":2966},{"class":433,"line":2965},64,[2967,2971,2975,2979,2983,2987],{"type":52,"tag":431,"props":2968,"children":2969},{"style":438},[2970],{"type":58,"value":1268},{"type":52,"tag":431,"props":2972,"children":2973},{"style":740},[2974],{"type":58,"value":1419},{"type":52,"tag":431,"props":2976,"children":2977},{"style":438},[2978],{"type":58,"value":446},{"type":52,"tag":431,"props":2980,"children":2981},{"style":438},[2982],{"type":58,"value":375},{"type":52,"tag":431,"props":2984,"children":2985},{"style":763},[2986],{"type":58,"value":2193},{"type":52,"tag":431,"props":2988,"children":2989},{"style":438},[2990],{"type":58,"value":1406},{"type":52,"tag":431,"props":2992,"children":2994},{"class":433,"line":2993},65,[2995,2999,3003,3007,3011,3015,3020,3024,3029],{"type":52,"tag":431,"props":2996,"children":2997},{"style":438},[2998],{"type":58,"value":1268},{"type":52,"tag":431,"props":3000,"children":3001},{"style":740},[3002],{"type":58,"value":1449},{"type":52,"tag":431,"props":3004,"children":3005},{"style":438},[3006],{"type":58,"value":446},{"type":52,"tag":431,"props":3008,"children":3009},{"style":438},[3010],{"type":58,"value":375},{"type":52,"tag":431,"props":3012,"children":3013},{"style":438},[3014],{"type":58,"value":1462},{"type":52,"tag":431,"props":3016,"children":3017},{"style":763},[3018],{"type":58,"value":3019},"1760",{"type":52,"tag":431,"props":3021,"children":3022},{"style":438},[3023],{"type":58,"value":479},{"type":52,"tag":431,"props":3025,"children":3026},{"style":763},[3027],{"type":58,"value":3028}," 432",{"type":52,"tag":431,"props":3030,"children":3031},{"style":438},[3032],{"type":58,"value":1481},{"type":52,"tag":431,"props":3034,"children":3036},{"class":433,"line":3035},66,[3037,3041,3045,3049,3053,3057,3062,3066],{"type":52,"tag":431,"props":3038,"children":3039},{"style":438},[3040],{"type":58,"value":1268},{"type":52,"tag":431,"props":3042,"children":3043},{"style":740},[3044],{"type":58,"value":1493},{"type":52,"tag":431,"props":3046,"children":3047},{"style":438},[3048],{"type":58,"value":446},{"type":52,"tag":431,"props":3050,"children":3051},{"style":438},[3052],{"type":58,"value":375},{"type":52,"tag":431,"props":3054,"children":3055},{"style":438},[3056],{"type":58,"value":464},{"type":52,"tag":431,"props":3058,"children":3059},{"style":467},[3060],{"type":58,"value":3061},"3e9529b4-d0ae-4ea8-9d27-c96e7cbd6ad9",{"type":52,"tag":431,"props":3063,"children":3064},{"style":438},[3065],{"type":58,"value":446},{"type":52,"tag":431,"props":3067,"children":3068},{"style":438},[3069],{"type":58,"value":1406},{"type":52,"tag":431,"props":3071,"children":3072},{"class":433,"line":24},[3073,3077,3081,3085,3089,3093,3098],{"type":52,"tag":431,"props":3074,"children":3075},{"style":438},[3076],{"type":58,"value":1268},{"type":52,"tag":431,"props":3078,"children":3079},{"style":740},[3080],{"type":58,"value":410},{"type":52,"tag":431,"props":3082,"children":3083},{"style":438},[3084],{"type":58,"value":446},{"type":52,"tag":431,"props":3086,"children":3087},{"style":438},[3088],{"type":58,"value":375},{"type":52,"tag":431,"props":3090,"children":3091},{"style":438},[3092],{"type":58,"value":464},{"type":52,"tag":431,"props":3094,"children":3095},{"style":467},[3096],{"type":58,"value":3097},"When clicking 'Execute workflow'",{"type":52,"tag":431,"props":3099,"children":3100},{"style":438},[3101],{"type":58,"value":1349},{"type":52,"tag":431,"props":3103,"children":3105},{"class":433,"line":3104},68,[3106],{"type":52,"tag":431,"props":3107,"children":3108},{"style":438},[3109],{"type":58,"value":1560},{"type":52,"tag":431,"props":3111,"children":3113},{"class":433,"line":3112},69,[3114],{"type":52,"tag":431,"props":3115,"children":3116},{"style":438},[3117],{"type":58,"value":1259},{"type":52,"tag":431,"props":3119,"children":3121},{"class":433,"line":3120},70,[3122,3126,3130,3134,3138],{"type":52,"tag":431,"props":3123,"children":3124},{"style":438},[3125],{"type":58,"value":1268},{"type":52,"tag":431,"props":3127,"children":3128},{"style":740},[3129],{"type":58,"value":1273},{"type":52,"tag":431,"props":3131,"children":3132},{"style":438},[3133],{"type":58,"value":446},{"type":52,"tag":431,"props":3135,"children":3136},{"style":438},[3137],{"type":58,"value":375},{"type":52,"tag":431,"props":3139,"children":3140},{"style":438},[3141],{"type":58,"value":1286},{"type":52,"tag":431,"props":3143,"children":3145},{"class":433,"line":3144},71,[3146,3150,3155,3159,3163],{"type":52,"tag":431,"props":3147,"children":3148},{"style":438},[3149],{"type":58,"value":1295},{"type":52,"tag":431,"props":3151,"children":3152},{"style":763},[3153],{"type":58,"value":3154},"assignments",{"type":52,"tag":431,"props":3156,"children":3157},{"style":438},[3158],{"type":58,"value":446},{"type":52,"tag":431,"props":3160,"children":3161},{"style":438},[3162],{"type":58,"value":375},{"type":52,"tag":431,"props":3164,"children":3165},{"style":438},[3166],{"type":58,"value":1286},{"type":52,"tag":431,"props":3168,"children":3170},{"class":433,"line":3169},72,[3171,3175,3179,3183,3187],{"type":52,"tag":431,"props":3172,"children":3173},{"style":438},[3174],{"type":58,"value":1321},{"type":52,"tag":431,"props":3176,"children":3177},{"style":1324},[3178],{"type":58,"value":3154},{"type":52,"tag":431,"props":3180,"children":3181},{"style":438},[3182],{"type":58,"value":446},{"type":52,"tag":431,"props":3184,"children":3185},{"style":438},[3186],{"type":58,"value":375},{"type":52,"tag":431,"props":3188,"children":3189},{"style":438},[3190],{"type":58,"value":1251},{"type":52,"tag":431,"props":3192,"children":3194},{"class":433,"line":3193},73,[3195],{"type":52,"tag":431,"props":3196,"children":3197},{"style":438},[3198],{"type":58,"value":3199},"            {\n",{"type":52,"tag":431,"props":3201,"children":3203},{"class":433,"line":3202},74,[3204,3209,3214,3218,3222,3226,3231,3235],{"type":52,"tag":431,"props":3205,"children":3206},{"style":438},[3207],{"type":58,"value":3208},"              \"",{"type":52,"tag":431,"props":3210,"children":3212},{"style":3211},"--shiki-light:#916B53;--shiki-default:#916B53;--shiki-dark:#916B53",[3213],{"type":58,"value":1493},{"type":52,"tag":431,"props":3215,"children":3216},{"style":438},[3217],{"type":58,"value":446},{"type":52,"tag":431,"props":3219,"children":3220},{"style":438},[3221],{"type":58,"value":375},{"type":52,"tag":431,"props":3223,"children":3224},{"style":438},[3225],{"type":58,"value":464},{"type":52,"tag":431,"props":3227,"children":3228},{"style":467},[3229],{"type":58,"value":3230},"d0e724df-685f-4661-b2ec-3cdd3c2ba0f1",{"type":52,"tag":431,"props":3232,"children":3233},{"style":438},[3234],{"type":58,"value":446},{"type":52,"tag":431,"props":3236,"children":3237},{"style":438},[3238],{"type":58,"value":1406},{"type":52,"tag":431,"props":3240,"children":3242},{"class":433,"line":3241},75,[3243,3247,3251,3255,3259,3263,3268,3272],{"type":52,"tag":431,"props":3244,"children":3245},{"style":438},[3246],{"type":58,"value":3208},{"type":52,"tag":431,"props":3248,"children":3249},{"style":3211},[3250],{"type":58,"value":410},{"type":52,"tag":431,"props":3252,"children":3253},{"style":438},[3254],{"type":58,"value":446},{"type":52,"tag":431,"props":3256,"children":3257},{"style":438},[3258],{"type":58,"value":375},{"type":52,"tag":431,"props":3260,"children":3261},{"style":438},[3262],{"type":58,"value":464},{"type":52,"tag":431,"props":3264,"children":3265},{"style":467},[3266],{"type":58,"value":3267},"urls",{"type":52,"tag":431,"props":3269,"children":3270},{"style":438},[3271],{"type":58,"value":446},{"type":52,"tag":431,"props":3273,"children":3274},{"style":438},[3275],{"type":58,"value":1406},{"type":52,"tag":431,"props":3277,"children":3279},{"class":433,"line":3278},76,[3280,3284,3288,3292,3296,3300,3304,3308],{"type":52,"tag":431,"props":3281,"children":3282},{"style":438},[3283],{"type":58,"value":3208},{"type":52,"tag":431,"props":3285,"children":3286},{"style":3211},[3287],{"type":58,"value":800},{"type":52,"tag":431,"props":3289,"children":3290},{"style":438},[3291],{"type":58,"value":446},{"type":52,"tag":431,"props":3293,"children":3294},{"style":438},[3295],{"type":58,"value":375},{"type":52,"tag":431,"props":3297,"children":3298},{"style":438},[3299],{"type":58,"value":464},{"type":52,"tag":431,"props":3301,"children":3302},{"style":467},[3303],{"type":58,"value":1177},{"type":52,"tag":431,"props":3305,"children":3306},{"style":438},[3307],{"type":58,"value":446},{"type":52,"tag":431,"props":3309,"children":3310},{"style":438},[3311],{"type":58,"value":1406},{"type":52,"tag":431,"props":3313,"children":3315},{"class":433,"line":3314},77,[3316,3320,3324,3328,3332,3336,3341],{"type":52,"tag":431,"props":3317,"children":3318},{"style":438},[3319],{"type":58,"value":3208},{"type":52,"tag":431,"props":3321,"children":3322},{"style":3211},[3323],{"type":58,"value":1380},{"type":52,"tag":431,"props":3325,"children":3326},{"style":438},[3327],{"type":58,"value":446},{"type":52,"tag":431,"props":3329,"children":3330},{"style":438},[3331],{"type":58,"value":375},{"type":52,"tag":431,"props":3333,"children":3334},{"style":438},[3335],{"type":58,"value":464},{"type":52,"tag":431,"props":3337,"children":3338},{"style":467},[3339],{"type":58,"value":3340},"array",{"type":52,"tag":431,"props":3342,"children":3343},{"style":438},[3344],{"type":58,"value":1349},{"type":52,"tag":431,"props":3346,"children":3348},{"class":433,"line":3347},78,[3349],{"type":52,"tag":431,"props":3350,"children":3351},{"style":438},[3352],{"type":58,"value":3353},"            }\n",{"type":52,"tag":431,"props":3355,"children":3357},{"class":433,"line":3356},79,[3358],{"type":52,"tag":431,"props":3359,"children":3360},{"style":438},[3361],{"type":58,"value":3362},"          ]\n",{"type":52,"tag":431,"props":3364,"children":3366},{"class":433,"line":3365},80,[3367],{"type":52,"tag":431,"props":3368,"children":3369},{"style":438},[3370],{"type":58,"value":3371},"        },\n",{"type":52,"tag":431,"props":3373,"children":3375},{"class":433,"line":3374},81,[3376,3380,3384,3388,3392],{"type":52,"tag":431,"props":3377,"children":3378},{"style":438},[3379],{"type":58,"value":1295},{"type":52,"tag":431,"props":3381,"children":3382},{"style":763},[3383],{"type":58,"value":1300},{"type":52,"tag":431,"props":3385,"children":3386},{"style":438},[3387],{"type":58,"value":446},{"type":52,"tag":431,"props":3389,"children":3390},{"style":438},[3391],{"type":58,"value":375},{"type":52,"tag":431,"props":3393,"children":3394},{"style":438},[3395],{"type":58,"value":1731},{"type":52,"tag":431,"props":3397,"children":3399},{"class":433,"line":3398},82,[3400],{"type":52,"tag":431,"props":3401,"children":3402},{"style":438},[3403],{"type":58,"value":1367},{"type":52,"tag":431,"props":3405,"children":3407},{"class":433,"line":3406},83,[3408,3412,3416,3420,3424,3428,3433,3437],{"type":52,"tag":431,"props":3409,"children":3410},{"style":438},[3411],{"type":58,"value":1268},{"type":52,"tag":431,"props":3413,"children":3414},{"style":740},[3415],{"type":58,"value":1380},{"type":52,"tag":431,"props":3417,"children":3418},{"style":438},[3419],{"type":58,"value":446},{"type":52,"tag":431,"props":3421,"children":3422},{"style":438},[3423],{"type":58,"value":375},{"type":52,"tag":431,"props":3425,"children":3426},{"style":438},[3427],{"type":58,"value":464},{"type":52,"tag":431,"props":3429,"children":3430},{"style":467},[3431],{"type":58,"value":3432},"n8n-nodes-base.set",{"type":52,"tag":431,"props":3434,"children":3435},{"style":438},[3436],{"type":58,"value":446},{"type":52,"tag":431,"props":3438,"children":3439},{"style":438},[3440],{"type":58,"value":1406},{"type":52,"tag":431,"props":3442,"children":3444},{"class":433,"line":3443},84,[3445,3449,3453,3457,3461,3466],{"type":52,"tag":431,"props":3446,"children":3447},{"style":438},[3448],{"type":58,"value":1268},{"type":52,"tag":431,"props":3450,"children":3451},{"style":740},[3452],{"type":58,"value":1419},{"type":52,"tag":431,"props":3454,"children":3455},{"style":438},[3456],{"type":58,"value":446},{"type":52,"tag":431,"props":3458,"children":3459},{"style":438},[3460],{"type":58,"value":375},{"type":52,"tag":431,"props":3462,"children":3463},{"style":763},[3464],{"type":58,"value":3465}," 3.4",{"type":52,"tag":431,"props":3467,"children":3468},{"style":438},[3469],{"type":58,"value":1406},{"type":52,"tag":431,"props":3471,"children":3473},{"class":433,"line":3472},85,[3474,3478,3482,3486,3490,3494,3499,3503,3507],{"type":52,"tag":431,"props":3475,"children":3476},{"style":438},[3477],{"type":58,"value":1268},{"type":52,"tag":431,"props":3479,"children":3480},{"style":740},[3481],{"type":58,"value":1449},{"type":52,"tag":431,"props":3483,"children":3484},{"style":438},[3485],{"type":58,"value":446},{"type":52,"tag":431,"props":3487,"children":3488},{"style":438},[3489],{"type":58,"value":375},{"type":52,"tag":431,"props":3491,"children":3492},{"style":438},[3493],{"type":58,"value":1462},{"type":52,"tag":431,"props":3495,"children":3496},{"style":763},[3497],{"type":58,"value":3498},"1920",{"type":52,"tag":431,"props":3500,"children":3501},{"style":438},[3502],{"type":58,"value":479},{"type":52,"tag":431,"props":3504,"children":3505},{"style":763},[3506],{"type":58,"value":3028},{"type":52,"tag":431,"props":3508,"children":3509},{"style":438},[3510],{"type":58,"value":1481},{"type":52,"tag":431,"props":3512,"children":3514},{"class":433,"line":3513},86,[3515,3519,3523,3527,3531,3535,3540,3544],{"type":52,"tag":431,"props":3516,"children":3517},{"style":438},[3518],{"type":58,"value":1268},{"type":52,"tag":431,"props":3520,"children":3521},{"style":740},[3522],{"type":58,"value":1493},{"type":52,"tag":431,"props":3524,"children":3525},{"style":438},[3526],{"type":58,"value":446},{"type":52,"tag":431,"props":3528,"children":3529},{"style":438},[3530],{"type":58,"value":375},{"type":52,"tag":431,"props":3532,"children":3533},{"style":438},[3534],{"type":58,"value":464},{"type":52,"tag":431,"props":3536,"children":3537},{"style":467},[3538],{"type":58,"value":3539},"6b409421-2270-497e-a7fd-b382d192314c",{"type":52,"tag":431,"props":3541,"children":3542},{"style":438},[3543],{"type":58,"value":446},{"type":52,"tag":431,"props":3545,"children":3546},{"style":438},[3547],{"type":58,"value":1406},{"type":52,"tag":431,"props":3549,"children":3551},{"class":433,"line":3550},87,[3552,3556,3560,3564,3568,3572,3577],{"type":52,"tag":431,"props":3553,"children":3554},{"style":438},[3555],{"type":58,"value":1268},{"type":52,"tag":431,"props":3557,"children":3558},{"style":740},[3559],{"type":58,"value":410},{"type":52,"tag":431,"props":3561,"children":3562},{"style":438},[3563],{"type":58,"value":446},{"type":52,"tag":431,"props":3565,"children":3566},{"style":438},[3567],{"type":58,"value":375},{"type":52,"tag":431,"props":3569,"children":3570},{"style":438},[3571],{"type":58,"value":464},{"type":52,"tag":431,"props":3573,"children":3574},{"style":467},[3575],{"type":58,"value":3576},"Set file urls",{"type":52,"tag":431,"props":3578,"children":3579},{"style":438},[3580],{"type":58,"value":1349},{"type":52,"tag":431,"props":3582,"children":3584},{"class":433,"line":3583},88,[3585],{"type":52,"tag":431,"props":3586,"children":3587},{"style":438},[3588],{"type":58,"value":1560},{"type":52,"tag":431,"props":3590,"children":3592},{"class":433,"line":3591},89,[3593],{"type":52,"tag":431,"props":3594,"children":3595},{"style":438},[3596],{"type":58,"value":1259},{"type":52,"tag":431,"props":3598,"children":3600},{"class":433,"line":3599},90,[3601,3605,3609,3613,3617,3621,3625,3630,3634,3638,3642,3646,3650,3654,3658,3662,3666,3670],{"type":52,"tag":431,"props":3602,"children":3603},{"style":438},[3604],{"type":58,"value":1268},{"type":52,"tag":431,"props":3606,"children":3607},{"style":740},[3608],{"type":58,"value":1273},{"type":52,"tag":431,"props":3610,"children":3611},{"style":438},[3612],{"type":58,"value":446},{"type":52,"tag":431,"props":3614,"children":3615},{"style":438},[3616],{"type":58,"value":375},{"type":52,"tag":431,"props":3618,"children":3619},{"style":438},[3620],{"type":58,"value":733},{"type":52,"tag":431,"props":3622,"children":3623},{"style":438},[3624],{"type":58,"value":446},{"type":52,"tag":431,"props":3626,"children":3627},{"style":763},[3628],{"type":58,"value":3629},"fieldToSplitOut",{"type":52,"tag":431,"props":3631,"children":3632},{"style":438},[3633],{"type":58,"value":446},{"type":52,"tag":431,"props":3635,"children":3636},{"style":438},[3637],{"type":58,"value":375},{"type":52,"tag":431,"props":3639,"children":3640},{"style":438},[3641],{"type":58,"value":464},{"type":52,"tag":431,"props":3643,"children":3644},{"style":467},[3645],{"type":58,"value":3267},{"type":52,"tag":431,"props":3647,"children":3648},{"style":438},[3649],{"type":58,"value":446},{"type":52,"tag":431,"props":3651,"children":3652},{"style":438},[3653],{"type":58,"value":479},{"type":52,"tag":431,"props":3655,"children":3656},{"style":438},[3657],{"type":58,"value":464},{"type":52,"tag":431,"props":3659,"children":3660},{"style":763},[3661],{"type":58,"value":1300},{"type":52,"tag":431,"props":3663,"children":3664},{"style":438},[3665],{"type":58,"value":446},{"type":52,"tag":431,"props":3667,"children":3668},{"style":438},[3669],{"type":58,"value":375},{"type":52,"tag":431,"props":3671,"children":3672},{"style":438},[3673],{"type":58,"value":2669},{"type":52,"tag":431,"props":3675,"children":3677},{"class":433,"line":3676},91,[3678,3682,3686,3690,3694,3698,3703,3707],{"type":52,"tag":431,"props":3679,"children":3680},{"style":438},[3681],{"type":58,"value":1268},{"type":52,"tag":431,"props":3683,"children":3684},{"style":740},[3685],{"type":58,"value":1380},{"type":52,"tag":431,"props":3687,"children":3688},{"style":438},[3689],{"type":58,"value":446},{"type":52,"tag":431,"props":3691,"children":3692},{"style":438},[3693],{"type":58,"value":375},{"type":52,"tag":431,"props":3695,"children":3696},{"style":438},[3697],{"type":58,"value":464},{"type":52,"tag":431,"props":3699,"children":3700},{"style":467},[3701],{"type":58,"value":3702},"n8n-nodes-base.splitOut",{"type":52,"tag":431,"props":3704,"children":3705},{"style":438},[3706],{"type":58,"value":446},{"type":52,"tag":431,"props":3708,"children":3709},{"style":438},[3710],{"type":58,"value":1406},{"type":52,"tag":431,"props":3712,"children":3714},{"class":433,"line":3713},92,[3715,3719,3723,3727,3731,3735],{"type":52,"tag":431,"props":3716,"children":3717},{"style":438},[3718],{"type":58,"value":1268},{"type":52,"tag":431,"props":3720,"children":3721},{"style":740},[3722],{"type":58,"value":1419},{"type":52,"tag":431,"props":3724,"children":3725},{"style":438},[3726],{"type":58,"value":446},{"type":52,"tag":431,"props":3728,"children":3729},{"style":438},[3730],{"type":58,"value":375},{"type":52,"tag":431,"props":3732,"children":3733},{"style":763},[3734],{"type":58,"value":2193},{"type":52,"tag":431,"props":3736,"children":3737},{"style":438},[3738],{"type":58,"value":1406},{"type":52,"tag":431,"props":3740,"children":3742},{"class":433,"line":3741},93,[3743,3747,3751,3755,3759,3763,3768,3772,3776],{"type":52,"tag":431,"props":3744,"children":3745},{"style":438},[3746],{"type":58,"value":1268},{"type":52,"tag":431,"props":3748,"children":3749},{"style":740},[3750],{"type":58,"value":1449},{"type":52,"tag":431,"props":3752,"children":3753},{"style":438},[3754],{"type":58,"value":446},{"type":52,"tag":431,"props":3756,"children":3757},{"style":438},[3758],{"type":58,"value":375},{"type":52,"tag":431,"props":3760,"children":3761},{"style":438},[3762],{"type":58,"value":1462},{"type":52,"tag":431,"props":3764,"children":3765},{"style":763},[3766],{"type":58,"value":3767},"2080",{"type":52,"tag":431,"props":3769,"children":3770},{"style":438},[3771],{"type":58,"value":479},{"type":52,"tag":431,"props":3773,"children":3774},{"style":763},[3775],{"type":58,"value":3028},{"type":52,"tag":431,"props":3777,"children":3778},{"style":438},[3779],{"type":58,"value":1481},{"type":52,"tag":431,"props":3781,"children":3783},{"class":433,"line":3782},94,[3784,3788,3792,3796,3800,3804,3809,3813],{"type":52,"tag":431,"props":3785,"children":3786},{"style":438},[3787],{"type":58,"value":1268},{"type":52,"tag":431,"props":3789,"children":3790},{"style":740},[3791],{"type":58,"value":1493},{"type":52,"tag":431,"props":3793,"children":3794},{"style":438},[3795],{"type":58,"value":446},{"type":52,"tag":431,"props":3797,"children":3798},{"style":438},[3799],{"type":58,"value":375},{"type":52,"tag":431,"props":3801,"children":3802},{"style":438},[3803],{"type":58,"value":464},{"type":52,"tag":431,"props":3805,"children":3806},{"style":467},[3807],{"type":58,"value":3808},"e73f6f2c-4d20-48cb-b132-551ff9c3dd61",{"type":52,"tag":431,"props":3810,"children":3811},{"style":438},[3812],{"type":58,"value":446},{"type":52,"tag":431,"props":3814,"children":3815},{"style":438},[3816],{"type":58,"value":1406},{"type":52,"tag":431,"props":3818,"children":3820},{"class":433,"line":3819},95,[3821,3825,3829,3833,3837,3841,3846],{"type":52,"tag":431,"props":3822,"children":3823},{"style":438},[3824],{"type":58,"value":1268},{"type":52,"tag":431,"props":3826,"children":3827},{"style":740},[3828],{"type":58,"value":410},{"type":52,"tag":431,"props":3830,"children":3831},{"style":438},[3832],{"type":58,"value":446},{"type":52,"tag":431,"props":3834,"children":3835},{"style":438},[3836],{"type":58,"value":375},{"type":52,"tag":431,"props":3838,"children":3839},{"style":438},[3840],{"type":58,"value":464},{"type":52,"tag":431,"props":3842,"children":3843},{"style":467},[3844],{"type":58,"value":3845},"Split to list",{"type":52,"tag":431,"props":3847,"children":3848},{"style":438},[3849],{"type":58,"value":1349},{"type":52,"tag":431,"props":3851,"children":3853},{"class":433,"line":3852},96,[3854],{"type":52,"tag":431,"props":3855,"children":3856},{"style":438},[3857],{"type":58,"value":1560},{"type":52,"tag":431,"props":3859,"children":3861},{"class":433,"line":3860},97,[3862],{"type":52,"tag":431,"props":3863,"children":3864},{"style":438},[3865],{"type":58,"value":1259},{"type":52,"tag":431,"props":3867,"children":3869},{"class":433,"line":3868},98,[3870,3874,3878,3882,3886],{"type":52,"tag":431,"props":3871,"children":3872},{"style":438},[3873],{"type":58,"value":1268},{"type":52,"tag":431,"props":3875,"children":3876},{"style":740},[3877],{"type":58,"value":1273},{"type":52,"tag":431,"props":3879,"children":3880},{"style":438},[3881],{"type":58,"value":446},{"type":52,"tag":431,"props":3883,"children":3884},{"style":438},[3885],{"type":58,"value":375},{"type":52,"tag":431,"props":3887,"children":3888},{"style":438},[3889],{"type":58,"value":1286},{"type":52,"tag":431,"props":3891,"children":3893},{"class":433,"line":3892},99,[3894,3898,3903,3907,3911,3915,3920,3924],{"type":52,"tag":431,"props":3895,"children":3896},{"style":438},[3897],{"type":58,"value":1295},{"type":52,"tag":431,"props":3899,"children":3900},{"style":763},[3901],{"type":58,"value":3902},"url",{"type":52,"tag":431,"props":3904,"children":3905},{"style":438},[3906],{"type":58,"value":446},{"type":52,"tag":431,"props":3908,"children":3909},{"style":438},[3910],{"type":58,"value":375},{"type":52,"tag":431,"props":3912,"children":3913},{"style":438},[3914],{"type":58,"value":464},{"type":52,"tag":431,"props":3916,"children":3917},{"style":467},[3918],{"type":58,"value":3919},"={{ $json.urls }}",{"type":52,"tag":431,"props":3921,"children":3922},{"style":438},[3923],{"type":58,"value":446},{"type":52,"tag":431,"props":3925,"children":3926},{"style":438},[3927],{"type":58,"value":1406},{"type":52,"tag":431,"props":3929,"children":3931},{"class":433,"line":3930},100,[3932,3936,3940,3944,3948,3952,3956,3961,3965,3969,3973,3977,3981,3985,3989,3993,3997,4003,4007,4011,4015,4020,4024],{"type":52,"tag":431,"props":3933,"children":3934},{"style":438},[3935],{"type":58,"value":1295},{"type":52,"tag":431,"props":3937,"children":3938},{"style":763},[3939],{"type":58,"value":1300},{"type":52,"tag":431,"props":3941,"children":3942},{"style":438},[3943],{"type":58,"value":446},{"type":52,"tag":431,"props":3945,"children":3946},{"style":438},[3947],{"type":58,"value":375},{"type":52,"tag":431,"props":3949,"children":3950},{"style":438},[3951],{"type":58,"value":733},{"type":52,"tag":431,"props":3953,"children":3954},{"style":438},[3955],{"type":58,"value":446},{"type":52,"tag":431,"props":3957,"children":3958},{"style":1324},[3959],{"type":58,"value":3960},"response",{"type":52,"tag":431,"props":3962,"children":3963},{"style":438},[3964],{"type":58,"value":446},{"type":52,"tag":431,"props":3966,"children":3967},{"style":438},[3968],{"type":58,"value":375},{"type":52,"tag":431,"props":3970,"children":3971},{"style":438},[3972],{"type":58,"value":733},{"type":52,"tag":431,"props":3974,"children":3975},{"style":438},[3976],{"type":58,"value":446},{"type":52,"tag":431,"props":3978,"children":3979},{"style":3211},[3980],{"type":58,"value":3960},{"type":52,"tag":431,"props":3982,"children":3983},{"style":438},[3984],{"type":58,"value":446},{"type":52,"tag":431,"props":3986,"children":3987},{"style":438},[3988],{"type":58,"value":375},{"type":52,"tag":431,"props":3990,"children":3991},{"style":438},[3992],{"type":58,"value":733},{"type":52,"tag":431,"props":3994,"children":3995},{"style":438},[3996],{"type":58,"value":446},{"type":52,"tag":431,"props":3998,"children":4000},{"style":3999},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[4001],{"type":58,"value":4002},"responseFormat",{"type":52,"tag":431,"props":4004,"children":4005},{"style":438},[4006],{"type":58,"value":446},{"type":52,"tag":431,"props":4008,"children":4009},{"style":438},[4010],{"type":58,"value":375},{"type":52,"tag":431,"props":4012,"children":4013},{"style":438},[4014],{"type":58,"value":464},{"type":52,"tag":431,"props":4016,"children":4017},{"style":467},[4018],{"type":58,"value":4019},"file",{"type":52,"tag":431,"props":4021,"children":4022},{"style":438},[4023],{"type":58,"value":446},{"type":52,"tag":431,"props":4025,"children":4026},{"style":438},[4027],{"type":58,"value":4028},"}}}\n",{"type":52,"tag":431,"props":4030,"children":4032},{"class":433,"line":4031},101,[4033],{"type":52,"tag":431,"props":4034,"children":4035},{"style":438},[4036],{"type":58,"value":1367},{"type":52,"tag":431,"props":4038,"children":4040},{"class":433,"line":4039},102,[4041,4045,4049,4053,4057,4061,4066,4070],{"type":52,"tag":431,"props":4042,"children":4043},{"style":438},[4044],{"type":58,"value":1268},{"type":52,"tag":431,"props":4046,"children":4047},{"style":740},[4048],{"type":58,"value":1380},{"type":52,"tag":431,"props":4050,"children":4051},{"style":438},[4052],{"type":58,"value":446},{"type":52,"tag":431,"props":4054,"children":4055},{"style":438},[4056],{"type":58,"value":375},{"type":52,"tag":431,"props":4058,"children":4059},{"style":438},[4060],{"type":58,"value":464},{"type":52,"tag":431,"props":4062,"children":4063},{"style":467},[4064],{"type":58,"value":4065},"n8n-nodes-base.httpRequest",{"type":52,"tag":431,"props":4067,"children":4068},{"style":438},[4069],{"type":58,"value":446},{"type":52,"tag":431,"props":4071,"children":4072},{"style":438},[4073],{"type":58,"value":1406},{"type":52,"tag":431,"props":4075,"children":4077},{"class":433,"line":4076},103,[4078,4082,4086,4090,4094,4099],{"type":52,"tag":431,"props":4079,"children":4080},{"style":438},[4081],{"type":58,"value":1268},{"type":52,"tag":431,"props":4083,"children":4084},{"style":740},[4085],{"type":58,"value":1419},{"type":52,"tag":431,"props":4087,"children":4088},{"style":438},[4089],{"type":58,"value":446},{"type":52,"tag":431,"props":4091,"children":4092},{"style":438},[4093],{"type":58,"value":375},{"type":52,"tag":431,"props":4095,"children":4096},{"style":763},[4097],{"type":58,"value":4098}," 4.2",{"type":52,"tag":431,"props":4100,"children":4101},{"style":438},[4102],{"type":58,"value":1406},{"type":52,"tag":431,"props":4104,"children":4106},{"class":433,"line":4105},104,[4107,4111,4115,4119,4123,4127,4132,4136,4140],{"type":52,"tag":431,"props":4108,"children":4109},{"style":438},[4110],{"type":58,"value":1268},{"type":52,"tag":431,"props":4112,"children":4113},{"style":740},[4114],{"type":58,"value":1449},{"type":52,"tag":431,"props":4116,"children":4117},{"style":438},[4118],{"type":58,"value":446},{"type":52,"tag":431,"props":4120,"children":4121},{"style":438},[4122],{"type":58,"value":375},{"type":52,"tag":431,"props":4124,"children":4125},{"style":438},[4126],{"type":58,"value":1462},{"type":52,"tag":431,"props":4128,"children":4129},{"style":763},[4130],{"type":58,"value":4131},"2240",{"type":52,"tag":431,"props":4133,"children":4134},{"style":438},[4135],{"type":58,"value":479},{"type":52,"tag":431,"props":4137,"children":4138},{"style":763},[4139],{"type":58,"value":3028},{"type":52,"tag":431,"props":4141,"children":4142},{"style":438},[4143],{"type":58,"value":1481},{"type":52,"tag":431,"props":4145,"children":4147},{"class":433,"line":4146},105,[4148,4152,4156,4160,4164,4168,4173,4177],{"type":52,"tag":431,"props":4149,"children":4150},{"style":438},[4151],{"type":58,"value":1268},{"type":52,"tag":431,"props":4153,"children":4154},{"style":740},[4155],{"type":58,"value":1493},{"type":52,"tag":431,"props":4157,"children":4158},{"style":438},[4159],{"type":58,"value":446},{"type":52,"tag":431,"props":4161,"children":4162},{"style":438},[4163],{"type":58,"value":375},{"type":52,"tag":431,"props":4165,"children":4166},{"style":438},[4167],{"type":58,"value":464},{"type":52,"tag":431,"props":4169,"children":4170},{"style":467},[4171],{"type":58,"value":4172},"a58f8e1c-943b-4a24-8746-477ed9912ad4",{"type":52,"tag":431,"props":4174,"children":4175},{"style":438},[4176],{"type":58,"value":446},{"type":52,"tag":431,"props":4178,"children":4179},{"style":438},[4180],{"type":58,"value":1406},{"type":52,"tag":431,"props":4182,"children":4184},{"class":433,"line":4183},106,[4185,4189,4193,4197,4201,4205,4210],{"type":52,"tag":431,"props":4186,"children":4187},{"style":438},[4188],{"type":58,"value":1268},{"type":52,"tag":431,"props":4190,"children":4191},{"style":740},[4192],{"type":58,"value":410},{"type":52,"tag":431,"props":4194,"children":4195},{"style":438},[4196],{"type":58,"value":446},{"type":52,"tag":431,"props":4198,"children":4199},{"style":438},[4200],{"type":58,"value":375},{"type":52,"tag":431,"props":4202,"children":4203},{"style":438},[4204],{"type":58,"value":464},{"type":52,"tag":431,"props":4206,"children":4207},{"style":467},[4208],{"type":58,"value":4209},"Download file",{"type":52,"tag":431,"props":4211,"children":4212},{"style":438},[4213],{"type":58,"value":1349},{"type":52,"tag":431,"props":4215,"children":4217},{"class":433,"line":4216},107,[4218],{"type":52,"tag":431,"props":4219,"children":4220},{"style":438},[4221],{"type":58,"value":1560},{"type":52,"tag":431,"props":4223,"children":4225},{"class":433,"line":4224},108,[4226],{"type":52,"tag":431,"props":4227,"children":4228},{"style":438},[4229],{"type":58,"value":1259},{"type":52,"tag":431,"props":4231,"children":4233},{"class":433,"line":4232},109,[4234,4238,4242,4246,4250],{"type":52,"tag":431,"props":4235,"children":4236},{"style":438},[4237],{"type":58,"value":1268},{"type":52,"tag":431,"props":4239,"children":4240},{"style":740},[4241],{"type":58,"value":1273},{"type":52,"tag":431,"props":4243,"children":4244},{"style":438},[4245],{"type":58,"value":446},{"type":52,"tag":431,"props":4247,"children":4248},{"style":438},[4249],{"type":58,"value":375},{"type":52,"tag":431,"props":4251,"children":4252},{"style":438},[4253],{"type":58,"value":1286},{"type":52,"tag":431,"props":4255,"children":4257},{"class":433,"line":4256},110,[4258,4262,4267,4271,4275,4279,4283,4287],{"type":52,"tag":431,"props":4259,"children":4260},{"style":438},[4261],{"type":58,"value":1295},{"type":52,"tag":431,"props":4263,"children":4264},{"style":763},[4265],{"type":58,"value":4266},"resource",{"type":52,"tag":431,"props":4268,"children":4269},{"style":438},[4270],{"type":58,"value":446},{"type":52,"tag":431,"props":4272,"children":4273},{"style":438},[4274],{"type":58,"value":375},{"type":52,"tag":431,"props":4276,"children":4277},{"style":438},[4278],{"type":58,"value":464},{"type":52,"tag":431,"props":4280,"children":4281},{"style":467},[4282],{"type":58,"value":4019},{"type":52,"tag":431,"props":4284,"children":4285},{"style":438},[4286],{"type":58,"value":446},{"type":52,"tag":431,"props":4288,"children":4289},{"style":438},[4290],{"type":58,"value":1406},{"type":52,"tag":431,"props":4292,"children":4294},{"class":433,"line":4293},111,[4295,4299,4304,4308,4312,4316,4320,4324],{"type":52,"tag":431,"props":4296,"children":4297},{"style":438},[4298],{"type":58,"value":1295},{"type":52,"tag":431,"props":4300,"children":4301},{"style":763},[4302],{"type":58,"value":4303},"operation",{"type":52,"tag":431,"props":4305,"children":4306},{"style":438},[4307],{"type":58,"value":446},{"type":52,"tag":431,"props":4309,"children":4310},{"style":438},[4311],{"type":58,"value":375},{"type":52,"tag":431,"props":4313,"children":4314},{"style":438},[4315],{"type":58,"value":464},{"type":52,"tag":431,"props":4317,"children":4318},{"style":467},[4319],{"type":58,"value":1059},{"type":52,"tag":431,"props":4321,"children":4322},{"style":438},[4323],{"type":58,"value":446},{"type":52,"tag":431,"props":4325,"children":4326},{"style":438},[4327],{"type":58,"value":1406},{"type":52,"tag":431,"props":4329,"children":4331},{"class":433,"line":4330},112,[4332,4336,4341,4345,4349,4353,4357,4362,4366,4370,4374,4378,4382,4386,4390,4394,4398,4402,4406,4410,4415,4419,4424,4428],{"type":52,"tag":431,"props":4333,"children":4334},{"style":438},[4335],{"type":58,"value":1295},{"type":52,"tag":431,"props":4337,"children":4338},{"style":763},[4339],{"type":58,"value":4340},"assistantData",{"type":52,"tag":431,"props":4342,"children":4343},{"style":438},[4344],{"type":58,"value":446},{"type":52,"tag":431,"props":4346,"children":4347},{"style":438},[4348],{"type":58,"value":375},{"type":52,"tag":431,"props":4350,"children":4351},{"style":438},[4352],{"type":58,"value":464},{"type":52,"tag":431,"props":4354,"children":4355},{"style":467},[4356],{"type":58,"value":441},{"type":52,"tag":431,"props":4358,"children":4359},{"style":698},[4360],{"type":58,"value":4361},"\\\"",{"type":52,"tag":431,"props":4363,"children":4364},{"style":467},[4365],{"type":58,"value":410},{"type":52,"tag":431,"props":4367,"children":4368},{"style":698},[4369],{"type":58,"value":4361},{"type":52,"tag":431,"props":4371,"children":4372},{"style":467},[4373],{"type":58,"value":375},{"type":52,"tag":431,"props":4375,"children":4376},{"style":698},[4377],{"type":58,"value":4361},{"type":52,"tag":431,"props":4379,"children":4380},{"style":467},[4381],{"type":58,"value":1148},{"type":52,"tag":431,"props":4383,"children":4384},{"style":698},[4385],{"type":58,"value":4361},{"type":52,"tag":431,"props":4387,"children":4388},{"style":467},[4389],{"type":58,"value":479},{"type":52,"tag":431,"props":4391,"children":4392},{"style":698},[4393],{"type":58,"value":4361},{"type":52,"tag":431,"props":4395,"children":4396},{"style":467},[4397],{"type":58,"value":418},{"type":52,"tag":431,"props":4399,"children":4400},{"style":698},[4401],{"type":58,"value":4361},{"type":52,"tag":431,"props":4403,"children":4404},{"style":467},[4405],{"type":58,"value":375},{"type":52,"tag":431,"props":4407,"children":4408},{"style":698},[4409],{"type":58,"value":4361},{"type":52,"tag":431,"props":4411,"children":4412},{"style":467},[4413],{"type":58,"value":4414},"https:\u002F\u002F[ASSISTANT_HOST]",{"type":52,"tag":431,"props":4416,"children":4417},{"style":698},[4418],{"type":58,"value":4361},{"type":52,"tag":431,"props":4420,"children":4421},{"style":467},[4422],{"type":58,"value":4423},"}",{"type":52,"tag":431,"props":4425,"children":4426},{"style":438},[4427],{"type":58,"value":446},{"type":52,"tag":431,"props":4429,"children":4430},{"style":438},[4431],{"type":58,"value":1406},{"type":52,"tag":431,"props":4433,"children":4435},{"class":433,"line":4434},113,[4436,4440,4444,4448,4452,4456,4461,4465],{"type":52,"tag":431,"props":4437,"children":4438},{"style":438},[4439],{"type":58,"value":1295},{"type":52,"tag":431,"props":4441,"children":4442},{"style":763},[4443],{"type":58,"value":620},{"type":52,"tag":431,"props":4445,"children":4446},{"style":438},[4447],{"type":58,"value":446},{"type":52,"tag":431,"props":4449,"children":4450},{"style":438},[4451],{"type":58,"value":375},{"type":52,"tag":431,"props":4453,"children":4454},{"style":438},[4455],{"type":58,"value":464},{"type":52,"tag":431,"props":4457,"children":4458},{"style":467},[4459],{"type":58,"value":4460},"={{ $('Split to list').item.json.urls }}",{"type":52,"tag":431,"props":4462,"children":4463},{"style":438},[4464],{"type":58,"value":446},{"type":52,"tag":431,"props":4466,"children":4467},{"style":438},[4468],{"type":58,"value":1406},{"type":52,"tag":431,"props":4470,"children":4472},{"class":433,"line":4471},114,[4473,4477,4481,4485,4489,4493,4497,4501,4505,4509,4513,4517,4521],{"type":52,"tag":431,"props":4474,"children":4475},{"style":438},[4476],{"type":58,"value":1295},{"type":52,"tag":431,"props":4478,"children":4479},{"style":763},[4480],{"type":58,"value":539},{"type":52,"tag":431,"props":4482,"children":4483},{"style":438},[4484],{"type":58,"value":446},{"type":52,"tag":431,"props":4486,"children":4487},{"style":438},[4488],{"type":58,"value":375},{"type":52,"tag":431,"props":4490,"children":4491},{"style":438},[4492],{"type":58,"value":733},{"type":52,"tag":431,"props":4494,"children":4495},{"style":438},[4496],{"type":58,"value":446},{"type":52,"tag":431,"props":4498,"children":4499},{"style":1324},[4500],{"type":58,"value":531},{"type":52,"tag":431,"props":4502,"children":4503},{"style":438},[4504],{"type":58,"value":446},{"type":52,"tag":431,"props":4506,"children":4507},{"style":438},[4508],{"type":58,"value":375},{"type":52,"tag":431,"props":4510,"children":4511},{"style":438},[4512],{"type":58,"value":464},{"type":52,"tag":431,"props":4514,"children":4515},{"style":467},[4516],{"type":58,"value":580},{"type":52,"tag":431,"props":4518,"children":4519},{"style":438},[4520],{"type":58,"value":446},{"type":52,"tag":431,"props":4522,"children":4523},{"style":438},[4524],{"type":58,"value":513},{"type":52,"tag":431,"props":4526,"children":4528},{"class":433,"line":4527},115,[4529],{"type":52,"tag":431,"props":4530,"children":4531},{"style":438},[4532],{"type":58,"value":1367},{"type":52,"tag":431,"props":4534,"children":4536},{"class":433,"line":4535},116,[4537,4541,4545,4549,4553,4557,4561,4565],{"type":52,"tag":431,"props":4538,"children":4539},{"style":438},[4540],{"type":58,"value":1268},{"type":52,"tag":431,"props":4542,"children":4543},{"style":740},[4544],{"type":58,"value":1380},{"type":52,"tag":431,"props":4546,"children":4547},{"style":438},[4548],{"type":58,"value":446},{"type":52,"tag":431,"props":4550,"children":4551},{"style":438},[4552],{"type":58,"value":375},{"type":52,"tag":431,"props":4554,"children":4555},{"style":438},[4556],{"type":58,"value":464},{"type":52,"tag":431,"props":4558,"children":4559},{"style":467},[4560],{"type":58,"value":292},{"type":52,"tag":431,"props":4562,"children":4563},{"style":438},[4564],{"type":58,"value":446},{"type":52,"tag":431,"props":4566,"children":4567},{"style":438},[4568],{"type":58,"value":1406},{"type":52,"tag":431,"props":4570,"children":4572},{"class":433,"line":4571},117,[4573,4577,4581,4585,4589,4593],{"type":52,"tag":431,"props":4574,"children":4575},{"style":438},[4576],{"type":58,"value":1268},{"type":52,"tag":431,"props":4578,"children":4579},{"style":740},[4580],{"type":58,"value":1419},{"type":52,"tag":431,"props":4582,"children":4583},{"style":438},[4584],{"type":58,"value":446},{"type":52,"tag":431,"props":4586,"children":4587},{"style":438},[4588],{"type":58,"value":375},{"type":52,"tag":431,"props":4590,"children":4591},{"style":763},[4592],{"type":58,"value":1801},{"type":52,"tag":431,"props":4594,"children":4595},{"style":438},[4596],{"type":58,"value":1406},{"type":52,"tag":431,"props":4598,"children":4600},{"class":433,"line":4599},118,[4601,4605,4609,4613,4617,4621,4626,4630,4634],{"type":52,"tag":431,"props":4602,"children":4603},{"style":438},[4604],{"type":58,"value":1268},{"type":52,"tag":431,"props":4606,"children":4607},{"style":740},[4608],{"type":58,"value":1449},{"type":52,"tag":431,"props":4610,"children":4611},{"style":438},[4612],{"type":58,"value":446},{"type":52,"tag":431,"props":4614,"children":4615},{"style":438},[4616],{"type":58,"value":375},{"type":52,"tag":431,"props":4618,"children":4619},{"style":438},[4620],{"type":58,"value":1462},{"type":52,"tag":431,"props":4622,"children":4623},{"style":763},[4624],{"type":58,"value":4625},"2416",{"type":52,"tag":431,"props":4627,"children":4628},{"style":438},[4629],{"type":58,"value":479},{"type":52,"tag":431,"props":4631,"children":4632},{"style":763},[4633],{"type":58,"value":3028},{"type":52,"tag":431,"props":4635,"children":4636},{"style":438},[4637],{"type":58,"value":1481},{"type":52,"tag":431,"props":4639,"children":4641},{"class":433,"line":4640},119,[4642,4646,4650,4654,4658,4662,4667,4671],{"type":52,"tag":431,"props":4643,"children":4644},{"style":438},[4645],{"type":58,"value":1268},{"type":52,"tag":431,"props":4647,"children":4648},{"style":740},[4649],{"type":58,"value":1493},{"type":52,"tag":431,"props":4651,"children":4652},{"style":438},[4653],{"type":58,"value":446},{"type":52,"tag":431,"props":4655,"children":4656},{"style":438},[4657],{"type":58,"value":375},{"type":52,"tag":431,"props":4659,"children":4660},{"style":438},[4661],{"type":58,"value":464},{"type":52,"tag":431,"props":4663,"children":4664},{"style":467},[4665],{"type":58,"value":4666},"196122df-d2b2-43e4-9f8d-710aedb595a6",{"type":52,"tag":431,"props":4668,"children":4669},{"style":438},[4670],{"type":58,"value":446},{"type":52,"tag":431,"props":4672,"children":4673},{"style":438},[4674],{"type":58,"value":1406},{"type":52,"tag":431,"props":4676,"children":4678},{"class":433,"line":4677},120,[4679,4683,4687,4691,4695,4699,4704],{"type":52,"tag":431,"props":4680,"children":4681},{"style":438},[4682],{"type":58,"value":1268},{"type":52,"tag":431,"props":4684,"children":4685},{"style":740},[4686],{"type":58,"value":410},{"type":52,"tag":431,"props":4688,"children":4689},{"style":438},[4690],{"type":58,"value":446},{"type":52,"tag":431,"props":4692,"children":4693},{"style":438},[4694],{"type":58,"value":375},{"type":52,"tag":431,"props":4696,"children":4697},{"style":438},[4698],{"type":58,"value":464},{"type":52,"tag":431,"props":4700,"children":4701},{"style":467},[4702],{"type":58,"value":4703},"Upload file to Assistant",{"type":52,"tag":431,"props":4705,"children":4706},{"style":438},[4707],{"type":58,"value":1349},{"type":52,"tag":431,"props":4709,"children":4711},{"class":433,"line":4710},121,[4712],{"type":52,"tag":431,"props":4713,"children":4714},{"style":438},[4715],{"type":58,"value":1560},{"type":52,"tag":431,"props":4717,"children":4719},{"class":433,"line":4718},122,[4720],{"type":52,"tag":431,"props":4721,"children":4722},{"style":438},[4723],{"type":58,"value":1259},{"type":52,"tag":431,"props":4725,"children":4727},{"class":433,"line":4726},123,[4728,4732,4736,4740,4744],{"type":52,"tag":431,"props":4729,"children":4730},{"style":438},[4731],{"type":58,"value":1268},{"type":52,"tag":431,"props":4733,"children":4734},{"style":740},[4735],{"type":58,"value":1273},{"type":52,"tag":431,"props":4737,"children":4738},{"style":438},[4739],{"type":58,"value":446},{"type":52,"tag":431,"props":4741,"children":4742},{"style":438},[4743],{"type":58,"value":375},{"type":52,"tag":431,"props":4745,"children":4746},{"style":438},[4747],{"type":58,"value":1286},{"type":52,"tag":431,"props":4749,"children":4751},{"class":433,"line":4750},124,[4752,4756,4760,4764,4768,4772,4776,4780,4784,4788,4792,4796,4800,4804,4808,4812,4816,4820,4824,4828,4832,4836,4840,4844],{"type":52,"tag":431,"props":4753,"children":4754},{"style":438},[4755],{"type":58,"value":1295},{"type":52,"tag":431,"props":4757,"children":4758},{"style":763},[4759],{"type":58,"value":4340},{"type":52,"tag":431,"props":4761,"children":4762},{"style":438},[4763],{"type":58,"value":446},{"type":52,"tag":431,"props":4765,"children":4766},{"style":438},[4767],{"type":58,"value":375},{"type":52,"tag":431,"props":4769,"children":4770},{"style":438},[4771],{"type":58,"value":464},{"type":52,"tag":431,"props":4773,"children":4774},{"style":467},[4775],{"type":58,"value":441},{"type":52,"tag":431,"props":4777,"children":4778},{"style":698},[4779],{"type":58,"value":4361},{"type":52,"tag":431,"props":4781,"children":4782},{"style":467},[4783],{"type":58,"value":410},{"type":52,"tag":431,"props":4785,"children":4786},{"style":698},[4787],{"type":58,"value":4361},{"type":52,"tag":431,"props":4789,"children":4790},{"style":467},[4791],{"type":58,"value":375},{"type":52,"tag":431,"props":4793,"children":4794},{"style":698},[4795],{"type":58,"value":4361},{"type":52,"tag":431,"props":4797,"children":4798},{"style":467},[4799],{"type":58,"value":1148},{"type":52,"tag":431,"props":4801,"children":4802},{"style":698},[4803],{"type":58,"value":4361},{"type":52,"tag":431,"props":4805,"children":4806},{"style":467},[4807],{"type":58,"value":479},{"type":52,"tag":431,"props":4809,"children":4810},{"style":698},[4811],{"type":58,"value":4361},{"type":52,"tag":431,"props":4813,"children":4814},{"style":467},[4815],{"type":58,"value":418},{"type":52,"tag":431,"props":4817,"children":4818},{"style":698},[4819],{"type":58,"value":4361},{"type":52,"tag":431,"props":4821,"children":4822},{"style":467},[4823],{"type":58,"value":375},{"type":52,"tag":431,"props":4825,"children":4826},{"style":698},[4827],{"type":58,"value":4361},{"type":52,"tag":431,"props":4829,"children":4830},{"style":467},[4831],{"type":58,"value":4414},{"type":52,"tag":431,"props":4833,"children":4834},{"style":698},[4835],{"type":58,"value":4361},{"type":52,"tag":431,"props":4837,"children":4838},{"style":467},[4839],{"type":58,"value":4423},{"type":52,"tag":431,"props":4841,"children":4842},{"style":438},[4843],{"type":58,"value":446},{"type":52,"tag":431,"props":4845,"children":4846},{"style":438},[4847],{"type":58,"value":1406},{"type":52,"tag":431,"props":4849,"children":4851},{"class":433,"line":4850},125,[4852,4856,4860,4864,4868,4872,4876,4880,4884,4888,4892,4896,4900],{"type":52,"tag":431,"props":4853,"children":4854},{"style":438},[4855],{"type":58,"value":1295},{"type":52,"tag":431,"props":4857,"children":4858},{"style":763},[4859],{"type":58,"value":539},{"type":52,"tag":431,"props":4861,"children":4862},{"style":438},[4863],{"type":58,"value":446},{"type":52,"tag":431,"props":4865,"children":4866},{"style":438},[4867],{"type":58,"value":375},{"type":52,"tag":431,"props":4869,"children":4870},{"style":438},[4871],{"type":58,"value":733},{"type":52,"tag":431,"props":4873,"children":4874},{"style":438},[4875],{"type":58,"value":446},{"type":52,"tag":431,"props":4877,"children":4878},{"style":1324},[4879],{"type":58,"value":531},{"type":52,"tag":431,"props":4881,"children":4882},{"style":438},[4883],{"type":58,"value":446},{"type":52,"tag":431,"props":4885,"children":4886},{"style":438},[4887],{"type":58,"value":375},{"type":52,"tag":431,"props":4889,"children":4890},{"style":438},[4891],{"type":58,"value":464},{"type":52,"tag":431,"props":4893,"children":4894},{"style":467},[4895],{"type":58,"value":580},{"type":52,"tag":431,"props":4897,"children":4898},{"style":438},[4899],{"type":58,"value":446},{"type":52,"tag":431,"props":4901,"children":4902},{"style":438},[4903],{"type":58,"value":513},{"type":52,"tag":431,"props":4905,"children":4907},{"class":433,"line":4906},126,[4908],{"type":52,"tag":431,"props":4909,"children":4910},{"style":438},[4911],{"type":58,"value":1367},{"type":52,"tag":431,"props":4913,"children":4915},{"class":433,"line":4914},127,[4916,4920,4924,4928,4932,4936,4940,4944],{"type":52,"tag":431,"props":4917,"children":4918},{"style":438},[4919],{"type":58,"value":1268},{"type":52,"tag":431,"props":4921,"children":4922},{"style":740},[4923],{"type":58,"value":1380},{"type":52,"tag":431,"props":4925,"children":4926},{"style":438},[4927],{"type":58,"value":446},{"type":52,"tag":431,"props":4929,"children":4930},{"style":438},[4931],{"type":58,"value":375},{"type":52,"tag":431,"props":4933,"children":4934},{"style":438},[4935],{"type":58,"value":464},{"type":52,"tag":431,"props":4937,"children":4938},{"style":467},[4939],{"type":58,"value":303},{"type":52,"tag":431,"props":4941,"children":4942},{"style":438},[4943],{"type":58,"value":446},{"type":52,"tag":431,"props":4945,"children":4946},{"style":438},[4947],{"type":58,"value":1406},{"type":52,"tag":431,"props":4949,"children":4951},{"class":433,"line":4950},128,[4952,4956,4960,4964,4968,4972],{"type":52,"tag":431,"props":4953,"children":4954},{"style":438},[4955],{"type":58,"value":1268},{"type":52,"tag":431,"props":4957,"children":4958},{"style":740},[4959],{"type":58,"value":1419},{"type":52,"tag":431,"props":4961,"children":4962},{"style":438},[4963],{"type":58,"value":446},{"type":52,"tag":431,"props":4965,"children":4966},{"style":438},[4967],{"type":58,"value":375},{"type":52,"tag":431,"props":4969,"children":4970},{"style":763},[4971],{"type":58,"value":1801},{"type":52,"tag":431,"props":4973,"children":4974},{"style":438},[4975],{"type":58,"value":1406},{"type":52,"tag":431,"props":4977,"children":4979},{"class":433,"line":4978},129,[4980,4984,4988,4992,4996,5000,5005,5009,5014],{"type":52,"tag":431,"props":4981,"children":4982},{"style":438},[4983],{"type":58,"value":1268},{"type":52,"tag":431,"props":4985,"children":4986},{"style":740},[4987],{"type":58,"value":1449},{"type":52,"tag":431,"props":4989,"children":4990},{"style":438},[4991],{"type":58,"value":446},{"type":52,"tag":431,"props":4993,"children":4994},{"style":438},[4995],{"type":58,"value":375},{"type":52,"tag":431,"props":4997,"children":4998},{"style":438},[4999],{"type":58,"value":1462},{"type":52,"tag":431,"props":5001,"children":5002},{"style":763},[5003],{"type":58,"value":5004},"2368",{"type":52,"tag":431,"props":5006,"children":5007},{"style":438},[5008],{"type":58,"value":479},{"type":52,"tag":431,"props":5010,"children":5011},{"style":763},[5012],{"type":58,"value":5013}," 992",{"type":52,"tag":431,"props":5015,"children":5016},{"style":438},[5017],{"type":58,"value":1481},{"type":52,"tag":431,"props":5019,"children":5021},{"class":433,"line":5020},130,[5022,5026,5030,5034,5038,5042,5047,5051],{"type":52,"tag":431,"props":5023,"children":5024},{"style":438},[5025],{"type":58,"value":1268},{"type":52,"tag":431,"props":5027,"children":5028},{"style":740},[5029],{"type":58,"value":1493},{"type":52,"tag":431,"props":5031,"children":5032},{"style":438},[5033],{"type":58,"value":446},{"type":52,"tag":431,"props":5035,"children":5036},{"style":438},[5037],{"type":58,"value":375},{"type":52,"tag":431,"props":5039,"children":5040},{"style":438},[5041],{"type":58,"value":464},{"type":52,"tag":431,"props":5043,"children":5044},{"style":467},[5045],{"type":58,"value":5046},"c3ba53e9-511d-47e7-b7fb-38bb093d279f",{"type":52,"tag":431,"props":5048,"children":5049},{"style":438},[5050],{"type":58,"value":446},{"type":52,"tag":431,"props":5052,"children":5053},{"style":438},[5054],{"type":58,"value":1406},{"type":52,"tag":431,"props":5056,"children":5058},{"class":433,"line":5057},131,[5059,5063,5067,5071,5075,5079,5084],{"type":52,"tag":431,"props":5060,"children":5061},{"style":438},[5062],{"type":58,"value":1268},{"type":52,"tag":431,"props":5064,"children":5065},{"style":740},[5066],{"type":58,"value":410},{"type":52,"tag":431,"props":5068,"children":5069},{"style":438},[5070],{"type":58,"value":446},{"type":52,"tag":431,"props":5072,"children":5073},{"style":438},[5074],{"type":58,"value":375},{"type":52,"tag":431,"props":5076,"children":5077},{"style":438},[5078],{"type":58,"value":464},{"type":52,"tag":431,"props":5080,"children":5081},{"style":467},[5082],{"type":58,"value":5083},"Get context from Assistant",{"type":52,"tag":431,"props":5085,"children":5086},{"style":438},[5087],{"type":58,"value":1349},{"type":52,"tag":431,"props":5089,"children":5091},{"class":433,"line":5090},132,[5092],{"type":52,"tag":431,"props":5093,"children":5094},{"style":438},[5095],{"type":58,"value":5096},"    }\n",{"type":52,"tag":431,"props":5098,"children":5100},{"class":433,"line":5099},133,[5101],{"type":52,"tag":431,"props":5102,"children":5103},{"style":438},[5104],{"type":58,"value":5105},"  ],\n",{"type":52,"tag":431,"props":5107,"children":5109},{"class":433,"line":5108},134,[5110,5114,5119,5123,5127],{"type":52,"tag":431,"props":5111,"children":5112},{"style":438},[5113],{"type":58,"value":715},{"type":52,"tag":431,"props":5115,"children":5116},{"style":449},[5117],{"type":58,"value":5118},"connections",{"type":52,"tag":431,"props":5120,"children":5121},{"style":438},[5122],{"type":58,"value":446},{"type":52,"tag":431,"props":5124,"children":5125},{"style":438},[5126],{"type":58,"value":375},{"type":52,"tag":431,"props":5128,"children":5129},{"style":438},[5130],{"type":58,"value":1286},{"type":52,"tag":431,"props":5132,"children":5134},{"class":433,"line":5133},135,[5135,5140,5144,5148,5152],{"type":52,"tag":431,"props":5136,"children":5137},{"style":438},[5138],{"type":58,"value":5139},"    \"",{"type":52,"tag":431,"props":5141,"children":5142},{"style":740},[5143],{"type":58,"value":1913},{"type":52,"tag":431,"props":5145,"children":5146},{"style":438},[5147],{"type":58,"value":446},{"type":52,"tag":431,"props":5149,"children":5150},{"style":438},[5151],{"type":58,"value":375},{"type":52,"tag":431,"props":5153,"children":5154},{"style":438},[5155],{"type":58,"value":1286},{"type":52,"tag":431,"props":5157,"children":5159},{"class":433,"line":5158},136,[5160,5164,5169,5173,5177,5182,5186,5191,5195,5199,5203,5207,5211,5215,5219,5223,5227,5231,5235,5239,5243,5247,5251,5256,5260,5264,5269],{"type":52,"tag":431,"props":5161,"children":5162},{"style":438},[5163],{"type":58,"value":1268},{"type":52,"tag":431,"props":5165,"children":5166},{"style":763},[5167],{"type":58,"value":5168},"ai_languageModel",{"type":52,"tag":431,"props":5170,"children":5171},{"style":438},[5172],{"type":58,"value":446},{"type":52,"tag":431,"props":5174,"children":5175},{"style":438},[5176],{"type":58,"value":375},{"type":52,"tag":431,"props":5178,"children":5179},{"style":438},[5180],{"type":58,"value":5181}," [[{",{"type":52,"tag":431,"props":5183,"children":5184},{"style":438},[5185],{"type":58,"value":446},{"type":52,"tag":431,"props":5187,"children":5188},{"style":1324},[5189],{"type":58,"value":5190},"node",{"type":52,"tag":431,"props":5192,"children":5193},{"style":438},[5194],{"type":58,"value":446},{"type":52,"tag":431,"props":5196,"children":5197},{"style":438},[5198],{"type":58,"value":375},{"type":52,"tag":431,"props":5200,"children":5201},{"style":438},[5202],{"type":58,"value":464},{"type":52,"tag":431,"props":5204,"children":5205},{"style":467},[5206],{"type":58,"value":1547},{"type":52,"tag":431,"props":5208,"children":5209},{"style":438},[5210],{"type":58,"value":446},{"type":52,"tag":431,"props":5212,"children":5213},{"style":438},[5214],{"type":58,"value":479},{"type":52,"tag":431,"props":5216,"children":5217},{"style":438},[5218],{"type":58,"value":464},{"type":52,"tag":431,"props":5220,"children":5221},{"style":1324},[5222],{"type":58,"value":1380},{"type":52,"tag":431,"props":5224,"children":5225},{"style":438},[5226],{"type":58,"value":446},{"type":52,"tag":431,"props":5228,"children":5229},{"style":438},[5230],{"type":58,"value":375},{"type":52,"tag":431,"props":5232,"children":5233},{"style":438},[5234],{"type":58,"value":464},{"type":52,"tag":431,"props":5236,"children":5237},{"style":467},[5238],{"type":58,"value":5168},{"type":52,"tag":431,"props":5240,"children":5241},{"style":438},[5242],{"type":58,"value":446},{"type":52,"tag":431,"props":5244,"children":5245},{"style":438},[5246],{"type":58,"value":479},{"type":52,"tag":431,"props":5248,"children":5249},{"style":438},[5250],{"type":58,"value":464},{"type":52,"tag":431,"props":5252,"children":5253},{"style":1324},[5254],{"type":58,"value":5255},"index",{"type":52,"tag":431,"props":5257,"children":5258},{"style":438},[5259],{"type":58,"value":446},{"type":52,"tag":431,"props":5261,"children":5262},{"style":438},[5263],{"type":58,"value":375},{"type":52,"tag":431,"props":5265,"children":5266},{"style":763},[5267],{"type":58,"value":5268}," 0",{"type":52,"tag":431,"props":5270,"children":5271},{"style":438},[5272],{"type":58,"value":5273},"}]]\n",{"type":52,"tag":431,"props":5275,"children":5277},{"class":433,"line":5276},137,[5278],{"type":52,"tag":431,"props":5279,"children":5280},{"style":438},[5281],{"type":58,"value":1560},{"type":52,"tag":431,"props":5283,"children":5285},{"class":433,"line":5284},138,[5286,5290,5294,5298,5302],{"type":52,"tag":431,"props":5287,"children":5288},{"style":438},[5289],{"type":58,"value":5139},{"type":52,"tag":431,"props":5291,"children":5292},{"style":740},[5293],{"type":58,"value":2842},{"type":52,"tag":431,"props":5295,"children":5296},{"style":438},[5297],{"type":58,"value":446},{"type":52,"tag":431,"props":5299,"children":5300},{"style":438},[5301],{"type":58,"value":375},{"type":52,"tag":431,"props":5303,"children":5304},{"style":438},[5305],{"type":58,"value":1286},{"type":52,"tag":431,"props":5307,"children":5309},{"class":433,"line":5308},139,[5310,5314,5318,5322,5326,5330,5334,5338,5342,5346,5350,5354,5358,5362,5366,5370,5374,5378,5382,5386,5390,5394,5398,5402,5406,5410,5414],{"type":52,"tag":431,"props":5311,"children":5312},{"style":438},[5313],{"type":58,"value":1268},{"type":52,"tag":431,"props":5315,"children":5316},{"style":763},[5317],{"type":58,"value":612},{"type":52,"tag":431,"props":5319,"children":5320},{"style":438},[5321],{"type":58,"value":446},{"type":52,"tag":431,"props":5323,"children":5324},{"style":438},[5325],{"type":58,"value":375},{"type":52,"tag":431,"props":5327,"children":5328},{"style":438},[5329],{"type":58,"value":5181},{"type":52,"tag":431,"props":5331,"children":5332},{"style":438},[5333],{"type":58,"value":446},{"type":52,"tag":431,"props":5335,"children":5336},{"style":1324},[5337],{"type":58,"value":5190},{"type":52,"tag":431,"props":5339,"children":5340},{"style":438},[5341],{"type":58,"value":446},{"type":52,"tag":431,"props":5343,"children":5344},{"style":438},[5345],{"type":58,"value":375},{"type":52,"tag":431,"props":5347,"children":5348},{"style":438},[5349],{"type":58,"value":464},{"type":52,"tag":431,"props":5351,"children":5352},{"style":467},[5353],{"type":58,"value":1547},{"type":52,"tag":431,"props":5355,"children":5356},{"style":438},[5357],{"type":58,"value":446},{"type":52,"tag":431,"props":5359,"children":5360},{"style":438},[5361],{"type":58,"value":479},{"type":52,"tag":431,"props":5363,"children":5364},{"style":438},[5365],{"type":58,"value":464},{"type":52,"tag":431,"props":5367,"children":5368},{"style":1324},[5369],{"type":58,"value":1380},{"type":52,"tag":431,"props":5371,"children":5372},{"style":438},[5373],{"type":58,"value":446},{"type":52,"tag":431,"props":5375,"children":5376},{"style":438},[5377],{"type":58,"value":375},{"type":52,"tag":431,"props":5379,"children":5380},{"style":438},[5381],{"type":58,"value":464},{"type":52,"tag":431,"props":5383,"children":5384},{"style":467},[5385],{"type":58,"value":612},{"type":52,"tag":431,"props":5387,"children":5388},{"style":438},[5389],{"type":58,"value":446},{"type":52,"tag":431,"props":5391,"children":5392},{"style":438},[5393],{"type":58,"value":479},{"type":52,"tag":431,"props":5395,"children":5396},{"style":438},[5397],{"type":58,"value":464},{"type":52,"tag":431,"props":5399,"children":5400},{"style":1324},[5401],{"type":58,"value":5255},{"type":52,"tag":431,"props":5403,"children":5404},{"style":438},[5405],{"type":58,"value":446},{"type":52,"tag":431,"props":5407,"children":5408},{"style":438},[5409],{"type":58,"value":375},{"type":52,"tag":431,"props":5411,"children":5412},{"style":763},[5413],{"type":58,"value":5268},{"type":52,"tag":431,"props":5415,"children":5416},{"style":438},[5417],{"type":58,"value":5273},{"type":52,"tag":431,"props":5419,"children":5421},{"class":433,"line":5420},140,[5422],{"type":52,"tag":431,"props":5423,"children":5424},{"style":438},[5425],{"type":58,"value":1560},{"type":52,"tag":431,"props":5427,"children":5429},{"class":433,"line":5428},141,[5430,5434,5438,5442,5446],{"type":52,"tag":431,"props":5431,"children":5432},{"style":438},[5433],{"type":58,"value":5139},{"type":52,"tag":431,"props":5435,"children":5436},{"style":740},[5437],{"type":58,"value":3097},{"type":52,"tag":431,"props":5439,"children":5440},{"style":438},[5441],{"type":58,"value":446},{"type":52,"tag":431,"props":5443,"children":5444},{"style":438},[5445],{"type":58,"value":375},{"type":52,"tag":431,"props":5447,"children":5448},{"style":438},[5449],{"type":58,"value":1286},{"type":52,"tag":431,"props":5451,"children":5453},{"class":433,"line":5452},142,[5454,5458,5462,5466,5470,5474,5478,5482,5486,5490,5494,5498,5502,5506,5510,5514,5518,5522,5526,5530,5534,5538,5542,5546,5550,5554,5558],{"type":52,"tag":431,"props":5455,"children":5456},{"style":438},[5457],{"type":58,"value":1268},{"type":52,"tag":431,"props":5459,"children":5460},{"style":763},[5461],{"type":58,"value":612},{"type":52,"tag":431,"props":5463,"children":5464},{"style":438},[5465],{"type":58,"value":446},{"type":52,"tag":431,"props":5467,"children":5468},{"style":438},[5469],{"type":58,"value":375},{"type":52,"tag":431,"props":5471,"children":5472},{"style":438},[5473],{"type":58,"value":5181},{"type":52,"tag":431,"props":5475,"children":5476},{"style":438},[5477],{"type":58,"value":446},{"type":52,"tag":431,"props":5479,"children":5480},{"style":1324},[5481],{"type":58,"value":5190},{"type":52,"tag":431,"props":5483,"children":5484},{"style":438},[5485],{"type":58,"value":446},{"type":52,"tag":431,"props":5487,"children":5488},{"style":438},[5489],{"type":58,"value":375},{"type":52,"tag":431,"props":5491,"children":5492},{"style":438},[5493],{"type":58,"value":464},{"type":52,"tag":431,"props":5495,"children":5496},{"style":467},[5497],{"type":58,"value":3576},{"type":52,"tag":431,"props":5499,"children":5500},{"style":438},[5501],{"type":58,"value":446},{"type":52,"tag":431,"props":5503,"children":5504},{"style":438},[5505],{"type":58,"value":479},{"type":52,"tag":431,"props":5507,"children":5508},{"style":438},[5509],{"type":58,"value":464},{"type":52,"tag":431,"props":5511,"children":5512},{"style":1324},[5513],{"type":58,"value":1380},{"type":52,"tag":431,"props":5515,"children":5516},{"style":438},[5517],{"type":58,"value":446},{"type":52,"tag":431,"props":5519,"children":5520},{"style":438},[5521],{"type":58,"value":375},{"type":52,"tag":431,"props":5523,"children":5524},{"style":438},[5525],{"type":58,"value":464},{"type":52,"tag":431,"props":5527,"children":5528},{"style":467},[5529],{"type":58,"value":612},{"type":52,"tag":431,"props":5531,"children":5532},{"style":438},[5533],{"type":58,"value":446},{"type":52,"tag":431,"props":5535,"children":5536},{"style":438},[5537],{"type":58,"value":479},{"type":52,"tag":431,"props":5539,"children":5540},{"style":438},[5541],{"type":58,"value":464},{"type":52,"tag":431,"props":5543,"children":5544},{"style":1324},[5545],{"type":58,"value":5255},{"type":52,"tag":431,"props":5547,"children":5548},{"style":438},[5549],{"type":58,"value":446},{"type":52,"tag":431,"props":5551,"children":5552},{"style":438},[5553],{"type":58,"value":375},{"type":52,"tag":431,"props":5555,"children":5556},{"style":763},[5557],{"type":58,"value":5268},{"type":52,"tag":431,"props":5559,"children":5560},{"style":438},[5561],{"type":58,"value":5273},{"type":52,"tag":431,"props":5563,"children":5565},{"class":433,"line":5564},143,[5566],{"type":52,"tag":431,"props":5567,"children":5568},{"style":438},[5569],{"type":58,"value":1560},{"type":52,"tag":431,"props":5571,"children":5573},{"class":433,"line":5572},144,[5574,5578,5582,5586,5590],{"type":52,"tag":431,"props":5575,"children":5576},{"style":438},[5577],{"type":58,"value":5139},{"type":52,"tag":431,"props":5579,"children":5580},{"style":740},[5581],{"type":58,"value":3576},{"type":52,"tag":431,"props":5583,"children":5584},{"style":438},[5585],{"type":58,"value":446},{"type":52,"tag":431,"props":5587,"children":5588},{"style":438},[5589],{"type":58,"value":375},{"type":52,"tag":431,"props":5591,"children":5592},{"style":438},[5593],{"type":58,"value":1286},{"type":52,"tag":431,"props":5595,"children":5597},{"class":433,"line":5596},145,[5598,5602,5606,5610,5614,5618,5622,5626,5630,5634,5638,5642,5646,5650,5654,5658,5662,5666,5670,5674,5678,5682,5686,5690,5694,5698,5702],{"type":52,"tag":431,"props":5599,"children":5600},{"style":438},[5601],{"type":58,"value":1268},{"type":52,"tag":431,"props":5603,"children":5604},{"style":763},[5605],{"type":58,"value":612},{"type":52,"tag":431,"props":5607,"children":5608},{"style":438},[5609],{"type":58,"value":446},{"type":52,"tag":431,"props":5611,"children":5612},{"style":438},[5613],{"type":58,"value":375},{"type":52,"tag":431,"props":5615,"children":5616},{"style":438},[5617],{"type":58,"value":5181},{"type":52,"tag":431,"props":5619,"children":5620},{"style":438},[5621],{"type":58,"value":446},{"type":52,"tag":431,"props":5623,"children":5624},{"style":1324},[5625],{"type":58,"value":5190},{"type":52,"tag":431,"props":5627,"children":5628},{"style":438},[5629],{"type":58,"value":446},{"type":52,"tag":431,"props":5631,"children":5632},{"style":438},[5633],{"type":58,"value":375},{"type":52,"tag":431,"props":5635,"children":5636},{"style":438},[5637],{"type":58,"value":464},{"type":52,"tag":431,"props":5639,"children":5640},{"style":467},[5641],{"type":58,"value":3845},{"type":52,"tag":431,"props":5643,"children":5644},{"style":438},[5645],{"type":58,"value":446},{"type":52,"tag":431,"props":5647,"children":5648},{"style":438},[5649],{"type":58,"value":479},{"type":52,"tag":431,"props":5651,"children":5652},{"style":438},[5653],{"type":58,"value":464},{"type":52,"tag":431,"props":5655,"children":5656},{"style":1324},[5657],{"type":58,"value":1380},{"type":52,"tag":431,"props":5659,"children":5660},{"style":438},[5661],{"type":58,"value":446},{"type":52,"tag":431,"props":5663,"children":5664},{"style":438},[5665],{"type":58,"value":375},{"type":52,"tag":431,"props":5667,"children":5668},{"style":438},[5669],{"type":58,"value":464},{"type":52,"tag":431,"props":5671,"children":5672},{"style":467},[5673],{"type":58,"value":612},{"type":52,"tag":431,"props":5675,"children":5676},{"style":438},[5677],{"type":58,"value":446},{"type":52,"tag":431,"props":5679,"children":5680},{"style":438},[5681],{"type":58,"value":479},{"type":52,"tag":431,"props":5683,"children":5684},{"style":438},[5685],{"type":58,"value":464},{"type":52,"tag":431,"props":5687,"children":5688},{"style":1324},[5689],{"type":58,"value":5255},{"type":52,"tag":431,"props":5691,"children":5692},{"style":438},[5693],{"type":58,"value":446},{"type":52,"tag":431,"props":5695,"children":5696},{"style":438},[5697],{"type":58,"value":375},{"type":52,"tag":431,"props":5699,"children":5700},{"style":763},[5701],{"type":58,"value":5268},{"type":52,"tag":431,"props":5703,"children":5704},{"style":438},[5705],{"type":58,"value":5273},{"type":52,"tag":431,"props":5707,"children":5709},{"class":433,"line":5708},146,[5710],{"type":52,"tag":431,"props":5711,"children":5712},{"style":438},[5713],{"type":58,"value":1560},{"type":52,"tag":431,"props":5715,"children":5717},{"class":433,"line":5716},147,[5718,5722,5726,5730,5734],{"type":52,"tag":431,"props":5719,"children":5720},{"style":438},[5721],{"type":58,"value":5139},{"type":52,"tag":431,"props":5723,"children":5724},{"style":740},[5725],{"type":58,"value":3845},{"type":52,"tag":431,"props":5727,"children":5728},{"style":438},[5729],{"type":58,"value":446},{"type":52,"tag":431,"props":5731,"children":5732},{"style":438},[5733],{"type":58,"value":375},{"type":52,"tag":431,"props":5735,"children":5736},{"style":438},[5737],{"type":58,"value":1286},{"type":52,"tag":431,"props":5739,"children":5741},{"class":433,"line":5740},148,[5742,5746,5750,5754,5758,5762,5766,5770,5774,5778,5782,5786,5790,5794,5798,5802,5806,5810,5814,5818,5822,5826,5830,5834,5838,5842,5846],{"type":52,"tag":431,"props":5743,"children":5744},{"style":438},[5745],{"type":58,"value":1268},{"type":52,"tag":431,"props":5747,"children":5748},{"style":763},[5749],{"type":58,"value":612},{"type":52,"tag":431,"props":5751,"children":5752},{"style":438},[5753],{"type":58,"value":446},{"type":52,"tag":431,"props":5755,"children":5756},{"style":438},[5757],{"type":58,"value":375},{"type":52,"tag":431,"props":5759,"children":5760},{"style":438},[5761],{"type":58,"value":5181},{"type":52,"tag":431,"props":5763,"children":5764},{"style":438},[5765],{"type":58,"value":446},{"type":52,"tag":431,"props":5767,"children":5768},{"style":1324},[5769],{"type":58,"value":5190},{"type":52,"tag":431,"props":5771,"children":5772},{"style":438},[5773],{"type":58,"value":446},{"type":52,"tag":431,"props":5775,"children":5776},{"style":438},[5777],{"type":58,"value":375},{"type":52,"tag":431,"props":5779,"children":5780},{"style":438},[5781],{"type":58,"value":464},{"type":52,"tag":431,"props":5783,"children":5784},{"style":467},[5785],{"type":58,"value":4209},{"type":52,"tag":431,"props":5787,"children":5788},{"style":438},[5789],{"type":58,"value":446},{"type":52,"tag":431,"props":5791,"children":5792},{"style":438},[5793],{"type":58,"value":479},{"type":52,"tag":431,"props":5795,"children":5796},{"style":438},[5797],{"type":58,"value":464},{"type":52,"tag":431,"props":5799,"children":5800},{"style":1324},[5801],{"type":58,"value":1380},{"type":52,"tag":431,"props":5803,"children":5804},{"style":438},[5805],{"type":58,"value":446},{"type":52,"tag":431,"props":5807,"children":5808},{"style":438},[5809],{"type":58,"value":375},{"type":52,"tag":431,"props":5811,"children":5812},{"style":438},[5813],{"type":58,"value":464},{"type":52,"tag":431,"props":5815,"children":5816},{"style":467},[5817],{"type":58,"value":612},{"type":52,"tag":431,"props":5819,"children":5820},{"style":438},[5821],{"type":58,"value":446},{"type":52,"tag":431,"props":5823,"children":5824},{"style":438},[5825],{"type":58,"value":479},{"type":52,"tag":431,"props":5827,"children":5828},{"style":438},[5829],{"type":58,"value":464},{"type":52,"tag":431,"props":5831,"children":5832},{"style":1324},[5833],{"type":58,"value":5255},{"type":52,"tag":431,"props":5835,"children":5836},{"style":438},[5837],{"type":58,"value":446},{"type":52,"tag":431,"props":5839,"children":5840},{"style":438},[5841],{"type":58,"value":375},{"type":52,"tag":431,"props":5843,"children":5844},{"style":763},[5845],{"type":58,"value":5268},{"type":52,"tag":431,"props":5847,"children":5848},{"style":438},[5849],{"type":58,"value":5273},{"type":52,"tag":431,"props":5851,"children":5853},{"class":433,"line":5852},149,[5854],{"type":52,"tag":431,"props":5855,"children":5856},{"style":438},[5857],{"type":58,"value":1560},{"type":52,"tag":431,"props":5859,"children":5861},{"class":433,"line":5860},150,[5862,5866,5870,5874,5878],{"type":52,"tag":431,"props":5863,"children":5864},{"style":438},[5865],{"type":58,"value":5139},{"type":52,"tag":431,"props":5867,"children":5868},{"style":740},[5869],{"type":58,"value":4209},{"type":52,"tag":431,"props":5871,"children":5872},{"style":438},[5873],{"type":58,"value":446},{"type":52,"tag":431,"props":5875,"children":5876},{"style":438},[5877],{"type":58,"value":375},{"type":52,"tag":431,"props":5879,"children":5880},{"style":438},[5881],{"type":58,"value":1286},{"type":52,"tag":431,"props":5883,"children":5885},{"class":433,"line":5884},151,[5886,5890,5894,5898,5902,5906,5910,5914,5918,5922,5926,5930,5934,5938,5942,5946,5950,5954,5958,5962,5966,5970,5974,5978,5982,5986,5990],{"type":52,"tag":431,"props":5887,"children":5888},{"style":438},[5889],{"type":58,"value":1268},{"type":52,"tag":431,"props":5891,"children":5892},{"style":763},[5893],{"type":58,"value":612},{"type":52,"tag":431,"props":5895,"children":5896},{"style":438},[5897],{"type":58,"value":446},{"type":52,"tag":431,"props":5899,"children":5900},{"style":438},[5901],{"type":58,"value":375},{"type":52,"tag":431,"props":5903,"children":5904},{"style":438},[5905],{"type":58,"value":5181},{"type":52,"tag":431,"props":5907,"children":5908},{"style":438},[5909],{"type":58,"value":446},{"type":52,"tag":431,"props":5911,"children":5912},{"style":1324},[5913],{"type":58,"value":5190},{"type":52,"tag":431,"props":5915,"children":5916},{"style":438},[5917],{"type":58,"value":446},{"type":52,"tag":431,"props":5919,"children":5920},{"style":438},[5921],{"type":58,"value":375},{"type":52,"tag":431,"props":5923,"children":5924},{"style":438},[5925],{"type":58,"value":464},{"type":52,"tag":431,"props":5927,"children":5928},{"style":467},[5929],{"type":58,"value":4703},{"type":52,"tag":431,"props":5931,"children":5932},{"style":438},[5933],{"type":58,"value":446},{"type":52,"tag":431,"props":5935,"children":5936},{"style":438},[5937],{"type":58,"value":479},{"type":52,"tag":431,"props":5939,"children":5940},{"style":438},[5941],{"type":58,"value":464},{"type":52,"tag":431,"props":5943,"children":5944},{"style":1324},[5945],{"type":58,"value":1380},{"type":52,"tag":431,"props":5947,"children":5948},{"style":438},[5949],{"type":58,"value":446},{"type":52,"tag":431,"props":5951,"children":5952},{"style":438},[5953],{"type":58,"value":375},{"type":52,"tag":431,"props":5955,"children":5956},{"style":438},[5957],{"type":58,"value":464},{"type":52,"tag":431,"props":5959,"children":5960},{"style":467},[5961],{"type":58,"value":612},{"type":52,"tag":431,"props":5963,"children":5964},{"style":438},[5965],{"type":58,"value":446},{"type":52,"tag":431,"props":5967,"children":5968},{"style":438},[5969],{"type":58,"value":479},{"type":52,"tag":431,"props":5971,"children":5972},{"style":438},[5973],{"type":58,"value":464},{"type":52,"tag":431,"props":5975,"children":5976},{"style":1324},[5977],{"type":58,"value":5255},{"type":52,"tag":431,"props":5979,"children":5980},{"style":438},[5981],{"type":58,"value":446},{"type":52,"tag":431,"props":5983,"children":5984},{"style":438},[5985],{"type":58,"value":375},{"type":52,"tag":431,"props":5987,"children":5988},{"style":763},[5989],{"type":58,"value":5268},{"type":52,"tag":431,"props":5991,"children":5992},{"style":438},[5993],{"type":58,"value":5273},{"type":52,"tag":431,"props":5995,"children":5997},{"class":433,"line":5996},152,[5998],{"type":52,"tag":431,"props":5999,"children":6000},{"style":438},[6001],{"type":58,"value":1560},{"type":52,"tag":431,"props":6003,"children":6005},{"class":433,"line":6004},153,[6006,6010,6014,6018,6022],{"type":52,"tag":431,"props":6007,"children":6008},{"style":438},[6009],{"type":58,"value":5139},{"type":52,"tag":431,"props":6011,"children":6012},{"style":740},[6013],{"type":58,"value":5083},{"type":52,"tag":431,"props":6015,"children":6016},{"style":438},[6017],{"type":58,"value":446},{"type":52,"tag":431,"props":6019,"children":6020},{"style":438},[6021],{"type":58,"value":375},{"type":52,"tag":431,"props":6023,"children":6024},{"style":438},[6025],{"type":58,"value":1286},{"type":52,"tag":431,"props":6027,"children":6029},{"class":433,"line":6028},154,[6030,6034,6038,6042,6046,6050,6054,6058,6062,6066,6070,6074,6078,6082,6086,6090,6094,6098,6102,6106,6110,6114,6118,6122,6126,6130,6134],{"type":52,"tag":431,"props":6031,"children":6032},{"style":438},[6033],{"type":58,"value":1268},{"type":52,"tag":431,"props":6035,"children":6036},{"style":763},[6037],{"type":58,"value":604},{"type":52,"tag":431,"props":6039,"children":6040},{"style":438},[6041],{"type":58,"value":446},{"type":52,"tag":431,"props":6043,"children":6044},{"style":438},[6045],{"type":58,"value":375},{"type":52,"tag":431,"props":6047,"children":6048},{"style":438},[6049],{"type":58,"value":5181},{"type":52,"tag":431,"props":6051,"children":6052},{"style":438},[6053],{"type":58,"value":446},{"type":52,"tag":431,"props":6055,"children":6056},{"style":1324},[6057],{"type":58,"value":5190},{"type":52,"tag":431,"props":6059,"children":6060},{"style":438},[6061],{"type":58,"value":446},{"type":52,"tag":431,"props":6063,"children":6064},{"style":438},[6065],{"type":58,"value":375},{"type":52,"tag":431,"props":6067,"children":6068},{"style":438},[6069],{"type":58,"value":464},{"type":52,"tag":431,"props":6071,"children":6072},{"style":467},[6073],{"type":58,"value":1547},{"type":52,"tag":431,"props":6075,"children":6076},{"style":438},[6077],{"type":58,"value":446},{"type":52,"tag":431,"props":6079,"children":6080},{"style":438},[6081],{"type":58,"value":479},{"type":52,"tag":431,"props":6083,"children":6084},{"style":438},[6085],{"type":58,"value":464},{"type":52,"tag":431,"props":6087,"children":6088},{"style":1324},[6089],{"type":58,"value":1380},{"type":52,"tag":431,"props":6091,"children":6092},{"style":438},[6093],{"type":58,"value":446},{"type":52,"tag":431,"props":6095,"children":6096},{"style":438},[6097],{"type":58,"value":375},{"type":52,"tag":431,"props":6099,"children":6100},{"style":438},[6101],{"type":58,"value":464},{"type":52,"tag":431,"props":6103,"children":6104},{"style":467},[6105],{"type":58,"value":604},{"type":52,"tag":431,"props":6107,"children":6108},{"style":438},[6109],{"type":58,"value":446},{"type":52,"tag":431,"props":6111,"children":6112},{"style":438},[6113],{"type":58,"value":479},{"type":52,"tag":431,"props":6115,"children":6116},{"style":438},[6117],{"type":58,"value":464},{"type":52,"tag":431,"props":6119,"children":6120},{"style":1324},[6121],{"type":58,"value":5255},{"type":52,"tag":431,"props":6123,"children":6124},{"style":438},[6125],{"type":58,"value":446},{"type":52,"tag":431,"props":6127,"children":6128},{"style":438},[6129],{"type":58,"value":375},{"type":52,"tag":431,"props":6131,"children":6132},{"style":763},[6133],{"type":58,"value":5268},{"type":52,"tag":431,"props":6135,"children":6136},{"style":438},[6137],{"type":58,"value":5273},{"type":52,"tag":431,"props":6139,"children":6141},{"class":433,"line":6140},155,[6142],{"type":52,"tag":431,"props":6143,"children":6144},{"style":438},[6145],{"type":58,"value":5096},{"type":52,"tag":431,"props":6147,"children":6149},{"class":433,"line":6148},156,[6150],{"type":52,"tag":431,"props":6151,"children":6152},{"style":438},[6153],{"type":58,"value":6154},"  },\n",{"type":52,"tag":431,"props":6156,"children":6158},{"class":433,"line":6157},157,[6159,6163,6168,6172,6176],{"type":52,"tag":431,"props":6160,"children":6161},{"style":438},[6162],{"type":58,"value":715},{"type":52,"tag":431,"props":6164,"children":6165},{"style":449},[6166],{"type":58,"value":6167},"pinData",{"type":52,"tag":431,"props":6169,"children":6170},{"style":438},[6171],{"type":58,"value":446},{"type":52,"tag":431,"props":6173,"children":6174},{"style":438},[6175],{"type":58,"value":375},{"type":52,"tag":431,"props":6177,"children":6178},{"style":438},[6179],{"type":58,"value":2925},{"type":52,"tag":431,"props":6181,"children":6183},{"class":433,"line":6182},158,[6184,6188,6193,6197,6201,6205,6209,6214,6218,6222],{"type":52,"tag":431,"props":6185,"children":6186},{"style":438},[6187],{"type":58,"value":715},{"type":52,"tag":431,"props":6189,"children":6190},{"style":449},[6191],{"type":58,"value":6192},"meta",{"type":52,"tag":431,"props":6194,"children":6195},{"style":438},[6196],{"type":58,"value":446},{"type":52,"tag":431,"props":6198,"children":6199},{"style":438},[6200],{"type":58,"value":375},{"type":52,"tag":431,"props":6202,"children":6203},{"style":438},[6204],{"type":58,"value":733},{"type":52,"tag":431,"props":6206,"children":6207},{"style":438},[6208],{"type":58,"value":446},{"type":52,"tag":431,"props":6210,"children":6211},{"style":740},[6212],{"type":58,"value":6213},"templateCredsSetupCompleted",{"type":52,"tag":431,"props":6215,"children":6216},{"style":438},[6217],{"type":58,"value":446},{"type":52,"tag":431,"props":6219,"children":6220},{"style":438},[6221],{"type":58,"value":375},{"type":52,"tag":431,"props":6223,"children":6224},{"style":438},[6225],{"type":58,"value":6226}," false}\n",{"type":52,"tag":431,"props":6228,"children":6230},{"class":433,"line":6229},159,[6231],{"type":52,"tag":431,"props":6232,"children":6233},{"style":438},[6234],{"type":58,"value":513},{"type":52,"tag":273,"props":6236,"children":6238},{"id":6237},"other-pinecone-assistant-operations",[6239],{"type":58,"value":6240},"Other Pinecone Assistant operations",{"type":52,"tag":6242,"props":6243,"children":6245},"h4",{"id":6244},"upload-file-vs-update-file-choosing-the-right-operation",[6246],{"type":58,"value":6247},"Upload File vs Update File — choosing the right operation",{"type":52,"tag":6249,"props":6250,"children":6251},"table",{},[6252,6271],{"type":52,"tag":6253,"props":6254,"children":6255},"thead",{},[6256],{"type":52,"tag":6257,"props":6258,"children":6259},"tr",{},[6260,6266],{"type":52,"tag":6261,"props":6262,"children":6263},"th",{},[6264],{"type":58,"value":6265},"Scenario",{"type":52,"tag":6261,"props":6267,"children":6268},{},[6269],{"type":58,"value":6270},"Operation to use",{"type":52,"tag":6272,"props":6273,"children":6274},"tbody",{},[6275,6292],{"type":52,"tag":6257,"props":6276,"children":6277},{},[6278,6284],{"type":52,"tag":6279,"props":6280,"children":6281},"td",{},[6282],{"type":58,"value":6283},"File is guaranteed to be new (never ingested before)",{"type":52,"tag":6279,"props":6285,"children":6286},{},[6287],{"type":52,"tag":83,"props":6288,"children":6290},{"className":6289},[],[6291],{"type":58,"value":1059},{"type":52,"tag":6257,"props":6293,"children":6294},{},[6295,6300],{"type":52,"tag":6279,"props":6296,"children":6297},{},[6298],{"type":58,"value":6299},"File may already exist in the assistant (re-ingestion, scheduled refresh)",{"type":52,"tag":6279,"props":6301,"children":6302},{},[6303],{"type":52,"tag":83,"props":6304,"children":6306},{"className":6305},[],[6307],{"type":58,"value":6308},"updateFile",{"type":52,"tag":61,"props":6310,"children":6311},{},[6312,6317,6319,6324,6326,6331,6333,6338],{"type":52,"tag":83,"props":6313,"children":6315},{"className":6314},[],[6316],{"type":58,"value":6308},{"type":58,"value":6318}," is idempotent: it finds all files with the matching ",{"type":52,"tag":83,"props":6320,"children":6322},{"className":6321},[],[6323],{"type":58,"value":620},{"type":58,"value":6325},", deletes them, then uploads the new version. If no file exists with that ID it behaves exactly like ",{"type":52,"tag":83,"props":6327,"children":6329},{"className":6328},[],[6330],{"type":58,"value":1059},{"type":58,"value":6332},". Use ",{"type":52,"tag":83,"props":6334,"children":6336},{"className":6335},[],[6337],{"type":58,"value":6308},{"type":58,"value":6339}," whenever a workflow may run more than once on the same source files.",{"type":52,"tag":61,"props":6341,"children":6342},{},[6343,6345,6350,6352,6357,6358,6363,6364,6369,6370,6376,6378,6383,6385,6390,6391,6397,6399,6404],{"type":58,"value":6344},"Parameters for ",{"type":52,"tag":83,"props":6346,"children":6348},{"className":6347},[],[6349],{"type":58,"value":6308},{"type":58,"value":6351}," are identical to ",{"type":52,"tag":83,"props":6353,"children":6355},{"className":6354},[],[6356],{"type":58,"value":1059},{"type":58,"value":701},{"type":52,"tag":83,"props":6359,"children":6361},{"className":6360},[],[6362],{"type":58,"value":4340},{"type":58,"value":875},{"type":52,"tag":83,"props":6365,"children":6367},{"className":6366},[],[6368],{"type":58,"value":620},{"type":58,"value":875},{"type":52,"tag":83,"props":6371,"children":6373},{"className":6372},[],[6374],{"type":58,"value":6375},"inputDataFieldName",{"type":58,"value":6377},", and all ",{"type":52,"tag":83,"props":6379,"children":6381},{"className":6380},[],[6382],{"type":58,"value":539},{"type":58,"value":6384}," including ",{"type":52,"tag":83,"props":6386,"children":6388},{"className":6387},[],[6389],{"type":58,"value":720},{"type":58,"value":875},{"type":52,"tag":83,"props":6392,"children":6394},{"className":6393},[],[6395],{"type":58,"value":6396},"multimodalFile",{"type":58,"value":6398},", and ",{"type":52,"tag":83,"props":6400,"children":6402},{"className":6401},[],[6403],{"type":58,"value":531},{"type":58,"value":6405},".",{"type":52,"tag":355,"props":6407,"children":6409},{"className":423,"code":6408,"language":425,"meta":363,"style":363},"{\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",[6410],{"type":52,"tag":83,"props":6411,"children":6412},{"__ignoreMap":363},[6413,6420,6443,6478,6513,6612,6647,6702,6709,6744,6768],{"type":52,"tag":431,"props":6414,"children":6415},{"class":433,"line":434},[6416],{"type":52,"tag":431,"props":6417,"children":6418},{"style":438},[6419],{"type":58,"value":706},{"type":52,"tag":431,"props":6421,"children":6422},{"class":433,"line":709},[6423,6427,6431,6435,6439],{"type":52,"tag":431,"props":6424,"children":6425},{"style":438},[6426],{"type":58,"value":715},{"type":52,"tag":431,"props":6428,"children":6429},{"style":449},[6430],{"type":58,"value":1273},{"type":52,"tag":431,"props":6432,"children":6433},{"style":438},[6434],{"type":58,"value":446},{"type":52,"tag":431,"props":6436,"children":6437},{"style":438},[6438],{"type":58,"value":375},{"type":52,"tag":431,"props":6440,"children":6441},{"style":438},[6442],{"type":58,"value":1286},{"type":52,"tag":431,"props":6444,"children":6445},{"class":433,"line":829},[6446,6450,6454,6458,6462,6466,6470,6474],{"type":52,"tag":431,"props":6447,"children":6448},{"style":438},[6449],{"type":58,"value":5139},{"type":52,"tag":431,"props":6451,"children":6452},{"style":740},[6453],{"type":58,"value":4266},{"type":52,"tag":431,"props":6455,"children":6456},{"style":438},[6457],{"type":58,"value":446},{"type":52,"tag":431,"props":6459,"children":6460},{"style":438},[6461],{"type":58,"value":375},{"type":52,"tag":431,"props":6463,"children":6464},{"style":438},[6465],{"type":58,"value":464},{"type":52,"tag":431,"props":6467,"children":6468},{"style":467},[6469],{"type":58,"value":4019},{"type":52,"tag":431,"props":6471,"children":6472},{"style":438},[6473],{"type":58,"value":446},{"type":52,"tag":431,"props":6475,"children":6476},{"style":438},[6477],{"type":58,"value":1406},{"type":52,"tag":431,"props":6479,"children":6480},{"class":433,"line":1262},[6481,6485,6489,6493,6497,6501,6505,6509],{"type":52,"tag":431,"props":6482,"children":6483},{"style":438},[6484],{"type":58,"value":5139},{"type":52,"tag":431,"props":6486,"children":6487},{"style":740},[6488],{"type":58,"value":4303},{"type":52,"tag":431,"props":6490,"children":6491},{"style":438},[6492],{"type":58,"value":446},{"type":52,"tag":431,"props":6494,"children":6495},{"style":438},[6496],{"type":58,"value":375},{"type":52,"tag":431,"props":6498,"children":6499},{"style":438},[6500],{"type":58,"value":464},{"type":52,"tag":431,"props":6502,"children":6503},{"style":467},[6504],{"type":58,"value":6308},{"type":52,"tag":431,"props":6506,"children":6507},{"style":438},[6508],{"type":58,"value":446},{"type":52,"tag":431,"props":6510,"children":6511},{"style":438},[6512],{"type":58,"value":1406},{"type":52,"tag":431,"props":6514,"children":6515},{"class":433,"line":1289},[6516,6520,6524,6528,6532,6536,6540,6544,6548,6552,6556,6560,6564,6568,6572,6576,6580,6584,6588,6592,6596,6600,6604,6608],{"type":52,"tag":431,"props":6517,"children":6518},{"style":438},[6519],{"type":58,"value":5139},{"type":52,"tag":431,"props":6521,"children":6522},{"style":740},[6523],{"type":58,"value":4340},{"type":52,"tag":431,"props":6525,"children":6526},{"style":438},[6527],{"type":58,"value":446},{"type":52,"tag":431,"props":6529,"children":6530},{"style":438},[6531],{"type":58,"value":375},{"type":52,"tag":431,"props":6533,"children":6534},{"style":438},[6535],{"type":58,"value":464},{"type":52,"tag":431,"props":6537,"children":6538},{"style":467},[6539],{"type":58,"value":441},{"type":52,"tag":431,"props":6541,"children":6542},{"style":698},[6543],{"type":58,"value":4361},{"type":52,"tag":431,"props":6545,"children":6546},{"style":467},[6547],{"type":58,"value":410},{"type":52,"tag":431,"props":6549,"children":6550},{"style":698},[6551],{"type":58,"value":4361},{"type":52,"tag":431,"props":6553,"children":6554},{"style":467},[6555],{"type":58,"value":375},{"type":52,"tag":431,"props":6557,"children":6558},{"style":698},[6559],{"type":58,"value":4361},{"type":52,"tag":431,"props":6561,"children":6562},{"style":467},[6563],{"type":58,"value":1148},{"type":52,"tag":431,"props":6565,"children":6566},{"style":698},[6567],{"type":58,"value":4361},{"type":52,"tag":431,"props":6569,"children":6570},{"style":467},[6571],{"type":58,"value":479},{"type":52,"tag":431,"props":6573,"children":6574},{"style":698},[6575],{"type":58,"value":4361},{"type":52,"tag":431,"props":6577,"children":6578},{"style":467},[6579],{"type":58,"value":418},{"type":52,"tag":431,"props":6581,"children":6582},{"style":698},[6583],{"type":58,"value":4361},{"type":52,"tag":431,"props":6585,"children":6586},{"style":467},[6587],{"type":58,"value":375},{"type":52,"tag":431,"props":6589,"children":6590},{"style":698},[6591],{"type":58,"value":4361},{"type":52,"tag":431,"props":6593,"children":6594},{"style":467},[6595],{"type":58,"value":4414},{"type":52,"tag":431,"props":6597,"children":6598},{"style":698},[6599],{"type":58,"value":4361},{"type":52,"tag":431,"props":6601,"children":6602},{"style":467},[6603],{"type":58,"value":4423},{"type":52,"tag":431,"props":6605,"children":6606},{"style":438},[6607],{"type":58,"value":446},{"type":52,"tag":431,"props":6609,"children":6610},{"style":438},[6611],{"type":58,"value":1406},{"type":52,"tag":431,"props":6613,"children":6614},{"class":433,"line":1315},[6615,6619,6623,6627,6631,6635,6639,6643],{"type":52,"tag":431,"props":6616,"children":6617},{"style":438},[6618],{"type":58,"value":5139},{"type":52,"tag":431,"props":6620,"children":6621},{"style":740},[6622],{"type":58,"value":620},{"type":52,"tag":431,"props":6624,"children":6625},{"style":438},[6626],{"type":58,"value":446},{"type":52,"tag":431,"props":6628,"children":6629},{"style":438},[6630],{"type":58,"value":375},{"type":52,"tag":431,"props":6632,"children":6633},{"style":438},[6634],{"type":58,"value":464},{"type":52,"tag":431,"props":6636,"children":6637},{"style":467},[6638],{"type":58,"value":4460},{"type":52,"tag":431,"props":6640,"children":6641},{"style":438},[6642],{"type":58,"value":446},{"type":52,"tag":431,"props":6644,"children":6645},{"style":438},[6646],{"type":58,"value":1406},{"type":52,"tag":431,"props":6648,"children":6649},{"class":433,"line":1352},[6650,6654,6658,6662,6666,6670,6674,6678,6682,6686,6690,6694,6698],{"type":52,"tag":431,"props":6651,"children":6652},{"style":438},[6653],{"type":58,"value":5139},{"type":52,"tag":431,"props":6655,"children":6656},{"style":740},[6657],{"type":58,"value":539},{"type":52,"tag":431,"props":6659,"children":6660},{"style":438},[6661],{"type":58,"value":446},{"type":52,"tag":431,"props":6663,"children":6664},{"style":438},[6665],{"type":58,"value":375},{"type":52,"tag":431,"props":6667,"children":6668},{"style":438},[6669],{"type":58,"value":733},{"type":52,"tag":431,"props":6671,"children":6672},{"style":438},[6673],{"type":58,"value":446},{"type":52,"tag":431,"props":6675,"children":6676},{"style":763},[6677],{"type":58,"value":531},{"type":52,"tag":431,"props":6679,"children":6680},{"style":438},[6681],{"type":58,"value":446},{"type":52,"tag":431,"props":6683,"children":6684},{"style":438},[6685],{"type":58,"value":375},{"type":52,"tag":431,"props":6687,"children":6688},{"style":438},[6689],{"type":58,"value":464},{"type":52,"tag":431,"props":6691,"children":6692},{"style":467},[6693],{"type":58,"value":580},{"type":52,"tag":431,"props":6695,"children":6696},{"style":438},[6697],{"type":58,"value":446},{"type":52,"tag":431,"props":6699,"children":6700},{"style":438},[6701],{"type":58,"value":513},{"type":52,"tag":431,"props":6703,"children":6704},{"class":433,"line":1361},[6705],{"type":52,"tag":431,"props":6706,"children":6707},{"style":438},[6708],{"type":58,"value":6154},{"type":52,"tag":431,"props":6710,"children":6711},{"class":433,"line":1370},[6712,6716,6720,6724,6728,6732,6736,6740],{"type":52,"tag":431,"props":6713,"children":6714},{"style":438},[6715],{"type":58,"value":715},{"type":52,"tag":431,"props":6717,"children":6718},{"style":449},[6719],{"type":58,"value":1380},{"type":52,"tag":431,"props":6721,"children":6722},{"style":438},[6723],{"type":58,"value":446},{"type":52,"tag":431,"props":6725,"children":6726},{"style":438},[6727],{"type":58,"value":375},{"type":52,"tag":431,"props":6729,"children":6730},{"style":438},[6731],{"type":58,"value":464},{"type":52,"tag":431,"props":6733,"children":6734},{"style":467},[6735],{"type":58,"value":292},{"type":52,"tag":431,"props":6737,"children":6738},{"style":438},[6739],{"type":58,"value":446},{"type":52,"tag":431,"props":6741,"children":6742},{"style":438},[6743],{"type":58,"value":1406},{"type":52,"tag":431,"props":6745,"children":6746},{"class":433,"line":1409},[6747,6751,6755,6759,6763],{"type":52,"tag":431,"props":6748,"children":6749},{"style":438},[6750],{"type":58,"value":715},{"type":52,"tag":431,"props":6752,"children":6753},{"style":449},[6754],{"type":58,"value":1419},{"type":52,"tag":431,"props":6756,"children":6757},{"style":438},[6758],{"type":58,"value":446},{"type":52,"tag":431,"props":6760,"children":6761},{"style":438},[6762],{"type":58,"value":375},{"type":52,"tag":431,"props":6764,"children":6765},{"style":763},[6766],{"type":58,"value":6767}," 1.2\n",{"type":52,"tag":431,"props":6769,"children":6770},{"class":433,"line":1439},[6771],{"type":52,"tag":431,"props":6772,"children":6773},{"style":438},[6774],{"type":58,"value":513},{"type":52,"tag":6242,"props":6776,"children":6778},{"id":6777},"list-files",[6779],{"type":58,"value":6780},"List Files",{"type":52,"tag":61,"props":6782,"children":6783},{},[6784,6786,6792],{"type":58,"value":6785},"Use ",{"type":52,"tag":83,"props":6787,"children":6789},{"className":6788},[],[6790],{"type":58,"value":6791},"resource: \"file\", operation: \"listFiles\"",{"type":58,"value":6793}," to retrieve files, optionally filtered by metadata.",{"type":52,"tag":355,"props":6795,"children":6797},{"className":423,"code":6796,"language":425,"meta":363,"style":363},"{\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",[6798],{"type":52,"tag":83,"props":6799,"children":6800},{"__ignoreMap":363},[6801,6808,6831,6866,6902,7001,7024,7059,7082,7170,7178,7185,7192,7227,7250],{"type":52,"tag":431,"props":6802,"children":6803},{"class":433,"line":434},[6804],{"type":52,"tag":431,"props":6805,"children":6806},{"style":438},[6807],{"type":58,"value":706},{"type":52,"tag":431,"props":6809,"children":6810},{"class":433,"line":709},[6811,6815,6819,6823,6827],{"type":52,"tag":431,"props":6812,"children":6813},{"style":438},[6814],{"type":58,"value":715},{"type":52,"tag":431,"props":6816,"children":6817},{"style":449},[6818],{"type":58,"value":1273},{"type":52,"tag":431,"props":6820,"children":6821},{"style":438},[6822],{"type":58,"value":446},{"type":52,"tag":431,"props":6824,"children":6825},{"style":438},[6826],{"type":58,"value":375},{"type":52,"tag":431,"props":6828,"children":6829},{"style":438},[6830],{"type":58,"value":1286},{"type":52,"tag":431,"props":6832,"children":6833},{"class":433,"line":829},[6834,6838,6842,6846,6850,6854,6858,6862],{"type":52,"tag":431,"props":6835,"children":6836},{"style":438},[6837],{"type":58,"value":5139},{"type":52,"tag":431,"props":6839,"children":6840},{"style":740},[6841],{"type":58,"value":4266},{"type":52,"tag":431,"props":6843,"children":6844},{"style":438},[6845],{"type":58,"value":446},{"type":52,"tag":431,"props":6847,"children":6848},{"style":438},[6849],{"type":58,"value":375},{"type":52,"tag":431,"props":6851,"children":6852},{"style":438},[6853],{"type":58,"value":464},{"type":52,"tag":431,"props":6855,"children":6856},{"style":467},[6857],{"type":58,"value":4019},{"type":52,"tag":431,"props":6859,"children":6860},{"style":438},[6861],{"type":58,"value":446},{"type":52,"tag":431,"props":6863,"children":6864},{"style":438},[6865],{"type":58,"value":1406},{"type":52,"tag":431,"props":6867,"children":6868},{"class":433,"line":1262},[6869,6873,6877,6881,6885,6889,6894,6898],{"type":52,"tag":431,"props":6870,"children":6871},{"style":438},[6872],{"type":58,"value":5139},{"type":52,"tag":431,"props":6874,"children":6875},{"style":740},[6876],{"type":58,"value":4303},{"type":52,"tag":431,"props":6878,"children":6879},{"style":438},[6880],{"type":58,"value":446},{"type":52,"tag":431,"props":6882,"children":6883},{"style":438},[6884],{"type":58,"value":375},{"type":52,"tag":431,"props":6886,"children":6887},{"style":438},[6888],{"type":58,"value":464},{"type":52,"tag":431,"props":6890,"children":6891},{"style":467},[6892],{"type":58,"value":6893},"listFiles",{"type":52,"tag":431,"props":6895,"children":6896},{"style":438},[6897],{"type":58,"value":446},{"type":52,"tag":431,"props":6899,"children":6900},{"style":438},[6901],{"type":58,"value":1406},{"type":52,"tag":431,"props":6903,"children":6904},{"class":433,"line":1289},[6905,6909,6913,6917,6921,6925,6929,6933,6937,6941,6945,6949,6953,6957,6961,6965,6969,6973,6977,6981,6985,6989,6993,6997],{"type":52,"tag":431,"props":6906,"children":6907},{"style":438},[6908],{"type":58,"value":5139},{"type":52,"tag":431,"props":6910,"children":6911},{"style":740},[6912],{"type":58,"value":4340},{"type":52,"tag":431,"props":6914,"children":6915},{"style":438},[6916],{"type":58,"value":446},{"type":52,"tag":431,"props":6918,"children":6919},{"style":438},[6920],{"type":58,"value":375},{"type":52,"tag":431,"props":6922,"children":6923},{"style":438},[6924],{"type":58,"value":464},{"type":52,"tag":431,"props":6926,"children":6927},{"style":467},[6928],{"type":58,"value":441},{"type":52,"tag":431,"props":6930,"children":6931},{"style":698},[6932],{"type":58,"value":4361},{"type":52,"tag":431,"props":6934,"children":6935},{"style":467},[6936],{"type":58,"value":410},{"type":52,"tag":431,"props":6938,"children":6939},{"style":698},[6940],{"type":58,"value":4361},{"type":52,"tag":431,"props":6942,"children":6943},{"style":467},[6944],{"type":58,"value":375},{"type":52,"tag":431,"props":6946,"children":6947},{"style":698},[6948],{"type":58,"value":4361},{"type":52,"tag":431,"props":6950,"children":6951},{"style":467},[6952],{"type":58,"value":1148},{"type":52,"tag":431,"props":6954,"children":6955},{"style":698},[6956],{"type":58,"value":4361},{"type":52,"tag":431,"props":6958,"children":6959},{"style":467},[6960],{"type":58,"value":479},{"type":52,"tag":431,"props":6962,"children":6963},{"style":698},[6964],{"type":58,"value":4361},{"type":52,"tag":431,"props":6966,"children":6967},{"style":467},[6968],{"type":58,"value":418},{"type":52,"tag":431,"props":6970,"children":6971},{"style":698},[6972],{"type":58,"value":4361},{"type":52,"tag":431,"props":6974,"children":6975},{"style":467},[6976],{"type":58,"value":375},{"type":52,"tag":431,"props":6978,"children":6979},{"style":698},[6980],{"type":58,"value":4361},{"type":52,"tag":431,"props":6982,"children":6983},{"style":467},[6984],{"type":58,"value":4414},{"type":52,"tag":431,"props":6986,"children":6987},{"style":698},[6988],{"type":58,"value":4361},{"type":52,"tag":431,"props":6990,"children":6991},{"style":467},[6992],{"type":58,"value":4423},{"type":52,"tag":431,"props":6994,"children":6995},{"style":438},[6996],{"type":58,"value":446},{"type":52,"tag":431,"props":6998,"children":6999},{"style":438},[7000],{"type":58,"value":1406},{"type":52,"tag":431,"props":7002,"children":7003},{"class":433,"line":1315},[7004,7008,7012,7016,7020],{"type":52,"tag":431,"props":7005,"children":7006},{"style":438},[7007],{"type":58,"value":5139},{"type":52,"tag":431,"props":7009,"children":7010},{"style":740},[7011],{"type":58,"value":539},{"type":52,"tag":431,"props":7013,"children":7014},{"style":438},[7015],{"type":58,"value":446},{"type":52,"tag":431,"props":7017,"children":7018},{"style":438},[7019],{"type":58,"value":375},{"type":52,"tag":431,"props":7021,"children":7022},{"style":438},[7023],{"type":58,"value":1286},{"type":52,"tag":431,"props":7025,"children":7026},{"class":433,"line":1352},[7027,7031,7035,7039,7043,7047,7051,7055],{"type":52,"tag":431,"props":7028,"children":7029},{"style":438},[7030],{"type":58,"value":1268},{"type":52,"tag":431,"props":7032,"children":7033},{"style":763},[7034],{"type":58,"value":531},{"type":52,"tag":431,"props":7036,"children":7037},{"style":438},[7038],{"type":58,"value":446},{"type":52,"tag":431,"props":7040,"children":7041},{"style":438},[7042],{"type":58,"value":375},{"type":52,"tag":431,"props":7044,"children":7045},{"style":438},[7046],{"type":58,"value":464},{"type":52,"tag":431,"props":7048,"children":7049},{"style":467},[7050],{"type":58,"value":580},{"type":52,"tag":431,"props":7052,"children":7053},{"style":438},[7054],{"type":58,"value":446},{"type":52,"tag":431,"props":7056,"children":7057},{"style":438},[7058],{"type":58,"value":1406},{"type":52,"tag":431,"props":7060,"children":7061},{"class":433,"line":1361},[7062,7066,7070,7074,7078],{"type":52,"tag":431,"props":7063,"children":7064},{"style":438},[7065],{"type":58,"value":1268},{"type":52,"tag":431,"props":7067,"children":7068},{"style":763},[7069],{"type":58,"value":932},{"type":52,"tag":431,"props":7071,"children":7072},{"style":438},[7073],{"type":58,"value":446},{"type":52,"tag":431,"props":7075,"children":7076},{"style":438},[7077],{"type":58,"value":375},{"type":52,"tag":431,"props":7079,"children":7080},{"style":438},[7081],{"type":58,"value":1286},{"type":52,"tag":431,"props":7083,"children":7084},{"class":433,"line":1370},[7085,7089,7093,7097,7101,7105,7109,7113,7117,7121,7125,7129,7133,7137,7141,7145,7149,7153,7157,7161,7165],{"type":52,"tag":431,"props":7086,"children":7087},{"style":438},[7088],{"type":58,"value":1295},{"type":52,"tag":431,"props":7090,"children":7091},{"style":1324},[7092],{"type":58,"value":743},{"type":52,"tag":431,"props":7094,"children":7095},{"style":438},[7096],{"type":58,"value":446},{"type":52,"tag":431,"props":7098,"children":7099},{"style":438},[7100],{"type":58,"value":375},{"type":52,"tag":431,"props":7102,"children":7103},{"style":438},[7104],{"type":58,"value":756},{"type":52,"tag":431,"props":7106,"children":7107},{"style":438},[7108],{"type":58,"value":446},{"type":52,"tag":431,"props":7110,"children":7111},{"style":3211},[7112],{"type":58,"value":766},{"type":52,"tag":431,"props":7114,"children":7115},{"style":438},[7116],{"type":58,"value":446},{"type":52,"tag":431,"props":7118,"children":7119},{"style":438},[7120],{"type":58,"value":375},{"type":52,"tag":431,"props":7122,"children":7123},{"style":438},[7124],{"type":58,"value":464},{"type":52,"tag":431,"props":7126,"children":7127},{"style":467},[7128],{"type":58,"value":783},{"type":52,"tag":431,"props":7130,"children":7131},{"style":438},[7132],{"type":58,"value":446},{"type":52,"tag":431,"props":7134,"children":7135},{"style":438},[7136],{"type":58,"value":479},{"type":52,"tag":431,"props":7138,"children":7139},{"style":438},[7140],{"type":58,"value":464},{"type":52,"tag":431,"props":7142,"children":7143},{"style":3211},[7144],{"type":58,"value":800},{"type":52,"tag":431,"props":7146,"children":7147},{"style":438},[7148],{"type":58,"value":446},{"type":52,"tag":431,"props":7150,"children":7151},{"style":438},[7152],{"type":58,"value":375},{"type":52,"tag":431,"props":7154,"children":7155},{"style":438},[7156],{"type":58,"value":464},{"type":52,"tag":431,"props":7158,"children":7159},{"style":467},[7160],{"type":58,"value":817},{"type":52,"tag":431,"props":7162,"children":7163},{"style":438},[7164],{"type":58,"value":446},{"type":52,"tag":431,"props":7166,"children":7167},{"style":438},[7168],{"type":58,"value":7169},"}]\n",{"type":52,"tag":431,"props":7171,"children":7172},{"class":433,"line":1409},[7173],{"type":52,"tag":431,"props":7174,"children":7175},{"style":438},[7176],{"type":58,"value":7177},"      }\n",{"type":52,"tag":431,"props":7179,"children":7180},{"class":433,"line":1439},[7181],{"type":52,"tag":431,"props":7182,"children":7183},{"style":438},[7184],{"type":58,"value":5096},{"type":52,"tag":431,"props":7186,"children":7187},{"class":433,"line":28},[7188],{"type":52,"tag":431,"props":7189,"children":7190},{"style":438},[7191],{"type":58,"value":6154},{"type":52,"tag":431,"props":7193,"children":7194},{"class":433,"line":1521},[7195,7199,7203,7207,7211,7215,7219,7223],{"type":52,"tag":431,"props":7196,"children":7197},{"style":438},[7198],{"type":58,"value":715},{"type":52,"tag":431,"props":7200,"children":7201},{"style":449},[7202],{"type":58,"value":1380},{"type":52,"tag":431,"props":7204,"children":7205},{"style":438},[7206],{"type":58,"value":446},{"type":52,"tag":431,"props":7208,"children":7209},{"style":438},[7210],{"type":58,"value":375},{"type":52,"tag":431,"props":7212,"children":7213},{"style":438},[7214],{"type":58,"value":464},{"type":52,"tag":431,"props":7216,"children":7217},{"style":467},[7218],{"type":58,"value":292},{"type":52,"tag":431,"props":7220,"children":7221},{"style":438},[7222],{"type":58,"value":446},{"type":52,"tag":431,"props":7224,"children":7225},{"style":438},[7226],{"type":58,"value":1406},{"type":52,"tag":431,"props":7228,"children":7229},{"class":433,"line":1554},[7230,7234,7238,7242,7246],{"type":52,"tag":431,"props":7231,"children":7232},{"style":438},[7233],{"type":58,"value":715},{"type":52,"tag":431,"props":7235,"children":7236},{"style":449},[7237],{"type":58,"value":1419},{"type":52,"tag":431,"props":7239,"children":7240},{"style":438},[7241],{"type":58,"value":446},{"type":52,"tag":431,"props":7243,"children":7244},{"style":438},[7245],{"type":58,"value":375},{"type":52,"tag":431,"props":7247,"children":7248},{"style":763},[7249],{"type":58,"value":6767},{"type":52,"tag":431,"props":7251,"children":7252},{"class":433,"line":1563},[7253],{"type":52,"tag":431,"props":7254,"children":7255},{"style":438},[7256],{"type":58,"value":513},{"type":52,"tag":61,"props":7258,"children":7259},{},[7260,7262,7268,7270,7275],{"type":58,"value":7261},"For complex filters, use ",{"type":52,"tag":83,"props":7263,"children":7265},{"className":7264},[],[7266],{"type":58,"value":7267},"advancedMetadataFilter",{"type":58,"value":7269}," (a JSON string) instead of ",{"type":52,"tag":83,"props":7271,"children":7273},{"className":7272},[],[7274],{"type":58,"value":932},{"type":58,"value":7276}," — never both:",{"type":52,"tag":355,"props":7278,"children":7280},{"className":423,"code":7279,"language":425,"meta":363,"style":363},"\"additionalFields\": {\n  \"advancedMetadataFilter\": \"{\\\"department\\\": {\\\"$in\\\": [\\\"legal\\\", \\\"finance\\\"]}}\"\n}\n",[7281],{"type":52,"tag":83,"props":7282,"children":7283},{"__ignoreMap":363},[7284,7307,7406],{"type":52,"tag":431,"props":7285,"children":7286},{"class":433,"line":434},[7287,7291,7295,7299,7303],{"type":52,"tag":431,"props":7288,"children":7289},{"style":438},[7290],{"type":58,"value":446},{"type":52,"tag":431,"props":7292,"children":7293},{"style":467},[7294],{"type":58,"value":539},{"type":52,"tag":431,"props":7296,"children":7297},{"style":438},[7298],{"type":58,"value":446},{"type":52,"tag":431,"props":7300,"children":7301},{"style":698},[7302],{"type":58,"value":701},{"type":52,"tag":431,"props":7304,"children":7305},{"style":438},[7306],{"type":58,"value":706},{"type":52,"tag":431,"props":7308,"children":7309},{"class":433,"line":709},[7310,7314,7318,7322,7326,7330,7334,7338,7342,7346,7351,7355,7359,7363,7368,7372,7376,7380,7384,7388,7393,7397,7402],{"type":52,"tag":431,"props":7311,"children":7312},{"style":438},[7313],{"type":58,"value":715},{"type":52,"tag":431,"props":7315,"children":7316},{"style":449},[7317],{"type":58,"value":7267},{"type":52,"tag":431,"props":7319,"children":7320},{"style":438},[7321],{"type":58,"value":446},{"type":52,"tag":431,"props":7323,"children":7324},{"style":438},[7325],{"type":58,"value":375},{"type":52,"tag":431,"props":7327,"children":7328},{"style":438},[7329],{"type":58,"value":464},{"type":52,"tag":431,"props":7331,"children":7332},{"style":467},[7333],{"type":58,"value":441},{"type":52,"tag":431,"props":7335,"children":7336},{"style":698},[7337],{"type":58,"value":4361},{"type":52,"tag":431,"props":7339,"children":7340},{"style":467},[7341],{"type":58,"value":783},{"type":52,"tag":431,"props":7343,"children":7344},{"style":698},[7345],{"type":58,"value":4361},{"type":52,"tag":431,"props":7347,"children":7348},{"style":467},[7349],{"type":58,"value":7350},": {",{"type":52,"tag":431,"props":7352,"children":7353},{"style":698},[7354],{"type":58,"value":4361},{"type":52,"tag":431,"props":7356,"children":7357},{"style":467},[7358],{"type":58,"value":888},{"type":52,"tag":431,"props":7360,"children":7361},{"style":698},[7362],{"type":58,"value":4361},{"type":52,"tag":431,"props":7364,"children":7365},{"style":467},[7366],{"type":58,"value":7367},": [",{"type":52,"tag":431,"props":7369,"children":7370},{"style":698},[7371],{"type":58,"value":4361},{"type":52,"tag":431,"props":7373,"children":7374},{"style":467},[7375],{"type":58,"value":817},{"type":52,"tag":431,"props":7377,"children":7378},{"style":698},[7379],{"type":58,"value":4361},{"type":52,"tag":431,"props":7381,"children":7382},{"style":467},[7383],{"type":58,"value":875},{"type":52,"tag":431,"props":7385,"children":7386},{"style":698},[7387],{"type":58,"value":4361},{"type":52,"tag":431,"props":7389,"children":7390},{"style":467},[7391],{"type":58,"value":7392},"finance",{"type":52,"tag":431,"props":7394,"children":7395},{"style":698},[7396],{"type":58,"value":4361},{"type":52,"tag":431,"props":7398,"children":7399},{"style":467},[7400],{"type":58,"value":7401},"]}}",{"type":52,"tag":431,"props":7403,"children":7404},{"style":438},[7405],{"type":58,"value":1349},{"type":52,"tag":431,"props":7407,"children":7408},{"class":433,"line":829},[7409],{"type":52,"tag":431,"props":7410,"children":7411},{"style":438},[7412],{"type":58,"value":513},{"type":52,"tag":6242,"props":7414,"children":7416},{"id":7415},"get-context-snippets",[7417],{"type":58,"value":7418},"Get Context Snippets",{"type":52,"tag":61,"props":7420,"children":7421},{},[7422,7423,7429],{"type":58,"value":6785},{"type":52,"tag":83,"props":7424,"children":7426},{"className":7425},[],[7427],{"type":58,"value":7428},"resource: \"contextSnippet\", operation: \"getContextSnippets\"",{"type":58,"value":7430}," to retrieve relevant text or image chunks directly — useful when you need raw retrieved context as workflow data rather than a chat reply.",{"type":52,"tag":355,"props":7432,"children":7434},{"className":423,"code":7433,"language":425,"meta":363,"style":363},"{\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",[7435],{"type":52,"tag":83,"props":7436,"children":7437},{"__ignoreMap":363},[7438,7445,7468,7504,7540,7639,7676,7699,7734,7759,7783,7812,7837,7844,7851,7886,7909],{"type":52,"tag":431,"props":7439,"children":7440},{"class":433,"line":434},[7441],{"type":52,"tag":431,"props":7442,"children":7443},{"style":438},[7444],{"type":58,"value":706},{"type":52,"tag":431,"props":7446,"children":7447},{"class":433,"line":709},[7448,7452,7456,7460,7464],{"type":52,"tag":431,"props":7449,"children":7450},{"style":438},[7451],{"type":58,"value":715},{"type":52,"tag":431,"props":7453,"children":7454},{"style":449},[7455],{"type":58,"value":1273},{"type":52,"tag":431,"props":7457,"children":7458},{"style":438},[7459],{"type":58,"value":446},{"type":52,"tag":431,"props":7461,"children":7462},{"style":438},[7463],{"type":58,"value":375},{"type":52,"tag":431,"props":7465,"children":7466},{"style":438},[7467],{"type":58,"value":1286},{"type":52,"tag":431,"props":7469,"children":7470},{"class":433,"line":829},[7471,7475,7479,7483,7487,7491,7496,7500],{"type":52,"tag":431,"props":7472,"children":7473},{"style":438},[7474],{"type":58,"value":5139},{"type":52,"tag":431,"props":7476,"children":7477},{"style":740},[7478],{"type":58,"value":4266},{"type":52,"tag":431,"props":7480,"children":7481},{"style":438},[7482],{"type":58,"value":446},{"type":52,"tag":431,"props":7484,"children":7485},{"style":438},[7486],{"type":58,"value":375},{"type":52,"tag":431,"props":7488,"children":7489},{"style":438},[7490],{"type":58,"value":464},{"type":52,"tag":431,"props":7492,"children":7493},{"style":467},[7494],{"type":58,"value":7495},"contextSnippet",{"type":52,"tag":431,"props":7497,"children":7498},{"style":438},[7499],{"type":58,"value":446},{"type":52,"tag":431,"props":7501,"children":7502},{"style":438},[7503],{"type":58,"value":1406},{"type":52,"tag":431,"props":7505,"children":7506},{"class":433,"line":1262},[7507,7511,7515,7519,7523,7527,7532,7536],{"type":52,"tag":431,"props":7508,"children":7509},{"style":438},[7510],{"type":58,"value":5139},{"type":52,"tag":431,"props":7512,"children":7513},{"style":740},[7514],{"type":58,"value":4303},{"type":52,"tag":431,"props":7516,"children":7517},{"style":438},[7518],{"type":58,"value":446},{"type":52,"tag":431,"props":7520,"children":7521},{"style":438},[7522],{"type":58,"value":375},{"type":52,"tag":431,"props":7524,"children":7525},{"style":438},[7526],{"type":58,"value":464},{"type":52,"tag":431,"props":7528,"children":7529},{"style":467},[7530],{"type":58,"value":7531},"getContextSnippets",{"type":52,"tag":431,"props":7533,"children":7534},{"style":438},[7535],{"type":58,"value":446},{"type":52,"tag":431,"props":7537,"children":7538},{"style":438},[7539],{"type":58,"value":1406},{"type":52,"tag":431,"props":7541,"children":7542},{"class":433,"line":1289},[7543,7547,7551,7555,7559,7563,7567,7571,7575,7579,7583,7587,7591,7595,7599,7603,7607,7611,7615,7619,7623,7627,7631,7635],{"type":52,"tag":431,"props":7544,"children":7545},{"style":438},[7546],{"type":58,"value":5139},{"type":52,"tag":431,"props":7548,"children":7549},{"style":740},[7550],{"type":58,"value":4340},{"type":52,"tag":431,"props":7552,"children":7553},{"style":438},[7554],{"type":58,"value":446},{"type":52,"tag":431,"props":7556,"children":7557},{"style":438},[7558],{"type":58,"value":375},{"type":52,"tag":431,"props":7560,"children":7561},{"style":438},[7562],{"type":58,"value":464},{"type":52,"tag":431,"props":7564,"children":7565},{"style":467},[7566],{"type":58,"value":441},{"type":52,"tag":431,"props":7568,"children":7569},{"style":698},[7570],{"type":58,"value":4361},{"type":52,"tag":431,"props":7572,"children":7573},{"style":467},[7574],{"type":58,"value":410},{"type":52,"tag":431,"props":7576,"children":7577},{"style":698},[7578],{"type":58,"value":4361},{"type":52,"tag":431,"props":7580,"children":7581},{"style":467},[7582],{"type":58,"value":375},{"type":52,"tag":431,"props":7584,"children":7585},{"style":698},[7586],{"type":58,"value":4361},{"type":52,"tag":431,"props":7588,"children":7589},{"style":467},[7590],{"type":58,"value":1148},{"type":52,"tag":431,"props":7592,"children":7593},{"style":698},[7594],{"type":58,"value":4361},{"type":52,"tag":431,"props":7596,"children":7597},{"style":467},[7598],{"type":58,"value":479},{"type":52,"tag":431,"props":7600,"children":7601},{"style":698},[7602],{"type":58,"value":4361},{"type":52,"tag":431,"props":7604,"children":7605},{"style":467},[7606],{"type":58,"value":418},{"type":52,"tag":431,"props":7608,"children":7609},{"style":698},[7610],{"type":58,"value":4361},{"type":52,"tag":431,"props":7612,"children":7613},{"style":467},[7614],{"type":58,"value":375},{"type":52,"tag":431,"props":7616,"children":7617},{"style":698},[7618],{"type":58,"value":4361},{"type":52,"tag":431,"props":7620,"children":7621},{"style":467},[7622],{"type":58,"value":4414},{"type":52,"tag":431,"props":7624,"children":7625},{"style":698},[7626],{"type":58,"value":4361},{"type":52,"tag":431,"props":7628,"children":7629},{"style":467},[7630],{"type":58,"value":4423},{"type":52,"tag":431,"props":7632,"children":7633},{"style":438},[7634],{"type":58,"value":446},{"type":52,"tag":431,"props":7636,"children":7637},{"style":438},[7638],{"type":58,"value":1406},{"type":52,"tag":431,"props":7640,"children":7641},{"class":433,"line":1315},[7642,7646,7651,7655,7659,7663,7668,7672],{"type":52,"tag":431,"props":7643,"children":7644},{"style":438},[7645],{"type":58,"value":5139},{"type":52,"tag":431,"props":7647,"children":7648},{"style":740},[7649],{"type":58,"value":7650},"query",{"type":52,"tag":431,"props":7652,"children":7653},{"style":438},[7654],{"type":58,"value":446},{"type":52,"tag":431,"props":7656,"children":7657},{"style":438},[7658],{"type":58,"value":375},{"type":52,"tag":431,"props":7660,"children":7661},{"style":438},[7662],{"type":58,"value":464},{"type":52,"tag":431,"props":7664,"children":7665},{"style":467},[7666],{"type":58,"value":7667},"={{ $json.chatInput }}",{"type":52,"tag":431,"props":7669,"children":7670},{"style":438},[7671],{"type":58,"value":446},{"type":52,"tag":431,"props":7673,"children":7674},{"style":438},[7675],{"type":58,"value":1406},{"type":52,"tag":431,"props":7677,"children":7678},{"class":433,"line":1352},[7679,7683,7687,7691,7695],{"type":52,"tag":431,"props":7680,"children":7681},{"style":438},[7682],{"type":58,"value":5139},{"type":52,"tag":431,"props":7684,"children":7685},{"style":740},[7686],{"type":58,"value":539},{"type":52,"tag":431,"props":7688,"children":7689},{"style":438},[7690],{"type":58,"value":446},{"type":52,"tag":431,"props":7692,"children":7693},{"style":438},[7694],{"type":58,"value":375},{"type":52,"tag":431,"props":7696,"children":7697},{"style":438},[7698],{"type":58,"value":1286},{"type":52,"tag":431,"props":7700,"children":7701},{"class":433,"line":1361},[7702,7706,7710,7714,7718,7722,7726,7730],{"type":52,"tag":431,"props":7703,"children":7704},{"style":438},[7705],{"type":58,"value":1268},{"type":52,"tag":431,"props":7707,"children":7708},{"style":763},[7709],{"type":58,"value":531},{"type":52,"tag":431,"props":7711,"children":7712},{"style":438},[7713],{"type":58,"value":446},{"type":52,"tag":431,"props":7715,"children":7716},{"style":438},[7717],{"type":58,"value":375},{"type":52,"tag":431,"props":7719,"children":7720},{"style":438},[7721],{"type":58,"value":464},{"type":52,"tag":431,"props":7723,"children":7724},{"style":467},[7725],{"type":58,"value":580},{"type":52,"tag":431,"props":7727,"children":7728},{"style":438},[7729],{"type":58,"value":446},{"type":52,"tag":431,"props":7731,"children":7732},{"style":438},[7733],{"type":58,"value":1406},{"type":52,"tag":431,"props":7735,"children":7736},{"class":433,"line":1370},[7737,7741,7746,7750,7754],{"type":52,"tag":431,"props":7738,"children":7739},{"style":438},[7740],{"type":58,"value":1268},{"type":52,"tag":431,"props":7742,"children":7743},{"style":763},[7744],{"type":58,"value":7745},"includeMultimodalContext",{"type":52,"tag":431,"props":7747,"children":7748},{"style":438},[7749],{"type":58,"value":446},{"type":52,"tag":431,"props":7751,"children":7752},{"style":438},[7753],{"type":58,"value":375},{"type":52,"tag":431,"props":7755,"children":7756},{"style":438},[7757],{"type":58,"value":7758}," true,\n",{"type":52,"tag":431,"props":7760,"children":7761},{"class":433,"line":1409},[7762,7766,7771,7775,7779],{"type":52,"tag":431,"props":7763,"children":7764},{"style":438},[7765],{"type":58,"value":1268},{"type":52,"tag":431,"props":7767,"children":7768},{"style":763},[7769],{"type":58,"value":7770},"includeBinaryContent",{"type":52,"tag":431,"props":7772,"children":7773},{"style":438},[7774],{"type":58,"value":446},{"type":52,"tag":431,"props":7776,"children":7777},{"style":438},[7778],{"type":58,"value":375},{"type":52,"tag":431,"props":7780,"children":7781},{"style":438},[7782],{"type":58,"value":7758},{"type":52,"tag":431,"props":7784,"children":7785},{"class":433,"line":1439},[7786,7790,7795,7799,7803,7808],{"type":52,"tag":431,"props":7787,"children":7788},{"style":438},[7789],{"type":58,"value":1268},{"type":52,"tag":431,"props":7791,"children":7792},{"style":763},[7793],{"type":58,"value":7794},"topK",{"type":52,"tag":431,"props":7796,"children":7797},{"style":438},[7798],{"type":58,"value":446},{"type":52,"tag":431,"props":7800,"children":7801},{"style":438},[7802],{"type":58,"value":375},{"type":52,"tag":431,"props":7804,"children":7805},{"style":763},[7806],{"type":58,"value":7807}," 16",{"type":52,"tag":431,"props":7809,"children":7810},{"style":438},[7811],{"type":58,"value":1406},{"type":52,"tag":431,"props":7813,"children":7814},{"class":433,"line":28},[7815,7819,7824,7828,7832],{"type":52,"tag":431,"props":7816,"children":7817},{"style":438},[7818],{"type":58,"value":1268},{"type":52,"tag":431,"props":7820,"children":7821},{"style":763},[7822],{"type":58,"value":7823},"snippetSize",{"type":52,"tag":431,"props":7825,"children":7826},{"style":438},[7827],{"type":58,"value":446},{"type":52,"tag":431,"props":7829,"children":7830},{"style":438},[7831],{"type":58,"value":375},{"type":52,"tag":431,"props":7833,"children":7834},{"style":763},[7835],{"type":58,"value":7836}," 2048\n",{"type":52,"tag":431,"props":7838,"children":7839},{"class":433,"line":1521},[7840],{"type":52,"tag":431,"props":7841,"children":7842},{"style":438},[7843],{"type":58,"value":5096},{"type":52,"tag":431,"props":7845,"children":7846},{"class":433,"line":1554},[7847],{"type":52,"tag":431,"props":7848,"children":7849},{"style":438},[7850],{"type":58,"value":6154},{"type":52,"tag":431,"props":7852,"children":7853},{"class":433,"line":1563},[7854,7858,7862,7866,7870,7874,7878,7882],{"type":52,"tag":431,"props":7855,"children":7856},{"style":438},[7857],{"type":58,"value":715},{"type":52,"tag":431,"props":7859,"children":7860},{"style":449},[7861],{"type":58,"value":1380},{"type":52,"tag":431,"props":7863,"children":7864},{"style":438},[7865],{"type":58,"value":446},{"type":52,"tag":431,"props":7867,"children":7868},{"style":438},[7869],{"type":58,"value":375},{"type":52,"tag":431,"props":7871,"children":7872},{"style":438},[7873],{"type":58,"value":464},{"type":52,"tag":431,"props":7875,"children":7876},{"style":467},[7877],{"type":58,"value":292},{"type":52,"tag":431,"props":7879,"children":7880},{"style":438},[7881],{"type":58,"value":446},{"type":52,"tag":431,"props":7883,"children":7884},{"style":438},[7885],{"type":58,"value":1406},{"type":52,"tag":431,"props":7887,"children":7888},{"class":433,"line":1571},[7889,7893,7897,7901,7905],{"type":52,"tag":431,"props":7890,"children":7891},{"style":438},[7892],{"type":58,"value":715},{"type":52,"tag":431,"props":7894,"children":7895},{"style":449},[7896],{"type":58,"value":1419},{"type":52,"tag":431,"props":7898,"children":7899},{"style":438},[7900],{"type":58,"value":446},{"type":52,"tag":431,"props":7902,"children":7903},{"style":438},[7904],{"type":58,"value":375},{"type":52,"tag":431,"props":7906,"children":7907},{"style":763},[7908],{"type":58,"value":6767},{"type":52,"tag":431,"props":7910,"children":7911},{"class":433,"line":1595},[7912],{"type":52,"tag":431,"props":7913,"children":7914},{"style":438},[7915],{"type":58,"value":513},{"type":52,"tag":61,"props":7917,"children":7918},{},[7919,7921,7926,7928,7933,7935,7940,7942,7947,7949,7954,7956,7962],{"type":58,"value":7920},"The same ",{"type":52,"tag":83,"props":7922,"children":7924},{"className":7923},[],[7925],{"type":58,"value":932},{"type":58,"value":7927}," \u002F ",{"type":52,"tag":83,"props":7929,"children":7931},{"className":7930},[],[7932],{"type":58,"value":7267},{"type":58,"value":7934}," options work on ",{"type":52,"tag":83,"props":7936,"children":7938},{"className":7937},[],[7939],{"type":58,"value":7531},{"type":58,"value":7941}," to scope retrieval to files matching specific metadata. The ",{"type":52,"tag":83,"props":7943,"children":7945},{"className":7944},[],[7946],{"type":58,"value":7770},{"type":58,"value":7948}," flag only applies when ",{"type":52,"tag":83,"props":7950,"children":7952},{"className":7951},[],[7953],{"type":58,"value":7745},{"type":58,"value":7955}," is ",{"type":52,"tag":83,"props":7957,"children":7959},{"className":7958},[],[7960],{"type":58,"value":7961},"true",{"type":58,"value":6405},{"type":52,"tag":119,"props":7964,"children":7965},{},[],{"type":52,"tag":123,"props":7967,"children":7969},{"id":7968},"pinecone-vector-store-node-best-practices-and-workflow-generation",[7970],{"type":58,"value":7971},"Pinecone Vector Store Node — Best Practices and Workflow Generation",{"type":52,"tag":273,"props":7973,"children":7975},{"id":7974},"node-package-name",[7976],{"type":58,"value":7977},"Node package name",{"type":52,"tag":61,"props":7979,"children":7980},{},[7981],{"type":52,"tag":83,"props":7982,"children":7984},{"className":7983},[],[7985],{"type":58,"value":105},{"type":52,"tag":273,"props":7987,"children":7989},{"id":7988},"prerequisites-1",[7990],{"type":58,"value":309},{"type":52,"tag":67,"props":7992,"children":7993},{},[7994,8007,8011],{"type":52,"tag":71,"props":7995,"children":7996},{},[7997,7999,8005],{"type":58,"value":7998},"Create a Pinecone index in the Pinecone Console at ",{"type":52,"tag":319,"props":8000,"children":8003},{"href":8001,"rel":8002},"https:\u002F\u002Fapp.pinecone.io\u002Forganizations\u002F-\u002Fprojects\u002F-\u002Findexes",[323],[8004],{"type":58,"value":8001},{"type":58,"value":8006}," with the correct name and dimensions before running the workflow",{"type":52,"tag":71,"props":8008,"children":8009},{},[8010],{"type":58,"value":332},{"type":52,"tag":71,"props":8012,"children":8013},{},[8014],{"type":58,"value":8015},"Set up an OpenAI credential in n8n",{"type":52,"tag":273,"props":8017,"children":8019},{"id":8018},"workflow-architecture-1",[8020],{"type":58,"value":338},{"type":52,"tag":61,"props":8022,"children":8023},{},[8024,8026,8032],{"type":58,"value":8025},"Two-phase workflow with two separate ",{"type":52,"tag":83,"props":8027,"children":8029},{"className":8028},[],[8030],{"type":58,"value":8031},"vectorStorePinecone",{"type":58,"value":8033}," node instances:",{"type":52,"tag":61,"props":8035,"children":8036},{},[8037,8041],{"type":52,"tag":75,"props":8038,"children":8039},{},[8040],{"type":58,"value":351},{"type":58,"value":353},{"type":52,"tag":355,"props":8043,"children":8046},{"className":8044,"code":8045,"language":58},[358],"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",[8047],{"type":52,"tag":83,"props":8048,"children":8049},{"__ignoreMap":363},[8050],{"type":58,"value":8045},{"type":52,"tag":61,"props":8052,"children":8053},{},[8054,8058],{"type":52,"tag":75,"props":8055,"children":8056},{},[8057],{"type":58,"value":373},{"type":58,"value":375},{"type":52,"tag":355,"props":8060,"children":8063},{"className":8061,"code":8062,"language":58},[358],"Chat Trigger → AI Agent ← Pinecone Vector Store (retrieve-as-tool mode)\n                               ↑ Embeddings OpenAI (same model as insert)\n                        ← OpenAI Chat Model\n",[8064],{"type":52,"tag":83,"props":8065,"children":8066},{"__ignoreMap":363},[8067],{"type":58,"value":8062},{"type":52,"tag":273,"props":8069,"children":8071},{"id":8070},"key-configuration-rules-1",[8072],{"type":58,"value":390},{"type":52,"tag":392,"props":8074,"children":8075},{},[8076,8109,8127,8185,8195,8204,8229],{"type":52,"tag":71,"props":8077,"children":8078},{},[8079,8084,8086,8091,8093,8099,8101,8107],{"type":52,"tag":75,"props":8080,"children":8081},{},[8082],{"type":58,"value":8083},"Two node instances",{"type":58,"value":8085},": Use one ",{"type":52,"tag":83,"props":8087,"children":8089},{"className":8088},[],[8090],{"type":58,"value":8031},{"type":58,"value":8092}," in ",{"type":52,"tag":83,"props":8094,"children":8096},{"className":8095},[],[8097],{"type":58,"value":8098},"insert",{"type":58,"value":8100}," mode for ingestion and a separate one in ",{"type":52,"tag":83,"props":8102,"children":8104},{"className":8103},[],[8105],{"type":58,"value":8106},"retrieve-as-tool",{"type":58,"value":8108}," mode for chat",{"type":52,"tag":71,"props":8110,"children":8111},{},[8112,8117,8119,8125],{"type":52,"tag":75,"props":8113,"children":8114},{},[8115],{"type":58,"value":8116},"Embedding model consistency",{"type":58,"value":8118},": 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":52,"tag":83,"props":8120,"children":8122},{"className":8121},[],[8123],{"type":58,"value":8124},"ai_embedding",{"type":58,"value":8126}," connection",{"type":52,"tag":71,"props":8128,"children":8129},{},[8130,8135,8136],{"type":52,"tag":75,"props":8131,"children":8132},{},[8133],{"type":58,"value":8134},"Required companion nodes for the insert node",{"type":58,"value":541},{"type":52,"tag":67,"props":8137,"children":8138},{},[8139,8150,8161],{"type":52,"tag":71,"props":8140,"children":8141},{},[8142,8148],{"type":52,"tag":83,"props":8143,"children":8145},{"className":8144},[],[8146],{"type":58,"value":8147},"@n8n\u002Fn8n-nodes-langchain.embeddingsOpenAi",{"type":58,"value":8149}," — set dimensions to match your index (1536 for text-embedding-3-small)",{"type":52,"tag":71,"props":8151,"children":8152},{},[8153,8159],{"type":52,"tag":83,"props":8154,"children":8156},{"className":8155},[],[8157],{"type":58,"value":8158},"@n8n\u002Fn8n-nodes-langchain.textSplitterRecursiveCharacterTextSplitter",{"type":58,"value":8160}," — connects to the data loader",{"type":52,"tag":71,"props":8162,"children":8163},{},[8164,8170,8172,8178,8179],{"type":52,"tag":83,"props":8165,"children":8167},{"className":8166},[],[8168],{"type":58,"value":8169},"@n8n\u002Fn8n-nodes-langchain.documentDefaultDataLoader",{"type":58,"value":8171}," — set ",{"type":52,"tag":83,"props":8173,"children":8175},{"className":8174},[],[8176],{"type":58,"value":8177},"dataType: binary",{"type":58,"value":412},{"type":52,"tag":83,"props":8180,"children":8182},{"className":8181},[],[8183],{"type":58,"value":8184},"textSplittingMode: custom",{"type":52,"tag":71,"props":8186,"children":8187},{},[8188,8193],{"type":52,"tag":75,"props":8189,"children":8190},{},[8191],{"type":58,"value":8192},"toolDescription",{"type":58,"value":8194},": Write a clear, specific description on the retrieve-as-tool node — the AI Agent uses this to decide when to query it",{"type":52,"tag":71,"props":8196,"children":8197},{},[8198,8202],{"type":52,"tag":75,"props":8199,"children":8200},{},[8201],{"type":58,"value":7794},{"type":58,"value":8203},": Use 20 as the default; increase for broader recall, decrease to reduce token usage",{"type":52,"tag":71,"props":8205,"children":8206},{},[8207,8212,8214,8220,8222,8227],{"type":52,"tag":75,"props":8208,"children":8209},{},[8210],{"type":58,"value":8211},"Metadata for citations",{"type":58,"value":8213},": In the Default Data Loader, add ",{"type":52,"tag":83,"props":8215,"children":8217},{"className":8216},[],[8218],{"type":58,"value":8219},"external_file_url",{"type":58,"value":8221}," as a metadata field set to ",{"type":52,"tag":83,"props":8223,"children":8225},{"className":8224},[],[8226],{"type":58,"value":3919},{"type":58,"value":8228}," so the AI Agent can cite sources",{"type":52,"tag":71,"props":8230,"children":8231},{},[8232,8236,8237,8242],{"type":52,"tag":75,"props":8233,"children":8234},{},[8235],{"type":58,"value":630},{"type":58,"value":632},{"type":52,"tag":83,"props":8238,"children":8240},{"className":8239},[],[8241],{"type":58,"value":638},{"type":58,"value":8243}," credential type",{"type":52,"tag":273,"props":8245,"children":8247},{"id":8246},"chunking-guidance",[8248],{"type":58,"value":8249},"Chunking guidance",{"type":52,"tag":67,"props":8251,"children":8252},{},[8253,8263,8273],{"type":52,"tag":71,"props":8254,"children":8255},{},[8256,8261],{"type":52,"tag":75,"props":8257,"children":8258},{},[8259],{"type":58,"value":8260},"3000 chars \u002F 500 overlap",{"type":58,"value":8262},": Good default for long documents (articles, reports, documentation)",{"type":52,"tag":71,"props":8264,"children":8265},{},[8266,8271],{"type":52,"tag":75,"props":8267,"children":8268},{},[8269],{"type":58,"value":8270},"500–1000 chars \u002F 100–200 overlap",{"type":58,"value":8272},": Better for Q&A-style retrieval or short, dense content",{"type":52,"tag":71,"props":8274,"children":8275},{},[8276,8278],{"type":58,"value":8277},"Reference: ",{"type":52,"tag":319,"props":8279,"children":8282},{"href":8280,"rel":8281},"https:\u002F\u002Fwww.pinecone.io\u002Flearn\u002Fchunking-strategies\u002F",[323],[8283],{"type":58,"value":8280},{"type":52,"tag":273,"props":8285,"children":8287},{"id":8286},"index-setup-instructions",[8288],{"type":58,"value":8289},"Index setup instructions",{"type":52,"tag":61,"props":8291,"children":8292},{},[8293],{"type":58,"value":8294},"When generating a workflow, always tell the user to:",{"type":52,"tag":392,"props":8296,"children":8297},{},[8298,8310,8323],{"type":52,"tag":71,"props":8299,"children":8300},{},[8301,8303,8308],{"type":58,"value":8302},"Go to ",{"type":52,"tag":319,"props":8304,"children":8306},{"href":8001,"rel":8305},[323],[8307],{"type":58,"value":8001},{"type":58,"value":8309}," and create an index",{"type":52,"tag":71,"props":8311,"children":8312},{},[8313,8315,8321],{"type":58,"value":8314},"Set the name to match the ",{"type":52,"tag":83,"props":8316,"children":8318},{"className":8317},[],[8319],{"type":58,"value":8320},"pineconeIndex",{"type":58,"value":8322}," value in the workflow",{"type":52,"tag":71,"props":8324,"children":8325},{},[8326],{"type":58,"value":8327},"Select the embedding model that matches the n8n Embeddings node (text-embedding-3-small → 1536 dimensions)",{"type":52,"tag":273,"props":8329,"children":8331},{"id":8330},"generating-workflow-json-for-the-vector-store-path",[8332],{"type":58,"value":8333},"Generating workflow JSON for the Vector Store path",{"type":52,"tag":61,"props":8335,"children":8336},{},[8337],{"type":58,"value":8338},"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":52,"tag":67,"props":8340,"children":8341},{},[8342,8369,8373,8382,8395,8400],{"type":52,"tag":71,"props":8343,"children":8344},{},[8345,8347,8353,8354,8360,8361,8367],{"type":58,"value":8346},"Index name: ",{"type":52,"tag":83,"props":8348,"children":8350},{"className":8349},[],[8351],{"type":58,"value":8352},"n8n-index",{"type":58,"value":1088},{"type":52,"tag":83,"props":8355,"children":8357},{"className":8356},[],[8358],{"type":58,"value":8359},"n8n-index-1",{"type":58,"value":875},{"type":52,"tag":83,"props":8362,"children":8364},{"className":8363},[],[8365],{"type":58,"value":8366},"n8n-index-2",{"type":58,"value":8368},", etc. for multiples; must match an existing Pinecone index)",{"type":52,"tag":71,"props":8370,"children":8371},{},[8372],{"type":58,"value":1108},{"type":52,"tag":71,"props":8374,"children":8375},{},[8376,8377],{"type":58,"value":1113},{"type":52,"tag":83,"props":8378,"children":8380},{"className":8379},[],[8381],{"type":58,"value":1119},{"type":52,"tag":71,"props":8383,"children":8384},{},[8385,8387,8393],{"type":58,"value":8386},"Embedding model: ",{"type":52,"tag":83,"props":8388,"children":8390},{"className":8389},[],[8391],{"type":58,"value":8392},"text-embedding-3-small",{"type":58,"value":8394}," (1536 dimensions)",{"type":52,"tag":71,"props":8396,"children":8397},{},[8398],{"type":58,"value":8399},"Chunk size: 3000 chars \u002F 500 overlap",{"type":52,"tag":71,"props":8401,"children":8402},{},[8403],{"type":58,"value":8404},"System message \u002F tool description: generic prompt about retrieving from the index with citations",{"type":52,"tag":61,"props":8406,"children":8407},{},[8408,8409,8413],{"type":58,"value":1129},{"type":52,"tag":75,"props":8410,"children":8411},{},[8412],{"type":58,"value":1134},{"type":58,"value":1136},{"type":52,"tag":67,"props":8415,"children":8416},{},[8417,8428,8442,8456,8466],{"type":52,"tag":71,"props":8418,"children":8419},{},[8420,8426],{"type":52,"tag":83,"props":8421,"children":8423},{"className":8422},[],[8424],{"type":58,"value":8425},"[INDEX_NAME]",{"type":58,"value":8427}," — index name",{"type":52,"tag":71,"props":8429,"children":8430},{},[8431,8436,8437],{"type":52,"tag":83,"props":8432,"children":8434},{"className":8433},[],[8435],{"type":58,"value":1177},{"type":58,"value":1179},{"type":52,"tag":83,"props":8438,"children":8440},{"className":8439},[],[8441],{"type":58,"value":1185},{"type":52,"tag":71,"props":8443,"children":8444},{},[8445,8450,8451],{"type":52,"tag":83,"props":8446,"children":8448},{"className":8447},[],[8449],{"type":58,"value":1194},{"type":58,"value":1196},{"type":52,"tag":83,"props":8452,"children":8454},{"className":8453},[],[8455],{"type":58,"value":1119},{"type":52,"tag":71,"props":8457,"children":8458},{},[8459,8464],{"type":52,"tag":83,"props":8460,"children":8462},{"className":8461},[],[8463],{"type":58,"value":1210},{"type":58,"value":8465}," — short description of the data, for the AI Agent system message",{"type":52,"tag":71,"props":8467,"children":8468},{},[8469,8475],{"type":52,"tag":83,"props":8470,"children":8472},{"className":8471},[],[8473],{"type":58,"value":8474},"[USER_TOOL_DESCRIPTION]",{"type":58,"value":8476}," — description of what data the vector store contains, for the tool node",{"type":52,"tag":355,"props":8478,"children":8480},{"className":423,"code":8479,"language":425,"meta":363,"style":363},"{\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",[8481],{"type":52,"tag":83,"props":8482,"children":8483},{"__ignoreMap":363},[8484,8491,8514,8521,8544,8579,8602,8625,8660,8695,8727,8734,8757,8764,8799,8826,8866,8902,8933,8940,8947,8970,9019,9026,9061,9088,9129,9165,9197,9204,9211,9254,9289,9316,9357,9393,9429,9461,9468,9475,9498,9521,9553,9560,9567,9602,9629,9669,9705,9736,9743,9750,9773,9796,9819,9854,9889,9920,9927,9950,9957,9992,10019,10059,10095,10126,10133,10140,10163,10198,10233,10256,10279,10314,10349,10380,10387,10415,10438,10445,10480,10507,10547,10583,10615,10622,10629,10652,10688,10716,10744,10767,10774,10809,10850,10877,10913,10945,10952,10959,10982,11017,11045,11072,11095,11102,11137,11176,11203,11239,11270,11277,11284,11307,11342,11369,11408,11444,11475,11482,11489,11512,11535,11558,11565,11600,11635,11670,11701,11708,11715,11722,11745,11752,11787,11814,11854,11890,11921,11928,11935,12010,12045,12072,12112,12148,12179,12186,12193,12216,12245,12274,12297,12304,12339,12366,12407,12443,12475,12482,12490,12514,12550,12646,12654,12690,12718,12759,12796,12828,12836,12844,12868,12906,12944,12968,12992,13017,13090,13099,13108,13116,13124,13160,13189,13230,13267,13300,13308,13316,13340,13364,13389,13486,13582,13591,13599,13623,13735,13743,13767,13879,13887,13911,14023,14031,14055,14167,14175,14199,14311,14319,14343,14455,14463,14487,14600,14608,14632,14744,14752,14776,14889,14897,14905,14929,14973],{"type":52,"tag":431,"props":8485,"children":8486},{"class":433,"line":434},[8487],{"type":52,"tag":431,"props":8488,"children":8489},{"style":438},[8490],{"type":58,"value":706},{"type":52,"tag":431,"props":8492,"children":8493},{"class":433,"line":709},[8494,8498,8502,8506,8510],{"type":52,"tag":431,"props":8495,"children":8496},{"style":438},[8497],{"type":58,"value":715},{"type":52,"tag":431,"props":8499,"children":8500},{"style":449},[8501],{"type":58,"value":1238},{"type":52,"tag":431,"props":8503,"children":8504},{"style":438},[8505],{"type":58,"value":446},{"type":52,"tag":431,"props":8507,"children":8508},{"style":438},[8509],{"type":58,"value":375},{"type":52,"tag":431,"props":8511,"children":8512},{"style":438},[8513],{"type":58,"value":1251},{"type":52,"tag":431,"props":8515,"children":8516},{"class":433,"line":829},[8517],{"type":52,"tag":431,"props":8518,"children":8519},{"style":438},[8520],{"type":58,"value":1259},{"type":52,"tag":431,"props":8522,"children":8523},{"class":433,"line":1262},[8524,8528,8532,8536,8540],{"type":52,"tag":431,"props":8525,"children":8526},{"style":438},[8527],{"type":58,"value":1268},{"type":52,"tag":431,"props":8529,"children":8530},{"style":740},[8531],{"type":58,"value":1273},{"type":52,"tag":431,"props":8533,"children":8534},{"style":438},[8535],{"type":58,"value":446},{"type":52,"tag":431,"props":8537,"children":8538},{"style":438},[8539],{"type":58,"value":375},{"type":52,"tag":431,"props":8541,"children":8542},{"style":438},[8543],{"type":58,"value":1286},{"type":52,"tag":431,"props":8545,"children":8546},{"class":433,"line":1289},[8547,8551,8555,8559,8563,8567,8571,8575],{"type":52,"tag":431,"props":8548,"children":8549},{"style":438},[8550],{"type":58,"value":1295},{"type":52,"tag":431,"props":8552,"children":8553},{"style":763},[8554],{"type":58,"value":1648},{"type":52,"tag":431,"props":8556,"children":8557},{"style":438},[8558],{"type":58,"value":446},{"type":52,"tag":431,"props":8560,"children":8561},{"style":438},[8562],{"type":58,"value":375},{"type":52,"tag":431,"props":8564,"children":8565},{"style":438},[8566],{"type":58,"value":464},{"type":52,"tag":431,"props":8568,"children":8569},{"style":467},[8570],{"type":58,"value":8098},{"type":52,"tag":431,"props":8572,"children":8573},{"style":438},[8574],{"type":58,"value":446},{"type":52,"tag":431,"props":8576,"children":8577},{"style":438},[8578],{"type":58,"value":1406},{"type":52,"tag":431,"props":8580,"children":8581},{"class":433,"line":1315},[8582,8586,8590,8594,8598],{"type":52,"tag":431,"props":8583,"children":8584},{"style":438},[8585],{"type":58,"value":1295},{"type":52,"tag":431,"props":8587,"children":8588},{"style":763},[8589],{"type":58,"value":8320},{"type":52,"tag":431,"props":8591,"children":8592},{"style":438},[8593],{"type":58,"value":446},{"type":52,"tag":431,"props":8595,"children":8596},{"style":438},[8597],{"type":58,"value":375},{"type":52,"tag":431,"props":8599,"children":8600},{"style":438},[8601],{"type":58,"value":1286},{"type":52,"tag":431,"props":8603,"children":8604},{"class":433,"line":1352},[8605,8609,8613,8617,8621],{"type":52,"tag":431,"props":8606,"children":8607},{"style":438},[8608],{"type":58,"value":1321},{"type":52,"tag":431,"props":8610,"children":8611},{"style":1324},[8612],{"type":58,"value":1626},{"type":52,"tag":431,"props":8614,"children":8615},{"style":438},[8616],{"type":58,"value":446},{"type":52,"tag":431,"props":8618,"children":8619},{"style":438},[8620],{"type":58,"value":375},{"type":52,"tag":431,"props":8622,"children":8623},{"style":438},[8624],{"type":58,"value":7758},{"type":52,"tag":431,"props":8626,"children":8627},{"class":433,"line":1361},[8628,8632,8636,8640,8644,8648,8652,8656],{"type":52,"tag":431,"props":8629,"children":8630},{"style":438},[8631],{"type":58,"value":1321},{"type":52,"tag":431,"props":8633,"children":8634},{"style":1324},[8635],{"type":58,"value":800},{"type":52,"tag":431,"props":8637,"children":8638},{"style":438},[8639],{"type":58,"value":446},{"type":52,"tag":431,"props":8641,"children":8642},{"style":438},[8643],{"type":58,"value":375},{"type":52,"tag":431,"props":8645,"children":8646},{"style":438},[8647],{"type":58,"value":464},{"type":52,"tag":431,"props":8649,"children":8650},{"style":467},[8651],{"type":58,"value":8425},{"type":52,"tag":431,"props":8653,"children":8654},{"style":438},[8655],{"type":58,"value":446},{"type":52,"tag":431,"props":8657,"children":8658},{"style":438},[8659],{"type":58,"value":1406},{"type":52,"tag":431,"props":8661,"children":8662},{"class":433,"line":1370},[8663,8667,8671,8675,8679,8683,8687,8691],{"type":52,"tag":431,"props":8664,"children":8665},{"style":438},[8666],{"type":58,"value":1321},{"type":52,"tag":431,"props":8668,"children":8669},{"style":1324},[8670],{"type":58,"value":1648},{"type":52,"tag":431,"props":8672,"children":8673},{"style":438},[8674],{"type":58,"value":446},{"type":52,"tag":431,"props":8676,"children":8677},{"style":438},[8678],{"type":58,"value":375},{"type":52,"tag":431,"props":8680,"children":8681},{"style":438},[8682],{"type":58,"value":464},{"type":52,"tag":431,"props":8684,"children":8685},{"style":467},[8686],{"type":58,"value":1665},{"type":52,"tag":431,"props":8688,"children":8689},{"style":438},[8690],{"type":58,"value":446},{"type":52,"tag":431,"props":8692,"children":8693},{"style":438},[8694],{"type":58,"value":1406},{"type":52,"tag":431,"props":8696,"children":8697},{"class":433,"line":1409},[8698,8702,8707,8711,8715,8719,8723],{"type":52,"tag":431,"props":8699,"children":8700},{"style":438},[8701],{"type":58,"value":1321},{"type":52,"tag":431,"props":8703,"children":8704},{"style":1324},[8705],{"type":58,"value":8706},"cachedResultName",{"type":52,"tag":431,"props":8708,"children":8709},{"style":438},[8710],{"type":58,"value":446},{"type":52,"tag":431,"props":8712,"children":8713},{"style":438},[8714],{"type":58,"value":375},{"type":52,"tag":431,"props":8716,"children":8717},{"style":438},[8718],{"type":58,"value":464},{"type":52,"tag":431,"props":8720,"children":8721},{"style":467},[8722],{"type":58,"value":8425},{"type":52,"tag":431,"props":8724,"children":8725},{"style":438},[8726],{"type":58,"value":1349},{"type":52,"tag":431,"props":8728,"children":8729},{"class":433,"line":1439},[8730],{"type":52,"tag":431,"props":8731,"children":8732},{"style":438},[8733],{"type":58,"value":3371},{"type":52,"tag":431,"props":8735,"children":8736},{"class":433,"line":28},[8737,8741,8745,8749,8753],{"type":52,"tag":431,"props":8738,"children":8739},{"style":438},[8740],{"type":58,"value":1295},{"type":52,"tag":431,"props":8742,"children":8743},{"style":763},[8744],{"type":58,"value":1300},{"type":52,"tag":431,"props":8746,"children":8747},{"style":438},[8748],{"type":58,"value":446},{"type":52,"tag":431,"props":8750,"children":8751},{"style":438},[8752],{"type":58,"value":375},{"type":52,"tag":431,"props":8754,"children":8755},{"style":438},[8756],{"type":58,"value":1731},{"type":52,"tag":431,"props":8758,"children":8759},{"class":433,"line":1521},[8760],{"type":52,"tag":431,"props":8761,"children":8762},{"style":438},[8763],{"type":58,"value":1367},{"type":52,"tag":431,"props":8765,"children":8766},{"class":433,"line":1554},[8767,8771,8775,8779,8783,8787,8791,8795],{"type":52,"tag":431,"props":8768,"children":8769},{"style":438},[8770],{"type":58,"value":1268},{"type":52,"tag":431,"props":8772,"children":8773},{"style":740},[8774],{"type":58,"value":1380},{"type":52,"tag":431,"props":8776,"children":8777},{"style":438},[8778],{"type":58,"value":446},{"type":52,"tag":431,"props":8780,"children":8781},{"style":438},[8782],{"type":58,"value":375},{"type":52,"tag":431,"props":8784,"children":8785},{"style":438},[8786],{"type":58,"value":464},{"type":52,"tag":431,"props":8788,"children":8789},{"style":467},[8790],{"type":58,"value":105},{"type":52,"tag":431,"props":8792,"children":8793},{"style":438},[8794],{"type":58,"value":446},{"type":52,"tag":431,"props":8796,"children":8797},{"style":438},[8798],{"type":58,"value":1406},{"type":52,"tag":431,"props":8800,"children":8801},{"class":433,"line":1563},[8802,8806,8810,8814,8818,8822],{"type":52,"tag":431,"props":8803,"children":8804},{"style":438},[8805],{"type":58,"value":1268},{"type":52,"tag":431,"props":8807,"children":8808},{"style":740},[8809],{"type":58,"value":1419},{"type":52,"tag":431,"props":8811,"children":8812},{"style":438},[8813],{"type":58,"value":446},{"type":52,"tag":431,"props":8815,"children":8816},{"style":438},[8817],{"type":58,"value":375},{"type":52,"tag":431,"props":8819,"children":8820},{"style":763},[8821],{"type":58,"value":2731},{"type":52,"tag":431,"props":8823,"children":8824},{"style":438},[8825],{"type":58,"value":1406},{"type":52,"tag":431,"props":8827,"children":8828},{"class":433,"line":1571},[8829,8833,8837,8841,8845,8849,8854,8858,8862],{"type":52,"tag":431,"props":8830,"children":8831},{"style":438},[8832],{"type":58,"value":1268},{"type":52,"tag":431,"props":8834,"children":8835},{"style":740},[8836],{"type":58,"value":1449},{"type":52,"tag":431,"props":8838,"children":8839},{"style":438},[8840],{"type":58,"value":446},{"type":52,"tag":431,"props":8842,"children":8843},{"style":438},[8844],{"type":58,"value":375},{"type":52,"tag":431,"props":8846,"children":8847},{"style":438},[8848],{"type":58,"value":1462},{"type":52,"tag":431,"props":8850,"children":8851},{"style":763},[8852],{"type":58,"value":8853},"224",{"type":52,"tag":431,"props":8855,"children":8856},{"style":438},[8857],{"type":58,"value":479},{"type":52,"tag":431,"props":8859,"children":8860},{"style":763},[8861],{"type":58,"value":5268},{"type":52,"tag":431,"props":8863,"children":8864},{"style":438},[8865],{"type":58,"value":1481},{"type":52,"tag":431,"props":8867,"children":8868},{"class":433,"line":1595},[8869,8873,8877,8881,8885,8889,8894,8898],{"type":52,"tag":431,"props":8870,"children":8871},{"style":438},[8872],{"type":58,"value":1268},{"type":52,"tag":431,"props":8874,"children":8875},{"style":740},[8876],{"type":58,"value":1493},{"type":52,"tag":431,"props":8878,"children":8879},{"style":438},[8880],{"type":58,"value":446},{"type":52,"tag":431,"props":8882,"children":8883},{"style":438},[8884],{"type":58,"value":375},{"type":52,"tag":431,"props":8886,"children":8887},{"style":438},[8888],{"type":58,"value":464},{"type":52,"tag":431,"props":8890,"children":8891},{"style":467},[8892],{"type":58,"value":8893},"163c0a37-427c-4da7-a194-203ac216c88e",{"type":52,"tag":431,"props":8895,"children":8896},{"style":438},[8897],{"type":58,"value":446},{"type":52,"tag":431,"props":8899,"children":8900},{"style":438},[8901],{"type":58,"value":1406},{"type":52,"tag":431,"props":8903,"children":8904},{"class":433,"line":1709},[8905,8909,8913,8917,8921,8925,8929],{"type":52,"tag":431,"props":8906,"children":8907},{"style":438},[8908],{"type":58,"value":1268},{"type":52,"tag":431,"props":8910,"children":8911},{"style":740},[8912],{"type":58,"value":410},{"type":52,"tag":431,"props":8914,"children":8915},{"style":438},[8916],{"type":58,"value":446},{"type":52,"tag":431,"props":8918,"children":8919},{"style":438},[8920],{"type":58,"value":375},{"type":52,"tag":431,"props":8922,"children":8923},{"style":438},[8924],{"type":58,"value":464},{"type":52,"tag":431,"props":8926,"children":8927},{"style":467},[8928],{"type":58,"value":98},{"type":52,"tag":431,"props":8930,"children":8931},{"style":438},[8932],{"type":58,"value":1349},{"type":52,"tag":431,"props":8934,"children":8935},{"class":433,"line":1734},[8936],{"type":52,"tag":431,"props":8937,"children":8938},{"style":438},[8939],{"type":58,"value":1560},{"type":52,"tag":431,"props":8941,"children":8942},{"class":433,"line":1742},[8943],{"type":52,"tag":431,"props":8944,"children":8945},{"style":438},[8946],{"type":58,"value":1259},{"type":52,"tag":431,"props":8948,"children":8949},{"class":433,"line":1779},[8950,8954,8958,8962,8966],{"type":52,"tag":431,"props":8951,"children":8952},{"style":438},[8953],{"type":58,"value":1268},{"type":52,"tag":431,"props":8955,"children":8956},{"style":740},[8957],{"type":58,"value":1273},{"type":52,"tag":431,"props":8959,"children":8960},{"style":438},[8961],{"type":58,"value":446},{"type":52,"tag":431,"props":8963,"children":8964},{"style":438},[8965],{"type":58,"value":375},{"type":52,"tag":431,"props":8967,"children":8968},{"style":438},[8969],{"type":58,"value":1286},{"type":52,"tag":431,"props":8971,"children":8972},{"class":433,"line":1808},[8973,8977,8981,8985,8989,8993,8997,9002,9006,9010,9015],{"type":52,"tag":431,"props":8974,"children":8975},{"style":438},[8976],{"type":58,"value":1295},{"type":52,"tag":431,"props":8978,"children":8979},{"style":763},[8980],{"type":58,"value":1300},{"type":52,"tag":431,"props":8982,"children":8983},{"style":438},[8984],{"type":58,"value":446},{"type":52,"tag":431,"props":8986,"children":8987},{"style":438},[8988],{"type":58,"value":375},{"type":52,"tag":431,"props":8990,"children":8991},{"style":438},[8992],{"type":58,"value":733},{"type":52,"tag":431,"props":8994,"children":8995},{"style":438},[8996],{"type":58,"value":446},{"type":52,"tag":431,"props":8998,"children":8999},{"style":1324},[9000],{"type":58,"value":9001},"dimensions",{"type":52,"tag":431,"props":9003,"children":9004},{"style":438},[9005],{"type":58,"value":446},{"type":52,"tag":431,"props":9007,"children":9008},{"style":438},[9009],{"type":58,"value":375},{"type":52,"tag":431,"props":9011,"children":9012},{"style":763},[9013],{"type":58,"value":9014}," 1536",{"type":52,"tag":431,"props":9016,"children":9017},{"style":438},[9018],{"type":58,"value":513},{"type":52,"tag":431,"props":9020,"children":9021},{"class":433,"line":1850},[9022],{"type":52,"tag":431,"props":9023,"children":9024},{"style":438},[9025],{"type":58,"value":1367},{"type":52,"tag":431,"props":9027,"children":9028},{"class":433,"line":1887},[9029,9033,9037,9041,9045,9049,9053,9057],{"type":52,"tag":431,"props":9030,"children":9031},{"style":438},[9032],{"type":58,"value":1268},{"type":52,"tag":431,"props":9034,"children":9035},{"style":740},[9036],{"type":58,"value":1380},{"type":52,"tag":431,"props":9038,"children":9039},{"style":438},[9040],{"type":58,"value":446},{"type":52,"tag":431,"props":9042,"children":9043},{"style":438},[9044],{"type":58,"value":375},{"type":52,"tag":431,"props":9046,"children":9047},{"style":438},[9048],{"type":58,"value":464},{"type":52,"tag":431,"props":9050,"children":9051},{"style":467},[9052],{"type":58,"value":8147},{"type":52,"tag":431,"props":9054,"children":9055},{"style":438},[9056],{"type":58,"value":446},{"type":52,"tag":431,"props":9058,"children":9059},{"style":438},[9060],{"type":58,"value":1406},{"type":52,"tag":431,"props":9062,"children":9063},{"class":433,"line":1920},[9064,9068,9072,9076,9080,9084],{"type":52,"tag":431,"props":9065,"children":9066},{"style":438},[9067],{"type":58,"value":1268},{"type":52,"tag":431,"props":9069,"children":9070},{"style":740},[9071],{"type":58,"value":1419},{"type":52,"tag":431,"props":9073,"children":9074},{"style":438},[9075],{"type":58,"value":446},{"type":52,"tag":431,"props":9077,"children":9078},{"style":438},[9079],{"type":58,"value":375},{"type":52,"tag":431,"props":9081,"children":9082},{"style":763},[9083],{"type":58,"value":1801},{"type":52,"tag":431,"props":9085,"children":9086},{"style":438},[9087],{"type":58,"value":1406},{"type":52,"tag":431,"props":9089,"children":9090},{"class":433,"line":1928},[9091,9095,9099,9103,9107,9111,9116,9120,9125],{"type":52,"tag":431,"props":9092,"children":9093},{"style":438},[9094],{"type":58,"value":1268},{"type":52,"tag":431,"props":9096,"children":9097},{"style":740},[9098],{"type":58,"value":1449},{"type":52,"tag":431,"props":9100,"children":9101},{"style":438},[9102],{"type":58,"value":446},{"type":52,"tag":431,"props":9104,"children":9105},{"style":438},[9106],{"type":58,"value":375},{"type":52,"tag":431,"props":9108,"children":9109},{"style":438},[9110],{"type":58,"value":1462},{"type":52,"tag":431,"props":9112,"children":9113},{"style":763},[9114],{"type":58,"value":9115},"336",{"type":52,"tag":431,"props":9117,"children":9118},{"style":438},[9119],{"type":58,"value":479},{"type":52,"tag":431,"props":9121,"children":9122},{"style":763},[9123],{"type":58,"value":9124}," 608",{"type":52,"tag":431,"props":9126,"children":9127},{"style":438},[9128],{"type":58,"value":1481},{"type":52,"tag":431,"props":9130,"children":9131},{"class":433,"line":1936},[9132,9136,9140,9144,9148,9152,9157,9161],{"type":52,"tag":431,"props":9133,"children":9134},{"style":438},[9135],{"type":58,"value":1268},{"type":52,"tag":431,"props":9137,"children":9138},{"style":740},[9139],{"type":58,"value":1493},{"type":52,"tag":431,"props":9141,"children":9142},{"style":438},[9143],{"type":58,"value":446},{"type":52,"tag":431,"props":9145,"children":9146},{"style":438},[9147],{"type":58,"value":375},{"type":52,"tag":431,"props":9149,"children":9150},{"style":438},[9151],{"type":58,"value":464},{"type":52,"tag":431,"props":9153,"children":9154},{"style":467},[9155],{"type":58,"value":9156},"a034bcb9-d813-4fd0-a68a-426c1f2b2aba",{"type":52,"tag":431,"props":9158,"children":9159},{"style":438},[9160],{"type":58,"value":446},{"type":52,"tag":431,"props":9162,"children":9163},{"style":438},[9164],{"type":58,"value":1406},{"type":52,"tag":431,"props":9166,"children":9167},{"class":433,"line":1960},[9168,9172,9176,9180,9184,9188,9193],{"type":52,"tag":431,"props":9169,"children":9170},{"style":438},[9171],{"type":58,"value":1268},{"type":52,"tag":431,"props":9173,"children":9174},{"style":740},[9175],{"type":58,"value":410},{"type":52,"tag":431,"props":9177,"children":9178},{"style":438},[9179],{"type":58,"value":446},{"type":52,"tag":431,"props":9181,"children":9182},{"style":438},[9183],{"type":58,"value":375},{"type":52,"tag":431,"props":9185,"children":9186},{"style":438},[9187],{"type":58,"value":464},{"type":52,"tag":431,"props":9189,"children":9190},{"style":467},[9191],{"type":58,"value":9192},"Embeddings OpenAI",{"type":52,"tag":431,"props":9194,"children":9195},{"style":438},[9196],{"type":58,"value":1349},{"type":52,"tag":431,"props":9198,"children":9199},{"class":433,"line":1998},[9200],{"type":52,"tag":431,"props":9201,"children":9202},{"style":438},[9203],{"type":58,"value":1560},{"type":52,"tag":431,"props":9205,"children":9206},{"class":433,"line":2028},[9207],{"type":52,"tag":431,"props":9208,"children":9209},{"style":438},[9210],{"type":58,"value":1259},{"type":52,"tag":431,"props":9212,"children":9213},{"class":433,"line":2058},[9214,9218,9222,9226,9230,9234,9238,9242,9246,9250],{"type":52,"tag":431,"props":9215,"children":9216},{"style":438},[9217],{"type":58,"value":1268},{"type":52,"tag":431,"props":9219,"children":9220},{"style":740},[9221],{"type":58,"value":1273},{"type":52,"tag":431,"props":9223,"children":9224},{"style":438},[9225],{"type":58,"value":446},{"type":52,"tag":431,"props":9227,"children":9228},{"style":438},[9229],{"type":58,"value":375},{"type":52,"tag":431,"props":9231,"children":9232},{"style":438},[9233],{"type":58,"value":733},{"type":52,"tag":431,"props":9235,"children":9236},{"style":438},[9237],{"type":58,"value":446},{"type":52,"tag":431,"props":9239,"children":9240},{"style":763},[9241],{"type":58,"value":1300},{"type":52,"tag":431,"props":9243,"children":9244},{"style":438},[9245],{"type":58,"value":446},{"type":52,"tag":431,"props":9247,"children":9248},{"style":438},[9249],{"type":58,"value":375},{"type":52,"tag":431,"props":9251,"children":9252},{"style":438},[9253],{"type":58,"value":2669},{"type":52,"tag":431,"props":9255,"children":9256},{"class":433,"line":2084},[9257,9261,9265,9269,9273,9277,9281,9285],{"type":52,"tag":431,"props":9258,"children":9259},{"style":438},[9260],{"type":58,"value":1268},{"type":52,"tag":431,"props":9262,"children":9263},{"style":740},[9264],{"type":58,"value":1380},{"type":52,"tag":431,"props":9266,"children":9267},{"style":438},[9268],{"type":58,"value":446},{"type":52,"tag":431,"props":9270,"children":9271},{"style":438},[9272],{"type":58,"value":375},{"type":52,"tag":431,"props":9274,"children":9275},{"style":438},[9276],{"type":58,"value":464},{"type":52,"tag":431,"props":9278,"children":9279},{"style":467},[9280],{"type":58,"value":2698},{"type":52,"tag":431,"props":9282,"children":9283},{"style":438},[9284],{"type":58,"value":446},{"type":52,"tag":431,"props":9286,"children":9287},{"style":438},[9288],{"type":58,"value":1406},{"type":52,"tag":431,"props":9290,"children":9291},{"class":433,"line":2092},[9292,9296,9300,9304,9308,9312],{"type":52,"tag":431,"props":9293,"children":9294},{"style":438},[9295],{"type":58,"value":1268},{"type":52,"tag":431,"props":9297,"children":9298},{"style":740},[9299],{"type":58,"value":1419},{"type":52,"tag":431,"props":9301,"children":9302},{"style":438},[9303],{"type":58,"value":446},{"type":52,"tag":431,"props":9305,"children":9306},{"style":438},[9307],{"type":58,"value":375},{"type":52,"tag":431,"props":9309,"children":9310},{"style":763},[9311],{"type":58,"value":2731},{"type":52,"tag":431,"props":9313,"children":9314},{"style":438},[9315],{"type":58,"value":1406},{"type":52,"tag":431,"props":9317,"children":9318},{"class":433,"line":2129},[9319,9323,9327,9331,9335,9339,9344,9348,9353],{"type":52,"tag":431,"props":9320,"children":9321},{"style":438},[9322],{"type":58,"value":1268},{"type":52,"tag":431,"props":9324,"children":9325},{"style":740},[9326],{"type":58,"value":1449},{"type":52,"tag":431,"props":9328,"children":9329},{"style":438},[9330],{"type":58,"value":446},{"type":52,"tag":431,"props":9332,"children":9333},{"style":438},[9334],{"type":58,"value":375},{"type":52,"tag":431,"props":9336,"children":9337},{"style":438},[9338],{"type":58,"value":1462},{"type":52,"tag":431,"props":9340,"children":9341},{"style":763},[9342],{"type":58,"value":9343},"-512",{"type":52,"tag":431,"props":9345,"children":9346},{"style":438},[9347],{"type":58,"value":479},{"type":52,"tag":431,"props":9349,"children":9350},{"style":763},[9351],{"type":58,"value":9352}," 896",{"type":52,"tag":431,"props":9354,"children":9355},{"style":438},[9356],{"type":58,"value":1481},{"type":52,"tag":431,"props":9358,"children":9359},{"class":433,"line":2171},[9360,9364,9368,9372,9376,9380,9385,9389],{"type":52,"tag":431,"props":9361,"children":9362},{"style":438},[9363],{"type":58,"value":1268},{"type":52,"tag":431,"props":9365,"children":9366},{"style":740},[9367],{"type":58,"value":1493},{"type":52,"tag":431,"props":9369,"children":9370},{"style":438},[9371],{"type":58,"value":446},{"type":52,"tag":431,"props":9373,"children":9374},{"style":438},[9375],{"type":58,"value":375},{"type":52,"tag":431,"props":9377,"children":9378},{"style":438},[9379],{"type":58,"value":464},{"type":52,"tag":431,"props":9381,"children":9382},{"style":467},[9383],{"type":58,"value":9384},"56182cf7-2bda-4513-a2f9-18fb70c718ec",{"type":52,"tag":431,"props":9386,"children":9387},{"style":438},[9388],{"type":58,"value":446},{"type":52,"tag":431,"props":9390,"children":9391},{"style":438},[9392],{"type":58,"value":1406},{"type":52,"tag":431,"props":9394,"children":9395},{"class":433,"line":2200},[9396,9400,9404,9408,9412,9416,9421,9425],{"type":52,"tag":431,"props":9397,"children":9398},{"style":438},[9399],{"type":58,"value":1268},{"type":52,"tag":431,"props":9401,"children":9402},{"style":740},[9403],{"type":58,"value":410},{"type":52,"tag":431,"props":9405,"children":9406},{"style":438},[9407],{"type":58,"value":446},{"type":52,"tag":431,"props":9409,"children":9410},{"style":438},[9411],{"type":58,"value":375},{"type":52,"tag":431,"props":9413,"children":9414},{"style":438},[9415],{"type":58,"value":464},{"type":52,"tag":431,"props":9417,"children":9418},{"style":467},[9419],{"type":58,"value":9420},"When chat message received",{"type":52,"tag":431,"props":9422,"children":9423},{"style":438},[9424],{"type":58,"value":446},{"type":52,"tag":431,"props":9426,"children":9427},{"style":438},[9428],{"type":58,"value":1406},{"type":52,"tag":431,"props":9430,"children":9431},{"class":433,"line":2237},[9432,9436,9440,9444,9448,9452,9457],{"type":52,"tag":431,"props":9433,"children":9434},{"style":438},[9435],{"type":58,"value":1268},{"type":52,"tag":431,"props":9437,"children":9438},{"style":740},[9439],{"type":58,"value":2863},{"type":52,"tag":431,"props":9441,"children":9442},{"style":438},[9443],{"type":58,"value":446},{"type":52,"tag":431,"props":9445,"children":9446},{"style":438},[9447],{"type":58,"value":375},{"type":52,"tag":431,"props":9449,"children":9450},{"style":438},[9451],{"type":58,"value":464},{"type":52,"tag":431,"props":9453,"children":9454},{"style":467},[9455],{"type":58,"value":9456},"30328376-a9e3-4f11-b1eb-2bbaadbea688",{"type":52,"tag":431,"props":9458,"children":9459},{"style":438},[9460],{"type":58,"value":1349},{"type":52,"tag":431,"props":9462,"children":9463},{"class":433,"line":2270},[9464],{"type":52,"tag":431,"props":9465,"children":9466},{"style":438},[9467],{"type":58,"value":1560},{"type":52,"tag":431,"props":9469,"children":9470},{"class":433,"line":2278},[9471],{"type":52,"tag":431,"props":9472,"children":9473},{"style":438},[9474],{"type":58,"value":1259},{"type":52,"tag":431,"props":9476,"children":9477},{"class":433,"line":2286},[9478,9482,9486,9490,9494],{"type":52,"tag":431,"props":9479,"children":9480},{"style":438},[9481],{"type":58,"value":1268},{"type":52,"tag":431,"props":9483,"children":9484},{"style":740},[9485],{"type":58,"value":1273},{"type":52,"tag":431,"props":9487,"children":9488},{"style":438},[9489],{"type":58,"value":446},{"type":52,"tag":431,"props":9491,"children":9492},{"style":438},[9493],{"type":58,"value":375},{"type":52,"tag":431,"props":9495,"children":9496},{"style":438},[9497],{"type":58,"value":1286},{"type":52,"tag":431,"props":9499,"children":9500},{"class":433,"line":2310},[9501,9505,9509,9513,9517],{"type":52,"tag":431,"props":9502,"children":9503},{"style":438},[9504],{"type":58,"value":1295},{"type":52,"tag":431,"props":9506,"children":9507},{"style":763},[9508],{"type":58,"value":1300},{"type":52,"tag":431,"props":9510,"children":9511},{"style":438},[9512],{"type":58,"value":446},{"type":52,"tag":431,"props":9514,"children":9515},{"style":438},[9516],{"type":58,"value":375},{"type":52,"tag":431,"props":9518,"children":9519},{"style":438},[9520],{"type":58,"value":1286},{"type":52,"tag":431,"props":9522,"children":9523},{"class":433,"line":2347},[9524,9528,9532,9536,9540,9544,9549],{"type":52,"tag":431,"props":9525,"children":9526},{"style":438},[9527],{"type":58,"value":1321},{"type":52,"tag":431,"props":9529,"children":9530},{"style":1324},[9531],{"type":58,"value":1327},{"type":52,"tag":431,"props":9533,"children":9534},{"style":438},[9535],{"type":58,"value":446},{"type":52,"tag":431,"props":9537,"children":9538},{"style":438},[9539],{"type":58,"value":375},{"type":52,"tag":431,"props":9541,"children":9542},{"style":438},[9543],{"type":58,"value":464},{"type":52,"tag":431,"props":9545,"children":9546},{"style":467},[9547],{"type":58,"value":9548},"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":52,"tag":431,"props":9550,"children":9551},{"style":438},[9552],{"type":58,"value":1349},{"type":52,"tag":431,"props":9554,"children":9555},{"class":433,"line":2376},[9556],{"type":52,"tag":431,"props":9557,"children":9558},{"style":438},[9559],{"type":58,"value":1358},{"type":52,"tag":431,"props":9561,"children":9562},{"class":433,"line":2404},[9563],{"type":52,"tag":431,"props":9564,"children":9565},{"style":438},[9566],{"type":58,"value":1367},{"type":52,"tag":431,"props":9568,"children":9569},{"class":433,"line":2428},[9570,9574,9578,9582,9586,9590,9594,9598],{"type":52,"tag":431,"props":9571,"children":9572},{"style":438},[9573],{"type":58,"value":1268},{"type":52,"tag":431,"props":9575,"children":9576},{"style":740},[9577],{"type":58,"value":1380},{"type":52,"tag":431,"props":9579,"children":9580},{"style":438},[9581],{"type":58,"value":446},{"type":52,"tag":431,"props":9583,"children":9584},{"style":438},[9585],{"type":58,"value":375},{"type":52,"tag":431,"props":9587,"children":9588},{"style":438},[9589],{"type":58,"value":464},{"type":52,"tag":431,"props":9591,"children":9592},{"style":467},[9593],{"type":58,"value":1397},{"type":52,"tag":431,"props":9595,"children":9596},{"style":438},[9597],{"type":58,"value":446},{"type":52,"tag":431,"props":9599,"children":9600},{"style":438},[9601],{"type":58,"value":1406},{"type":52,"tag":431,"props":9603,"children":9604},{"class":433,"line":2436},[9605,9609,9613,9617,9621,9625],{"type":52,"tag":431,"props":9606,"children":9607},{"style":438},[9608],{"type":58,"value":1268},{"type":52,"tag":431,"props":9610,"children":9611},{"style":740},[9612],{"type":58,"value":1419},{"type":52,"tag":431,"props":9614,"children":9615},{"style":438},[9616],{"type":58,"value":446},{"type":52,"tag":431,"props":9618,"children":9619},{"style":438},[9620],{"type":58,"value":375},{"type":52,"tag":431,"props":9622,"children":9623},{"style":763},[9624],{"type":58,"value":1432},{"type":52,"tag":431,"props":9626,"children":9627},{"style":438},[9628],{"type":58,"value":1406},{"type":52,"tag":431,"props":9630,"children":9631},{"class":433,"line":2472},[9632,9636,9640,9644,9648,9652,9657,9661,9665],{"type":52,"tag":431,"props":9633,"children":9634},{"style":438},[9635],{"type":58,"value":1268},{"type":52,"tag":431,"props":9637,"children":9638},{"style":740},[9639],{"type":58,"value":1449},{"type":52,"tag":431,"props":9641,"children":9642},{"style":438},[9643],{"type":58,"value":446},{"type":52,"tag":431,"props":9645,"children":9646},{"style":438},[9647],{"type":58,"value":375},{"type":52,"tag":431,"props":9649,"children":9650},{"style":438},[9651],{"type":58,"value":1462},{"type":52,"tag":431,"props":9653,"children":9654},{"style":763},[9655],{"type":58,"value":9656},"-336",{"type":52,"tag":431,"props":9658,"children":9659},{"style":438},[9660],{"type":58,"value":479},{"type":52,"tag":431,"props":9662,"children":9663},{"style":763},[9664],{"type":58,"value":9352},{"type":52,"tag":431,"props":9666,"children":9667},{"style":438},[9668],{"type":58,"value":1481},{"type":52,"tag":431,"props":9670,"children":9671},{"class":433,"line":2513},[9672,9676,9680,9684,9688,9692,9697,9701],{"type":52,"tag":431,"props":9673,"children":9674},{"style":438},[9675],{"type":58,"value":1268},{"type":52,"tag":431,"props":9677,"children":9678},{"style":740},[9679],{"type":58,"value":1493},{"type":52,"tag":431,"props":9681,"children":9682},{"style":438},[9683],{"type":58,"value":446},{"type":52,"tag":431,"props":9685,"children":9686},{"style":438},[9687],{"type":58,"value":375},{"type":52,"tag":431,"props":9689,"children":9690},{"style":438},[9691],{"type":58,"value":464},{"type":52,"tag":431,"props":9693,"children":9694},{"style":467},[9695],{"type":58,"value":9696},"36bb8361-edfd-47ff-aaf1-48f3c31fb1f7",{"type":52,"tag":431,"props":9698,"children":9699},{"style":438},[9700],{"type":58,"value":446},{"type":52,"tag":431,"props":9702,"children":9703},{"style":438},[9704],{"type":58,"value":1406},{"type":52,"tag":431,"props":9706,"children":9707},{"class":433,"line":2541},[9708,9712,9716,9720,9724,9728,9732],{"type":52,"tag":431,"props":9709,"children":9710},{"style":438},[9711],{"type":58,"value":1268},{"type":52,"tag":431,"props":9713,"children":9714},{"style":740},[9715],{"type":58,"value":410},{"type":52,"tag":431,"props":9717,"children":9718},{"style":438},[9719],{"type":58,"value":446},{"type":52,"tag":431,"props":9721,"children":9722},{"style":438},[9723],{"type":58,"value":375},{"type":52,"tag":431,"props":9725,"children":9726},{"style":438},[9727],{"type":58,"value":464},{"type":52,"tag":431,"props":9729,"children":9730},{"style":467},[9731],{"type":58,"value":1547},{"type":52,"tag":431,"props":9733,"children":9734},{"style":438},[9735],{"type":58,"value":1349},{"type":52,"tag":431,"props":9737,"children":9738},{"class":433,"line":2578},[9739],{"type":52,"tag":431,"props":9740,"children":9741},{"style":438},[9742],{"type":58,"value":1560},{"type":52,"tag":431,"props":9744,"children":9745},{"class":433,"line":2611},[9746],{"type":52,"tag":431,"props":9747,"children":9748},{"style":438},[9749],{"type":58,"value":1259},{"type":52,"tag":431,"props":9751,"children":9752},{"class":433,"line":2619},[9753,9757,9761,9765,9769],{"type":52,"tag":431,"props":9754,"children":9755},{"style":438},[9756],{"type":58,"value":1268},{"type":52,"tag":431,"props":9758,"children":9759},{"style":740},[9760],{"type":58,"value":1273},{"type":52,"tag":431,"props":9762,"children":9763},{"style":438},[9764],{"type":58,"value":446},{"type":52,"tag":431,"props":9766,"children":9767},{"style":438},[9768],{"type":58,"value":375},{"type":52,"tag":431,"props":9770,"children":9771},{"style":438},[9772],{"type":58,"value":1286},{"type":52,"tag":431,"props":9774,"children":9775},{"class":433,"line":2627},[9776,9780,9784,9788,9792],{"type":52,"tag":431,"props":9777,"children":9778},{"style":438},[9779],{"type":58,"value":1295},{"type":52,"tag":431,"props":9781,"children":9782},{"style":763},[9783],{"type":58,"value":1605},{"type":52,"tag":431,"props":9785,"children":9786},{"style":438},[9787],{"type":58,"value":446},{"type":52,"tag":431,"props":9789,"children":9790},{"style":438},[9791],{"type":58,"value":375},{"type":52,"tag":431,"props":9793,"children":9794},{"style":438},[9795],{"type":58,"value":1286},{"type":52,"tag":431,"props":9797,"children":9798},{"class":433,"line":2672},[9799,9803,9807,9811,9815],{"type":52,"tag":431,"props":9800,"children":9801},{"style":438},[9802],{"type":58,"value":1321},{"type":52,"tag":431,"props":9804,"children":9805},{"style":1324},[9806],{"type":58,"value":1626},{"type":52,"tag":431,"props":9808,"children":9809},{"style":438},[9810],{"type":58,"value":446},{"type":52,"tag":431,"props":9812,"children":9813},{"style":438},[9814],{"type":58,"value":375},{"type":52,"tag":431,"props":9816,"children":9817},{"style":438},[9818],{"type":58,"value":7758},{"type":52,"tag":431,"props":9820,"children":9821},{"class":433,"line":2709},[9822,9826,9830,9834,9838,9842,9846,9850],{"type":52,"tag":431,"props":9823,"children":9824},{"style":438},[9825],{"type":58,"value":1321},{"type":52,"tag":431,"props":9827,"children":9828},{"style":1324},[9829],{"type":58,"value":800},{"type":52,"tag":431,"props":9831,"children":9832},{"style":438},[9833],{"type":58,"value":446},{"type":52,"tag":431,"props":9835,"children":9836},{"style":438},[9837],{"type":58,"value":375},{"type":52,"tag":431,"props":9839,"children":9840},{"style":438},[9841],{"type":58,"value":464},{"type":52,"tag":431,"props":9843,"children":9844},{"style":467},[9845],{"type":58,"value":1194},{"type":52,"tag":431,"props":9847,"children":9848},{"style":438},[9849],{"type":58,"value":446},{"type":52,"tag":431,"props":9851,"children":9852},{"style":438},[9853],{"type":58,"value":1406},{"type":52,"tag":431,"props":9855,"children":9856},{"class":433,"line":2738},[9857,9861,9865,9869,9873,9877,9881,9885],{"type":52,"tag":431,"props":9858,"children":9859},{"style":438},[9860],{"type":58,"value":1321},{"type":52,"tag":431,"props":9862,"children":9863},{"style":1324},[9864],{"type":58,"value":1648},{"type":52,"tag":431,"props":9866,"children":9867},{"style":438},[9868],{"type":58,"value":446},{"type":52,"tag":431,"props":9870,"children":9871},{"style":438},[9872],{"type":58,"value":375},{"type":52,"tag":431,"props":9874,"children":9875},{"style":438},[9876],{"type":58,"value":464},{"type":52,"tag":431,"props":9878,"children":9879},{"style":467},[9880],{"type":58,"value":1665},{"type":52,"tag":431,"props":9882,"children":9883},{"style":438},[9884],{"type":58,"value":446},{"type":52,"tag":431,"props":9886,"children":9887},{"style":438},[9888],{"type":58,"value":1406},{"type":52,"tag":431,"props":9890,"children":9891},{"class":433,"line":2779},[9892,9896,9900,9904,9908,9912,9916],{"type":52,"tag":431,"props":9893,"children":9894},{"style":438},[9895],{"type":58,"value":1321},{"type":52,"tag":431,"props":9897,"children":9898},{"style":1324},[9899],{"type":58,"value":8706},{"type":52,"tag":431,"props":9901,"children":9902},{"style":438},[9903],{"type":58,"value":446},{"type":52,"tag":431,"props":9905,"children":9906},{"style":438},[9907],{"type":58,"value":375},{"type":52,"tag":431,"props":9909,"children":9910},{"style":438},[9911],{"type":58,"value":464},{"type":52,"tag":431,"props":9913,"children":9914},{"style":467},[9915],{"type":58,"value":1194},{"type":52,"tag":431,"props":9917,"children":9918},{"style":438},[9919],{"type":58,"value":1349},{"type":52,"tag":431,"props":9921,"children":9922},{"class":433,"line":2816},[9923],{"type":52,"tag":431,"props":9924,"children":9925},{"style":438},[9926],{"type":58,"value":3371},{"type":52,"tag":431,"props":9928,"children":9929},{"class":433,"line":2853},[9930,9934,9938,9942,9946],{"type":52,"tag":431,"props":9931,"children":9932},{"style":438},[9933],{"type":58,"value":1295},{"type":52,"tag":431,"props":9935,"children":9936},{"style":763},[9937],{"type":58,"value":1300},{"type":52,"tag":431,"props":9939,"children":9940},{"style":438},[9941],{"type":58,"value":446},{"type":52,"tag":431,"props":9943,"children":9944},{"style":438},[9945],{"type":58,"value":375},{"type":52,"tag":431,"props":9947,"children":9948},{"style":438},[9949],{"type":58,"value":1731},{"type":52,"tag":431,"props":9951,"children":9952},{"class":433,"line":2887},[9953],{"type":52,"tag":431,"props":9954,"children":9955},{"style":438},[9956],{"type":58,"value":1367},{"type":52,"tag":431,"props":9958,"children":9959},{"class":433,"line":2895},[9960,9964,9968,9972,9976,9980,9984,9988],{"type":52,"tag":431,"props":9961,"children":9962},{"style":438},[9963],{"type":58,"value":1268},{"type":52,"tag":431,"props":9965,"children":9966},{"style":740},[9967],{"type":58,"value":1380},{"type":52,"tag":431,"props":9969,"children":9970},{"style":438},[9971],{"type":58,"value":446},{"type":52,"tag":431,"props":9973,"children":9974},{"style":438},[9975],{"type":58,"value":375},{"type":52,"tag":431,"props":9977,"children":9978},{"style":438},[9979],{"type":58,"value":464},{"type":52,"tag":431,"props":9981,"children":9982},{"style":467},[9983],{"type":58,"value":1768},{"type":52,"tag":431,"props":9985,"children":9986},{"style":438},[9987],{"type":58,"value":446},{"type":52,"tag":431,"props":9989,"children":9990},{"style":438},[9991],{"type":58,"value":1406},{"type":52,"tag":431,"props":9993,"children":9994},{"class":433,"line":2903},[9995,9999,10003,10007,10011,10015],{"type":52,"tag":431,"props":9996,"children":9997},{"style":438},[9998],{"type":58,"value":1268},{"type":52,"tag":431,"props":10000,"children":10001},{"style":740},[10002],{"type":58,"value":1419},{"type":52,"tag":431,"props":10004,"children":10005},{"style":438},[10006],{"type":58,"value":446},{"type":52,"tag":431,"props":10008,"children":10009},{"style":438},[10010],{"type":58,"value":375},{"type":52,"tag":431,"props":10012,"children":10013},{"style":763},[10014],{"type":58,"value":1801},{"type":52,"tag":431,"props":10016,"children":10017},{"style":438},[10018],{"type":58,"value":1406},{"type":52,"tag":431,"props":10020,"children":10021},{"class":433,"line":2928},[10022,10026,10030,10034,10038,10042,10046,10050,10055],{"type":52,"tag":431,"props":10023,"children":10024},{"style":438},[10025],{"type":58,"value":1268},{"type":52,"tag":431,"props":10027,"children":10028},{"style":740},[10029],{"type":58,"value":1449},{"type":52,"tag":431,"props":10031,"children":10032},{"style":438},[10033],{"type":58,"value":446},{"type":52,"tag":431,"props":10035,"children":10036},{"style":438},[10037],{"type":58,"value":375},{"type":52,"tag":431,"props":10039,"children":10040},{"style":438},[10041],{"type":58,"value":1462},{"type":52,"tag":431,"props":10043,"children":10044},{"style":763},[10045],{"type":58,"value":9656},{"type":52,"tag":431,"props":10047,"children":10048},{"style":438},[10049],{"type":58,"value":479},{"type":52,"tag":431,"props":10051,"children":10052},{"style":763},[10053],{"type":58,"value":10054}," 1200",{"type":52,"tag":431,"props":10056,"children":10057},{"style":438},[10058],{"type":58,"value":1481},{"type":52,"tag":431,"props":10060,"children":10061},{"class":433,"line":2965},[10062,10066,10070,10074,10078,10082,10087,10091],{"type":52,"tag":431,"props":10063,"children":10064},{"style":438},[10065],{"type":58,"value":1268},{"type":52,"tag":431,"props":10067,"children":10068},{"style":740},[10069],{"type":58,"value":1493},{"type":52,"tag":431,"props":10071,"children":10072},{"style":438},[10073],{"type":58,"value":446},{"type":52,"tag":431,"props":10075,"children":10076},{"style":438},[10077],{"type":58,"value":375},{"type":52,"tag":431,"props":10079,"children":10080},{"style":438},[10081],{"type":58,"value":464},{"type":52,"tag":431,"props":10083,"children":10084},{"style":467},[10085],{"type":58,"value":10086},"22d00f25-44eb-40c1-8dae-b757e4b66690",{"type":52,"tag":431,"props":10088,"children":10089},{"style":438},[10090],{"type":58,"value":446},{"type":52,"tag":431,"props":10092,"children":10093},{"style":438},[10094],{"type":58,"value":1406},{"type":52,"tag":431,"props":10096,"children":10097},{"class":433,"line":2993},[10098,10102,10106,10110,10114,10118,10122],{"type":52,"tag":431,"props":10099,"children":10100},{"style":438},[10101],{"type":58,"value":1268},{"type":52,"tag":431,"props":10103,"children":10104},{"style":740},[10105],{"type":58,"value":410},{"type":52,"tag":431,"props":10107,"children":10108},{"style":438},[10109],{"type":58,"value":446},{"type":52,"tag":431,"props":10111,"children":10112},{"style":438},[10113],{"type":58,"value":375},{"type":52,"tag":431,"props":10115,"children":10116},{"style":438},[10117],{"type":58,"value":464},{"type":52,"tag":431,"props":10119,"children":10120},{"style":467},[10121],{"type":58,"value":1913},{"type":52,"tag":431,"props":10123,"children":10124},{"style":438},[10125],{"type":58,"value":1349},{"type":52,"tag":431,"props":10127,"children":10128},{"class":433,"line":3035},[10129],{"type":52,"tag":431,"props":10130,"children":10131},{"style":438},[10132],{"type":58,"value":1560},{"type":52,"tag":431,"props":10134,"children":10135},{"class":433,"line":24},[10136],{"type":52,"tag":431,"props":10137,"children":10138},{"style":438},[10139],{"type":58,"value":1259},{"type":52,"tag":431,"props":10141,"children":10142},{"class":433,"line":3104},[10143,10147,10151,10155,10159],{"type":52,"tag":431,"props":10144,"children":10145},{"style":438},[10146],{"type":58,"value":1268},{"type":52,"tag":431,"props":10148,"children":10149},{"style":740},[10150],{"type":58,"value":1273},{"type":52,"tag":431,"props":10152,"children":10153},{"style":438},[10154],{"type":58,"value":446},{"type":52,"tag":431,"props":10156,"children":10157},{"style":438},[10158],{"type":58,"value":375},{"type":52,"tag":431,"props":10160,"children":10161},{"style":438},[10162],{"type":58,"value":1286},{"type":52,"tag":431,"props":10164,"children":10165},{"class":433,"line":3112},[10166,10170,10174,10178,10182,10186,10190,10194],{"type":52,"tag":431,"props":10167,"children":10168},{"style":438},[10169],{"type":58,"value":1295},{"type":52,"tag":431,"props":10171,"children":10172},{"style":763},[10173],{"type":58,"value":1648},{"type":52,"tag":431,"props":10175,"children":10176},{"style":438},[10177],{"type":58,"value":446},{"type":52,"tag":431,"props":10179,"children":10180},{"style":438},[10181],{"type":58,"value":375},{"type":52,"tag":431,"props":10183,"children":10184},{"style":438},[10185],{"type":58,"value":464},{"type":52,"tag":431,"props":10187,"children":10188},{"style":467},[10189],{"type":58,"value":8106},{"type":52,"tag":431,"props":10191,"children":10192},{"style":438},[10193],{"type":58,"value":446},{"type":52,"tag":431,"props":10195,"children":10196},{"style":438},[10197],{"type":58,"value":1406},{"type":52,"tag":431,"props":10199,"children":10200},{"class":433,"line":3120},[10201,10205,10209,10213,10217,10221,10225,10229],{"type":52,"tag":431,"props":10202,"children":10203},{"style":438},[10204],{"type":58,"value":1295},{"type":52,"tag":431,"props":10206,"children":10207},{"style":763},[10208],{"type":58,"value":8192},{"type":52,"tag":431,"props":10210,"children":10211},{"style":438},[10212],{"type":58,"value":446},{"type":52,"tag":431,"props":10214,"children":10215},{"style":438},[10216],{"type":58,"value":375},{"type":52,"tag":431,"props":10218,"children":10219},{"style":438},[10220],{"type":58,"value":464},{"type":52,"tag":431,"props":10222,"children":10223},{"style":467},[10224],{"type":58,"value":8474},{"type":52,"tag":431,"props":10226,"children":10227},{"style":438},[10228],{"type":58,"value":446},{"type":52,"tag":431,"props":10230,"children":10231},{"style":438},[10232],{"type":58,"value":1406},{"type":52,"tag":431,"props":10234,"children":10235},{"class":433,"line":3144},[10236,10240,10244,10248,10252],{"type":52,"tag":431,"props":10237,"children":10238},{"style":438},[10239],{"type":58,"value":1295},{"type":52,"tag":431,"props":10241,"children":10242},{"style":763},[10243],{"type":58,"value":8320},{"type":52,"tag":431,"props":10245,"children":10246},{"style":438},[10247],{"type":58,"value":446},{"type":52,"tag":431,"props":10249,"children":10250},{"style":438},[10251],{"type":58,"value":375},{"type":52,"tag":431,"props":10253,"children":10254},{"style":438},[10255],{"type":58,"value":1286},{"type":52,"tag":431,"props":10257,"children":10258},{"class":433,"line":3169},[10259,10263,10267,10271,10275],{"type":52,"tag":431,"props":10260,"children":10261},{"style":438},[10262],{"type":58,"value":1321},{"type":52,"tag":431,"props":10264,"children":10265},{"style":1324},[10266],{"type":58,"value":1626},{"type":52,"tag":431,"props":10268,"children":10269},{"style":438},[10270],{"type":58,"value":446},{"type":52,"tag":431,"props":10272,"children":10273},{"style":438},[10274],{"type":58,"value":375},{"type":52,"tag":431,"props":10276,"children":10277},{"style":438},[10278],{"type":58,"value":7758},{"type":52,"tag":431,"props":10280,"children":10281},{"class":433,"line":3193},[10282,10286,10290,10294,10298,10302,10306,10310],{"type":52,"tag":431,"props":10283,"children":10284},{"style":438},[10285],{"type":58,"value":1321},{"type":52,"tag":431,"props":10287,"children":10288},{"style":1324},[10289],{"type":58,"value":800},{"type":52,"tag":431,"props":10291,"children":10292},{"style":438},[10293],{"type":58,"value":446},{"type":52,"tag":431,"props":10295,"children":10296},{"style":438},[10297],{"type":58,"value":375},{"type":52,"tag":431,"props":10299,"children":10300},{"style":438},[10301],{"type":58,"value":464},{"type":52,"tag":431,"props":10303,"children":10304},{"style":467},[10305],{"type":58,"value":8425},{"type":52,"tag":431,"props":10307,"children":10308},{"style":438},[10309],{"type":58,"value":446},{"type":52,"tag":431,"props":10311,"children":10312},{"style":438},[10313],{"type":58,"value":1406},{"type":52,"tag":431,"props":10315,"children":10316},{"class":433,"line":3202},[10317,10321,10325,10329,10333,10337,10341,10345],{"type":52,"tag":431,"props":10318,"children":10319},{"style":438},[10320],{"type":58,"value":1321},{"type":52,"tag":431,"props":10322,"children":10323},{"style":1324},[10324],{"type":58,"value":1648},{"type":52,"tag":431,"props":10326,"children":10327},{"style":438},[10328],{"type":58,"value":446},{"type":52,"tag":431,"props":10330,"children":10331},{"style":438},[10332],{"type":58,"value":375},{"type":52,"tag":431,"props":10334,"children":10335},{"style":438},[10336],{"type":58,"value":464},{"type":52,"tag":431,"props":10338,"children":10339},{"style":467},[10340],{"type":58,"value":1665},{"type":52,"tag":431,"props":10342,"children":10343},{"style":438},[10344],{"type":58,"value":446},{"type":52,"tag":431,"props":10346,"children":10347},{"style":438},[10348],{"type":58,"value":1406},{"type":52,"tag":431,"props":10350,"children":10351},{"class":433,"line":3241},[10352,10356,10360,10364,10368,10372,10376],{"type":52,"tag":431,"props":10353,"children":10354},{"style":438},[10355],{"type":58,"value":1321},{"type":52,"tag":431,"props":10357,"children":10358},{"style":1324},[10359],{"type":58,"value":8706},{"type":52,"tag":431,"props":10361,"children":10362},{"style":438},[10363],{"type":58,"value":446},{"type":52,"tag":431,"props":10365,"children":10366},{"style":438},[10367],{"type":58,"value":375},{"type":52,"tag":431,"props":10369,"children":10370},{"style":438},[10371],{"type":58,"value":464},{"type":52,"tag":431,"props":10373,"children":10374},{"style":467},[10375],{"type":58,"value":8425},{"type":52,"tag":431,"props":10377,"children":10378},{"style":438},[10379],{"type":58,"value":1349},{"type":52,"tag":431,"props":10381,"children":10382},{"class":433,"line":3278},[10383],{"type":52,"tag":431,"props":10384,"children":10385},{"style":438},[10386],{"type":58,"value":3371},{"type":52,"tag":431,"props":10388,"children":10389},{"class":433,"line":3314},[10390,10394,10398,10402,10406,10411],{"type":52,"tag":431,"props":10391,"children":10392},{"style":438},[10393],{"type":58,"value":1295},{"type":52,"tag":431,"props":10395,"children":10396},{"style":763},[10397],{"type":58,"value":7794},{"type":52,"tag":431,"props":10399,"children":10400},{"style":438},[10401],{"type":58,"value":446},{"type":52,"tag":431,"props":10403,"children":10404},{"style":438},[10405],{"type":58,"value":375},{"type":52,"tag":431,"props":10407,"children":10408},{"style":763},[10409],{"type":58,"value":10410}," 20",{"type":52,"tag":431,"props":10412,"children":10413},{"style":438},[10414],{"type":58,"value":1406},{"type":52,"tag":431,"props":10416,"children":10417},{"class":433,"line":3347},[10418,10422,10426,10430,10434],{"type":52,"tag":431,"props":10419,"children":10420},{"style":438},[10421],{"type":58,"value":1295},{"type":52,"tag":431,"props":10423,"children":10424},{"style":763},[10425],{"type":58,"value":1300},{"type":52,"tag":431,"props":10427,"children":10428},{"style":438},[10429],{"type":58,"value":446},{"type":52,"tag":431,"props":10431,"children":10432},{"style":438},[10433],{"type":58,"value":375},{"type":52,"tag":431,"props":10435,"children":10436},{"style":438},[10437],{"type":58,"value":1731},{"type":52,"tag":431,"props":10439,"children":10440},{"class":433,"line":3356},[10441],{"type":52,"tag":431,"props":10442,"children":10443},{"style":438},[10444],{"type":58,"value":1367},{"type":52,"tag":431,"props":10446,"children":10447},{"class":433,"line":3365},[10448,10452,10456,10460,10464,10468,10472,10476],{"type":52,"tag":431,"props":10449,"children":10450},{"style":438},[10451],{"type":58,"value":1268},{"type":52,"tag":431,"props":10453,"children":10454},{"style":740},[10455],{"type":58,"value":1380},{"type":52,"tag":431,"props":10457,"children":10458},{"style":438},[10459],{"type":58,"value":446},{"type":52,"tag":431,"props":10461,"children":10462},{"style":438},[10463],{"type":58,"value":375},{"type":52,"tag":431,"props":10465,"children":10466},{"style":438},[10467],{"type":58,"value":464},{"type":52,"tag":431,"props":10469,"children":10470},{"style":467},[10471],{"type":58,"value":105},{"type":52,"tag":431,"props":10473,"children":10474},{"style":438},[10475],{"type":58,"value":446},{"type":52,"tag":431,"props":10477,"children":10478},{"style":438},[10479],{"type":58,"value":1406},{"type":52,"tag":431,"props":10481,"children":10482},{"class":433,"line":3374},[10483,10487,10491,10495,10499,10503],{"type":52,"tag":431,"props":10484,"children":10485},{"style":438},[10486],{"type":58,"value":1268},{"type":52,"tag":431,"props":10488,"children":10489},{"style":740},[10490],{"type":58,"value":1419},{"type":52,"tag":431,"props":10492,"children":10493},{"style":438},[10494],{"type":58,"value":446},{"type":52,"tag":431,"props":10496,"children":10497},{"style":438},[10498],{"type":58,"value":375},{"type":52,"tag":431,"props":10500,"children":10501},{"style":763},[10502],{"type":58,"value":2731},{"type":52,"tag":431,"props":10504,"children":10505},{"style":438},[10506],{"type":58,"value":1406},{"type":52,"tag":431,"props":10508,"children":10509},{"class":433,"line":3398},[10510,10514,10518,10522,10526,10530,10535,10539,10543],{"type":52,"tag":431,"props":10511,"children":10512},{"style":438},[10513],{"type":58,"value":1268},{"type":52,"tag":431,"props":10515,"children":10516},{"style":740},[10517],{"type":58,"value":1449},{"type":52,"tag":431,"props":10519,"children":10520},{"style":438},[10521],{"type":58,"value":446},{"type":52,"tag":431,"props":10523,"children":10524},{"style":438},[10525],{"type":58,"value":375},{"type":52,"tag":431,"props":10527,"children":10528},{"style":438},[10529],{"type":58,"value":1462},{"type":52,"tag":431,"props":10531,"children":10532},{"style":763},[10533],{"type":58,"value":10534},"-16",{"type":52,"tag":431,"props":10536,"children":10537},{"style":438},[10538],{"type":58,"value":479},{"type":52,"tag":431,"props":10540,"children":10541},{"style":763},[10542],{"type":58,"value":2051},{"type":52,"tag":431,"props":10544,"children":10545},{"style":438},[10546],{"type":58,"value":1481},{"type":52,"tag":431,"props":10548,"children":10549},{"class":433,"line":3406},[10550,10554,10558,10562,10566,10570,10575,10579],{"type":52,"tag":431,"props":10551,"children":10552},{"style":438},[10553],{"type":58,"value":1268},{"type":52,"tag":431,"props":10555,"children":10556},{"style":740},[10557],{"type":58,"value":1493},{"type":52,"tag":431,"props":10559,"children":10560},{"style":438},[10561],{"type":58,"value":446},{"type":52,"tag":431,"props":10563,"children":10564},{"style":438},[10565],{"type":58,"value":375},{"type":52,"tag":431,"props":10567,"children":10568},{"style":438},[10569],{"type":58,"value":464},{"type":52,"tag":431,"props":10571,"children":10572},{"style":467},[10573],{"type":58,"value":10574},"15c599b7-93bb-44b7-b95c-190200de2a20",{"type":52,"tag":431,"props":10576,"children":10577},{"style":438},[10578],{"type":58,"value":446},{"type":52,"tag":431,"props":10580,"children":10581},{"style":438},[10582],{"type":58,"value":1406},{"type":52,"tag":431,"props":10584,"children":10585},{"class":433,"line":3443},[10586,10590,10594,10598,10602,10606,10611],{"type":52,"tag":431,"props":10587,"children":10588},{"style":438},[10589],{"type":58,"value":1268},{"type":52,"tag":431,"props":10591,"children":10592},{"style":740},[10593],{"type":58,"value":410},{"type":52,"tag":431,"props":10595,"children":10596},{"style":438},[10597],{"type":58,"value":446},{"type":52,"tag":431,"props":10599,"children":10600},{"style":438},[10601],{"type":58,"value":375},{"type":52,"tag":431,"props":10603,"children":10604},{"style":438},[10605],{"type":58,"value":464},{"type":52,"tag":431,"props":10607,"children":10608},{"style":467},[10609],{"type":58,"value":10610},"Pinecone Vector Store Tool",{"type":52,"tag":431,"props":10612,"children":10613},{"style":438},[10614],{"type":58,"value":1349},{"type":52,"tag":431,"props":10616,"children":10617},{"class":433,"line":3472},[10618],{"type":52,"tag":431,"props":10619,"children":10620},{"style":438},[10621],{"type":58,"value":1560},{"type":52,"tag":431,"props":10623,"children":10624},{"class":433,"line":3513},[10625],{"type":52,"tag":431,"props":10626,"children":10627},{"style":438},[10628],{"type":58,"value":1259},{"type":52,"tag":431,"props":10630,"children":10631},{"class":433,"line":3550},[10632,10636,10640,10644,10648],{"type":52,"tag":431,"props":10633,"children":10634},{"style":438},[10635],{"type":58,"value":1268},{"type":52,"tag":431,"props":10637,"children":10638},{"style":740},[10639],{"type":58,"value":1273},{"type":52,"tag":431,"props":10641,"children":10642},{"style":438},[10643],{"type":58,"value":446},{"type":52,"tag":431,"props":10645,"children":10646},{"style":438},[10647],{"type":58,"value":375},{"type":52,"tag":431,"props":10649,"children":10650},{"style":438},[10651],{"type":58,"value":1286},{"type":52,"tag":431,"props":10653,"children":10654},{"class":433,"line":3583},[10655,10659,10663,10667,10671,10675,10680,10684],{"type":52,"tag":431,"props":10656,"children":10657},{"style":438},[10658],{"type":58,"value":1295},{"type":52,"tag":431,"props":10660,"children":10661},{"style":763},[10662],{"type":58,"value":1970},{"type":52,"tag":431,"props":10664,"children":10665},{"style":438},[10666],{"type":58,"value":446},{"type":52,"tag":431,"props":10668,"children":10669},{"style":438},[10670],{"type":58,"value":375},{"type":52,"tag":431,"props":10672,"children":10673},{"style":438},[10674],{"type":58,"value":464},{"type":52,"tag":431,"props":10676,"children":10677},{"style":467},[10678],{"type":58,"value":10679},"## 1. Process new files, embed, and upsert to Pinecone index",{"type":52,"tag":431,"props":10681,"children":10682},{"style":438},[10683],{"type":58,"value":446},{"type":52,"tag":431,"props":10685,"children":10686},{"style":438},[10687],{"type":58,"value":1406},{"type":52,"tag":431,"props":10689,"children":10690},{"class":433,"line":3591},[10691,10695,10699,10703,10707,10712],{"type":52,"tag":431,"props":10692,"children":10693},{"style":438},[10694],{"type":58,"value":1295},{"type":52,"tag":431,"props":10696,"children":10697},{"style":763},[10698],{"type":58,"value":2008},{"type":52,"tag":431,"props":10700,"children":10701},{"style":438},[10702],{"type":58,"value":446},{"type":52,"tag":431,"props":10704,"children":10705},{"style":438},[10706],{"type":58,"value":375},{"type":52,"tag":431,"props":10708,"children":10709},{"style":763},[10710],{"type":58,"value":10711}," 576",{"type":52,"tag":431,"props":10713,"children":10714},{"style":438},[10715],{"type":58,"value":1406},{"type":52,"tag":431,"props":10717,"children":10718},{"class":433,"line":3599},[10719,10723,10727,10731,10735,10740],{"type":52,"tag":431,"props":10720,"children":10721},{"style":438},[10722],{"type":58,"value":1295},{"type":52,"tag":431,"props":10724,"children":10725},{"style":763},[10726],{"type":58,"value":2038},{"type":52,"tag":431,"props":10728,"children":10729},{"style":438},[10730],{"type":58,"value":446},{"type":52,"tag":431,"props":10732,"children":10733},{"style":438},[10734],{"type":58,"value":375},{"type":52,"tag":431,"props":10736,"children":10737},{"style":763},[10738],{"type":58,"value":10739}," 1744",{"type":52,"tag":431,"props":10741,"children":10742},{"style":438},[10743],{"type":58,"value":1406},{"type":52,"tag":431,"props":10745,"children":10746},{"class":433,"line":3676},[10747,10751,10755,10759,10763],{"type":52,"tag":431,"props":10748,"children":10749},{"style":438},[10750],{"type":58,"value":1295},{"type":52,"tag":431,"props":10752,"children":10753},{"style":763},[10754],{"type":58,"value":2068},{"type":52,"tag":431,"props":10756,"children":10757},{"style":438},[10758],{"type":58,"value":446},{"type":52,"tag":431,"props":10760,"children":10761},{"style":438},[10762],{"type":58,"value":375},{"type":52,"tag":431,"props":10764,"children":10765},{"style":763},[10766],{"type":58,"value":2081},{"type":52,"tag":431,"props":10768,"children":10769},{"class":433,"line":3713},[10770],{"type":52,"tag":431,"props":10771,"children":10772},{"style":438},[10773],{"type":58,"value":1367},{"type":52,"tag":431,"props":10775,"children":10776},{"class":433,"line":3741},[10777,10781,10785,10789,10793,10797,10801,10805],{"type":52,"tag":431,"props":10778,"children":10779},{"style":438},[10780],{"type":58,"value":1268},{"type":52,"tag":431,"props":10782,"children":10783},{"style":740},[10784],{"type":58,"value":1380},{"type":52,"tag":431,"props":10786,"children":10787},{"style":438},[10788],{"type":58,"value":446},{"type":52,"tag":431,"props":10790,"children":10791},{"style":438},[10792],{"type":58,"value":375},{"type":52,"tag":431,"props":10794,"children":10795},{"style":438},[10796],{"type":58,"value":464},{"type":52,"tag":431,"props":10798,"children":10799},{"style":467},[10800],{"type":58,"value":2118},{"type":52,"tag":431,"props":10802,"children":10803},{"style":438},[10804],{"type":58,"value":446},{"type":52,"tag":431,"props":10806,"children":10807},{"style":438},[10808],{"type":58,"value":1406},{"type":52,"tag":431,"props":10810,"children":10811},{"class":433,"line":3782},[10812,10816,10820,10824,10828,10832,10837,10841,10846],{"type":52,"tag":431,"props":10813,"children":10814},{"style":438},[10815],{"type":58,"value":1268},{"type":52,"tag":431,"props":10817,"children":10818},{"style":740},[10819],{"type":58,"value":1449},{"type":52,"tag":431,"props":10821,"children":10822},{"style":438},[10823],{"type":58,"value":446},{"type":52,"tag":431,"props":10825,"children":10826},{"style":438},[10827],{"type":58,"value":375},{"type":52,"tag":431,"props":10829,"children":10830},{"style":438},[10831],{"type":58,"value":1462},{"type":52,"tag":431,"props":10833,"children":10834},{"style":763},[10835],{"type":58,"value":10836},"-608",{"type":52,"tag":431,"props":10838,"children":10839},{"style":438},[10840],{"type":58,"value":479},{"type":52,"tag":431,"props":10842,"children":10843},{"style":763},[10844],{"type":58,"value":10845}," -80",{"type":52,"tag":431,"props":10847,"children":10848},{"style":438},[10849],{"type":58,"value":1481},{"type":52,"tag":431,"props":10851,"children":10852},{"class":433,"line":3819},[10853,10857,10861,10865,10869,10873],{"type":52,"tag":431,"props":10854,"children":10855},{"style":438},[10856],{"type":58,"value":1268},{"type":52,"tag":431,"props":10858,"children":10859},{"style":740},[10860],{"type":58,"value":1419},{"type":52,"tag":431,"props":10862,"children":10863},{"style":438},[10864],{"type":58,"value":446},{"type":52,"tag":431,"props":10866,"children":10867},{"style":438},[10868],{"type":58,"value":375},{"type":52,"tag":431,"props":10870,"children":10871},{"style":763},[10872],{"type":58,"value":2193},{"type":52,"tag":431,"props":10874,"children":10875},{"style":438},[10876],{"type":58,"value":1406},{"type":52,"tag":431,"props":10878,"children":10879},{"class":433,"line":3852},[10880,10884,10888,10892,10896,10900,10905,10909],{"type":52,"tag":431,"props":10881,"children":10882},{"style":438},[10883],{"type":58,"value":1268},{"type":52,"tag":431,"props":10885,"children":10886},{"style":740},[10887],{"type":58,"value":1493},{"type":52,"tag":431,"props":10889,"children":10890},{"style":438},[10891],{"type":58,"value":446},{"type":52,"tag":431,"props":10893,"children":10894},{"style":438},[10895],{"type":58,"value":375},{"type":52,"tag":431,"props":10897,"children":10898},{"style":438},[10899],{"type":58,"value":464},{"type":52,"tag":431,"props":10901,"children":10902},{"style":467},[10903],{"type":58,"value":10904},"18f22d77-fb10-4fa7-b942-2fafd7ca30c3",{"type":52,"tag":431,"props":10906,"children":10907},{"style":438},[10908],{"type":58,"value":446},{"type":52,"tag":431,"props":10910,"children":10911},{"style":438},[10912],{"type":58,"value":1406},{"type":52,"tag":431,"props":10914,"children":10915},{"class":433,"line":3860},[10916,10920,10924,10928,10932,10936,10941],{"type":52,"tag":431,"props":10917,"children":10918},{"style":438},[10919],{"type":58,"value":1268},{"type":52,"tag":431,"props":10921,"children":10922},{"style":740},[10923],{"type":58,"value":410},{"type":52,"tag":431,"props":10925,"children":10926},{"style":438},[10927],{"type":58,"value":446},{"type":52,"tag":431,"props":10929,"children":10930},{"style":438},[10931],{"type":58,"value":375},{"type":52,"tag":431,"props":10933,"children":10934},{"style":438},[10935],{"type":58,"value":464},{"type":52,"tag":431,"props":10937,"children":10938},{"style":467},[10939],{"type":58,"value":10940},"Sticky Note",{"type":52,"tag":431,"props":10942,"children":10943},{"style":438},[10944],{"type":58,"value":1349},{"type":52,"tag":431,"props":10946,"children":10947},{"class":433,"line":3868},[10948],{"type":52,"tag":431,"props":10949,"children":10950},{"style":438},[10951],{"type":58,"value":1560},{"type":52,"tag":431,"props":10953,"children":10954},{"class":433,"line":3892},[10955],{"type":52,"tag":431,"props":10956,"children":10957},{"style":438},[10958],{"type":58,"value":1259},{"type":52,"tag":431,"props":10960,"children":10961},{"class":433,"line":3930},[10962,10966,10970,10974,10978],{"type":52,"tag":431,"props":10963,"children":10964},{"style":438},[10965],{"type":58,"value":1268},{"type":52,"tag":431,"props":10967,"children":10968},{"style":740},[10969],{"type":58,"value":1273},{"type":52,"tag":431,"props":10971,"children":10972},{"style":438},[10973],{"type":58,"value":446},{"type":52,"tag":431,"props":10975,"children":10976},{"style":438},[10977],{"type":58,"value":375},{"type":52,"tag":431,"props":10979,"children":10980},{"style":438},[10981],{"type":58,"value":1286},{"type":52,"tag":431,"props":10983,"children":10984},{"class":433,"line":4031},[10985,10989,10993,10997,11001,11005,11009,11013],{"type":52,"tag":431,"props":10986,"children":10987},{"style":438},[10988],{"type":58,"value":1295},{"type":52,"tag":431,"props":10990,"children":10991},{"style":763},[10992],{"type":58,"value":1970},{"type":52,"tag":431,"props":10994,"children":10995},{"style":438},[10996],{"type":58,"value":446},{"type":52,"tag":431,"props":10998,"children":10999},{"style":438},[11000],{"type":58,"value":375},{"type":52,"tag":431,"props":11002,"children":11003},{"style":438},[11004],{"type":58,"value":464},{"type":52,"tag":431,"props":11006,"children":11007},{"style":467},[11008],{"type":58,"value":2336},{"type":52,"tag":431,"props":11010,"children":11011},{"style":438},[11012],{"type":58,"value":446},{"type":52,"tag":431,"props":11014,"children":11015},{"style":438},[11016],{"type":58,"value":1406},{"type":52,"tag":431,"props":11018,"children":11019},{"class":433,"line":4039},[11020,11024,11028,11032,11036,11041],{"type":52,"tag":431,"props":11021,"children":11022},{"style":438},[11023],{"type":58,"value":1295},{"type":52,"tag":431,"props":11025,"children":11026},{"style":763},[11027],{"type":58,"value":2008},{"type":52,"tag":431,"props":11029,"children":11030},{"style":438},[11031],{"type":58,"value":446},{"type":52,"tag":431,"props":11033,"children":11034},{"style":438},[11035],{"type":58,"value":375},{"type":52,"tag":431,"props":11037,"children":11038},{"style":763},[11039],{"type":58,"value":11040}," 640",{"type":52,"tag":431,"props":11042,"children":11043},{"style":438},[11044],{"type":58,"value":1406},{"type":52,"tag":431,"props":11046,"children":11047},{"class":433,"line":4076},[11048,11052,11056,11060,11064,11068],{"type":52,"tag":431,"props":11049,"children":11050},{"style":438},[11051],{"type":58,"value":1295},{"type":52,"tag":431,"props":11053,"children":11054},{"style":763},[11055],{"type":58,"value":2038},{"type":52,"tag":431,"props":11057,"children":11058},{"style":438},[11059],{"type":58,"value":446},{"type":52,"tag":431,"props":11061,"children":11062},{"style":438},[11063],{"type":58,"value":375},{"type":52,"tag":431,"props":11065,"children":11066},{"style":763},[11067],{"type":58,"value":10739},{"type":52,"tag":431,"props":11069,"children":11070},{"style":438},[11071],{"type":58,"value":1406},{"type":52,"tag":431,"props":11073,"children":11074},{"class":433,"line":4105},[11075,11079,11083,11087,11091],{"type":52,"tag":431,"props":11076,"children":11077},{"style":438},[11078],{"type":58,"value":1295},{"type":52,"tag":431,"props":11080,"children":11081},{"style":763},[11082],{"type":58,"value":2068},{"type":52,"tag":431,"props":11084,"children":11085},{"style":438},[11086],{"type":58,"value":446},{"type":52,"tag":431,"props":11088,"children":11089},{"style":438},[11090],{"type":58,"value":375},{"type":52,"tag":431,"props":11092,"children":11093},{"style":763},[11094],{"type":58,"value":2081},{"type":52,"tag":431,"props":11096,"children":11097},{"class":433,"line":4146},[11098],{"type":52,"tag":431,"props":11099,"children":11100},{"style":438},[11101],{"type":58,"value":1367},{"type":52,"tag":431,"props":11103,"children":11104},{"class":433,"line":4183},[11105,11109,11113,11117,11121,11125,11129,11133],{"type":52,"tag":431,"props":11106,"children":11107},{"style":438},[11108],{"type":58,"value":1268},{"type":52,"tag":431,"props":11110,"children":11111},{"style":740},[11112],{"type":58,"value":1380},{"type":52,"tag":431,"props":11114,"children":11115},{"style":438},[11116],{"type":58,"value":446},{"type":52,"tag":431,"props":11118,"children":11119},{"style":438},[11120],{"type":58,"value":375},{"type":52,"tag":431,"props":11122,"children":11123},{"style":438},[11124],{"type":58,"value":464},{"type":52,"tag":431,"props":11126,"children":11127},{"style":467},[11128],{"type":58,"value":2118},{"type":52,"tag":431,"props":11130,"children":11131},{"style":438},[11132],{"type":58,"value":446},{"type":52,"tag":431,"props":11134,"children":11135},{"style":438},[11136],{"type":58,"value":1406},{"type":52,"tag":431,"props":11138,"children":11139},{"class":433,"line":4216},[11140,11144,11148,11152,11156,11160,11164,11168,11172],{"type":52,"tag":431,"props":11141,"children":11142},{"style":438},[11143],{"type":58,"value":1268},{"type":52,"tag":431,"props":11145,"children":11146},{"style":740},[11147],{"type":58,"value":1449},{"type":52,"tag":431,"props":11149,"children":11150},{"style":438},[11151],{"type":58,"value":446},{"type":52,"tag":431,"props":11153,"children":11154},{"style":438},[11155],{"type":58,"value":375},{"type":52,"tag":431,"props":11157,"children":11158},{"style":438},[11159],{"type":58,"value":1462},{"type":52,"tag":431,"props":11161,"children":11162},{"style":763},[11163],{"type":58,"value":10836},{"type":52,"tag":431,"props":11165,"children":11166},{"style":438},[11167],{"type":58,"value":479},{"type":52,"tag":431,"props":11169,"children":11170},{"style":763},[11171],{"type":58,"value":1476},{"type":52,"tag":431,"props":11173,"children":11174},{"style":438},[11175],{"type":58,"value":1481},{"type":52,"tag":431,"props":11177,"children":11178},{"class":433,"line":4224},[11179,11183,11187,11191,11195,11199],{"type":52,"tag":431,"props":11180,"children":11181},{"style":438},[11182],{"type":58,"value":1268},{"type":52,"tag":431,"props":11184,"children":11185},{"style":740},[11186],{"type":58,"value":1419},{"type":52,"tag":431,"props":11188,"children":11189},{"style":438},[11190],{"type":58,"value":446},{"type":52,"tag":431,"props":11192,"children":11193},{"style":438},[11194],{"type":58,"value":375},{"type":52,"tag":431,"props":11196,"children":11197},{"style":763},[11198],{"type":58,"value":2193},{"type":52,"tag":431,"props":11200,"children":11201},{"style":438},[11202],{"type":58,"value":1406},{"type":52,"tag":431,"props":11204,"children":11205},{"class":433,"line":4232},[11206,11210,11214,11218,11222,11226,11231,11235],{"type":52,"tag":431,"props":11207,"children":11208},{"style":438},[11209],{"type":58,"value":1268},{"type":52,"tag":431,"props":11211,"children":11212},{"style":740},[11213],{"type":58,"value":1493},{"type":52,"tag":431,"props":11215,"children":11216},{"style":438},[11217],{"type":58,"value":446},{"type":52,"tag":431,"props":11219,"children":11220},{"style":438},[11221],{"type":58,"value":375},{"type":52,"tag":431,"props":11223,"children":11224},{"style":438},[11225],{"type":58,"value":464},{"type":52,"tag":431,"props":11227,"children":11228},{"style":467},[11229],{"type":58,"value":11230},"7b7be380-821c-4012-8f1a-1606527d2544",{"type":52,"tag":431,"props":11232,"children":11233},{"style":438},[11234],{"type":58,"value":446},{"type":52,"tag":431,"props":11236,"children":11237},{"style":438},[11238],{"type":58,"value":1406},{"type":52,"tag":431,"props":11240,"children":11241},{"class":433,"line":4256},[11242,11246,11250,11254,11258,11262,11266],{"type":52,"tag":431,"props":11243,"children":11244},{"style":438},[11245],{"type":58,"value":1268},{"type":52,"tag":431,"props":11247,"children":11248},{"style":740},[11249],{"type":58,"value":410},{"type":52,"tag":431,"props":11251,"children":11252},{"style":438},[11253],{"type":58,"value":446},{"type":52,"tag":431,"props":11255,"children":11256},{"style":438},[11257],{"type":58,"value":375},{"type":52,"tag":431,"props":11259,"children":11260},{"style":438},[11261],{"type":58,"value":464},{"type":52,"tag":431,"props":11263,"children":11264},{"style":467},[11265],{"type":58,"value":2263},{"type":52,"tag":431,"props":11267,"children":11268},{"style":438},[11269],{"type":58,"value":1349},{"type":52,"tag":431,"props":11271,"children":11272},{"class":433,"line":4293},[11273],{"type":52,"tag":431,"props":11274,"children":11275},{"style":438},[11276],{"type":58,"value":1560},{"type":52,"tag":431,"props":11278,"children":11279},{"class":433,"line":4330},[11280],{"type":52,"tag":431,"props":11281,"children":11282},{"style":438},[11283],{"type":58,"value":1259},{"type":52,"tag":431,"props":11285,"children":11286},{"class":433,"line":4434},[11287,11291,11295,11299,11303],{"type":52,"tag":431,"props":11288,"children":11289},{"style":438},[11290],{"type":58,"value":1268},{"type":52,"tag":431,"props":11292,"children":11293},{"style":740},[11294],{"type":58,"value":1273},{"type":52,"tag":431,"props":11296,"children":11297},{"style":438},[11298],{"type":58,"value":446},{"type":52,"tag":431,"props":11300,"children":11301},{"style":438},[11302],{"type":58,"value":375},{"type":52,"tag":431,"props":11304,"children":11305},{"style":438},[11306],{"type":58,"value":2925},{"type":52,"tag":431,"props":11308,"children":11309},{"class":433,"line":4471},[11310,11314,11318,11322,11326,11330,11334,11338],{"type":52,"tag":431,"props":11311,"children":11312},{"style":438},[11313],{"type":58,"value":1268},{"type":52,"tag":431,"props":11315,"children":11316},{"style":740},[11317],{"type":58,"value":1380},{"type":52,"tag":431,"props":11319,"children":11320},{"style":438},[11321],{"type":58,"value":446},{"type":52,"tag":431,"props":11323,"children":11324},{"style":438},[11325],{"type":58,"value":375},{"type":52,"tag":431,"props":11327,"children":11328},{"style":438},[11329],{"type":58,"value":464},{"type":52,"tag":431,"props":11331,"children":11332},{"style":467},[11333],{"type":58,"value":2954},{"type":52,"tag":431,"props":11335,"children":11336},{"style":438},[11337],{"type":58,"value":446},{"type":52,"tag":431,"props":11339,"children":11340},{"style":438},[11341],{"type":58,"value":1406},{"type":52,"tag":431,"props":11343,"children":11344},{"class":433,"line":4527},[11345,11349,11353,11357,11361,11365],{"type":52,"tag":431,"props":11346,"children":11347},{"style":438},[11348],{"type":58,"value":1268},{"type":52,"tag":431,"props":11350,"children":11351},{"style":740},[11352],{"type":58,"value":1419},{"type":52,"tag":431,"props":11354,"children":11355},{"style":438},[11356],{"type":58,"value":446},{"type":52,"tag":431,"props":11358,"children":11359},{"style":438},[11360],{"type":58,"value":375},{"type":52,"tag":431,"props":11362,"children":11363},{"style":763},[11364],{"type":58,"value":2193},{"type":52,"tag":431,"props":11366,"children":11367},{"style":438},[11368],{"type":58,"value":1406},{"type":52,"tag":431,"props":11370,"children":11371},{"class":433,"line":4535},[11372,11376,11380,11384,11388,11392,11396,11400,11404],{"type":52,"tag":431,"props":11373,"children":11374},{"style":438},[11375],{"type":58,"value":1268},{"type":52,"tag":431,"props":11377,"children":11378},{"style":740},[11379],{"type":58,"value":1449},{"type":52,"tag":431,"props":11381,"children":11382},{"style":438},[11383],{"type":58,"value":446},{"type":52,"tag":431,"props":11385,"children":11386},{"style":438},[11387],{"type":58,"value":375},{"type":52,"tag":431,"props":11389,"children":11390},{"style":438},[11391],{"type":58,"value":1462},{"type":52,"tag":431,"props":11393,"children":11394},{"style":763},[11395],{"type":58,"value":9343},{"type":52,"tag":431,"props":11397,"children":11398},{"style":438},[11399],{"type":58,"value":479},{"type":52,"tag":431,"props":11401,"children":11402},{"style":763},[11403],{"type":58,"value":5268},{"type":52,"tag":431,"props":11405,"children":11406},{"style":438},[11407],{"type":58,"value":1481},{"type":52,"tag":431,"props":11409,"children":11410},{"class":433,"line":4571},[11411,11415,11419,11423,11427,11431,11436,11440],{"type":52,"tag":431,"props":11412,"children":11413},{"style":438},[11414],{"type":58,"value":1268},{"type":52,"tag":431,"props":11416,"children":11417},{"style":740},[11418],{"type":58,"value":1493},{"type":52,"tag":431,"props":11420,"children":11421},{"style":438},[11422],{"type":58,"value":446},{"type":52,"tag":431,"props":11424,"children":11425},{"style":438},[11426],{"type":58,"value":375},{"type":52,"tag":431,"props":11428,"children":11429},{"style":438},[11430],{"type":58,"value":464},{"type":52,"tag":431,"props":11432,"children":11433},{"style":467},[11434],{"type":58,"value":11435},"a0a3b917-765b-445e-9866-d3fc651ef6a8",{"type":52,"tag":431,"props":11437,"children":11438},{"style":438},[11439],{"type":58,"value":446},{"type":52,"tag":431,"props":11441,"children":11442},{"style":438},[11443],{"type":58,"value":1406},{"type":52,"tag":431,"props":11445,"children":11446},{"class":433,"line":4599},[11447,11451,11455,11459,11463,11467,11471],{"type":52,"tag":431,"props":11448,"children":11449},{"style":438},[11450],{"type":58,"value":1268},{"type":52,"tag":431,"props":11452,"children":11453},{"style":740},[11454],{"type":58,"value":410},{"type":52,"tag":431,"props":11456,"children":11457},{"style":438},[11458],{"type":58,"value":446},{"type":52,"tag":431,"props":11460,"children":11461},{"style":438},[11462],{"type":58,"value":375},{"type":52,"tag":431,"props":11464,"children":11465},{"style":438},[11466],{"type":58,"value":464},{"type":52,"tag":431,"props":11468,"children":11469},{"style":467},[11470],{"type":58,"value":3097},{"type":52,"tag":431,"props":11472,"children":11473},{"style":438},[11474],{"type":58,"value":1349},{"type":52,"tag":431,"props":11476,"children":11477},{"class":433,"line":4640},[11478],{"type":52,"tag":431,"props":11479,"children":11480},{"style":438},[11481],{"type":58,"value":1560},{"type":52,"tag":431,"props":11483,"children":11484},{"class":433,"line":4677},[11485],{"type":52,"tag":431,"props":11486,"children":11487},{"style":438},[11488],{"type":58,"value":1259},{"type":52,"tag":431,"props":11490,"children":11491},{"class":433,"line":4710},[11492,11496,11500,11504,11508],{"type":52,"tag":431,"props":11493,"children":11494},{"style":438},[11495],{"type":58,"value":1268},{"type":52,"tag":431,"props":11497,"children":11498},{"style":740},[11499],{"type":58,"value":1273},{"type":52,"tag":431,"props":11501,"children":11502},{"style":438},[11503],{"type":58,"value":446},{"type":52,"tag":431,"props":11505,"children":11506},{"style":438},[11507],{"type":58,"value":375},{"type":52,"tag":431,"props":11509,"children":11510},{"style":438},[11511],{"type":58,"value":1286},{"type":52,"tag":431,"props":11513,"children":11514},{"class":433,"line":4718},[11515,11519,11523,11527,11531],{"type":52,"tag":431,"props":11516,"children":11517},{"style":438},[11518],{"type":58,"value":1295},{"type":52,"tag":431,"props":11520,"children":11521},{"style":763},[11522],{"type":58,"value":3154},{"type":52,"tag":431,"props":11524,"children":11525},{"style":438},[11526],{"type":58,"value":446},{"type":52,"tag":431,"props":11528,"children":11529},{"style":438},[11530],{"type":58,"value":375},{"type":52,"tag":431,"props":11532,"children":11533},{"style":438},[11534],{"type":58,"value":1286},{"type":52,"tag":431,"props":11536,"children":11537},{"class":433,"line":4726},[11538,11542,11546,11550,11554],{"type":52,"tag":431,"props":11539,"children":11540},{"style":438},[11541],{"type":58,"value":1321},{"type":52,"tag":431,"props":11543,"children":11544},{"style":1324},[11545],{"type":58,"value":3154},{"type":52,"tag":431,"props":11547,"children":11548},{"style":438},[11549],{"type":58,"value":446},{"type":52,"tag":431,"props":11551,"children":11552},{"style":438},[11553],{"type":58,"value":375},{"type":52,"tag":431,"props":11555,"children":11556},{"style":438},[11557],{"type":58,"value":1251},{"type":52,"tag":431,"props":11559,"children":11560},{"class":433,"line":4750},[11561],{"type":52,"tag":431,"props":11562,"children":11563},{"style":438},[11564],{"type":58,"value":3199},{"type":52,"tag":431,"props":11566,"children":11567},{"class":433,"line":4850},[11568,11572,11576,11580,11584,11588,11592,11596],{"type":52,"tag":431,"props":11569,"children":11570},{"style":438},[11571],{"type":58,"value":3208},{"type":52,"tag":431,"props":11573,"children":11574},{"style":3211},[11575],{"type":58,"value":1493},{"type":52,"tag":431,"props":11577,"children":11578},{"style":438},[11579],{"type":58,"value":446},{"type":52,"tag":431,"props":11581,"children":11582},{"style":438},[11583],{"type":58,"value":375},{"type":52,"tag":431,"props":11585,"children":11586},{"style":438},[11587],{"type":58,"value":464},{"type":52,"tag":431,"props":11589,"children":11590},{"style":467},[11591],{"type":58,"value":3230},{"type":52,"tag":431,"props":11593,"children":11594},{"style":438},[11595],{"type":58,"value":446},{"type":52,"tag":431,"props":11597,"children":11598},{"style":438},[11599],{"type":58,"value":1406},{"type":52,"tag":431,"props":11601,"children":11602},{"class":433,"line":4906},[11603,11607,11611,11615,11619,11623,11627,11631],{"type":52,"tag":431,"props":11604,"children":11605},{"style":438},[11606],{"type":58,"value":3208},{"type":52,"tag":431,"props":11608,"children":11609},{"style":3211},[11610],{"type":58,"value":410},{"type":52,"tag":431,"props":11612,"children":11613},{"style":438},[11614],{"type":58,"value":446},{"type":52,"tag":431,"props":11616,"children":11617},{"style":438},[11618],{"type":58,"value":375},{"type":52,"tag":431,"props":11620,"children":11621},{"style":438},[11622],{"type":58,"value":464},{"type":52,"tag":431,"props":11624,"children":11625},{"style":467},[11626],{"type":58,"value":3267},{"type":52,"tag":431,"props":11628,"children":11629},{"style":438},[11630],{"type":58,"value":446},{"type":52,"tag":431,"props":11632,"children":11633},{"style":438},[11634],{"type":58,"value":1406},{"type":52,"tag":431,"props":11636,"children":11637},{"class":433,"line":4914},[11638,11642,11646,11650,11654,11658,11662,11666],{"type":52,"tag":431,"props":11639,"children":11640},{"style":438},[11641],{"type":58,"value":3208},{"type":52,"tag":431,"props":11643,"children":11644},{"style":3211},[11645],{"type":58,"value":800},{"type":52,"tag":431,"props":11647,"children":11648},{"style":438},[11649],{"type":58,"value":446},{"type":52,"tag":431,"props":11651,"children":11652},{"style":438},[11653],{"type":58,"value":375},{"type":52,"tag":431,"props":11655,"children":11656},{"style":438},[11657],{"type":58,"value":464},{"type":52,"tag":431,"props":11659,"children":11660},{"style":467},[11661],{"type":58,"value":1177},{"type":52,"tag":431,"props":11663,"children":11664},{"style":438},[11665],{"type":58,"value":446},{"type":52,"tag":431,"props":11667,"children":11668},{"style":438},[11669],{"type":58,"value":1406},{"type":52,"tag":431,"props":11671,"children":11672},{"class":433,"line":4950},[11673,11677,11681,11685,11689,11693,11697],{"type":52,"tag":431,"props":11674,"children":11675},{"style":438},[11676],{"type":58,"value":3208},{"type":52,"tag":431,"props":11678,"children":11679},{"style":3211},[11680],{"type":58,"value":1380},{"type":52,"tag":431,"props":11682,"children":11683},{"style":438},[11684],{"type":58,"value":446},{"type":52,"tag":431,"props":11686,"children":11687},{"style":438},[11688],{"type":58,"value":375},{"type":52,"tag":431,"props":11690,"children":11691},{"style":438},[11692],{"type":58,"value":464},{"type":52,"tag":431,"props":11694,"children":11695},{"style":467},[11696],{"type":58,"value":3340},{"type":52,"tag":431,"props":11698,"children":11699},{"style":438},[11700],{"type":58,"value":1349},{"type":52,"tag":431,"props":11702,"children":11703},{"class":433,"line":4978},[11704],{"type":52,"tag":431,"props":11705,"children":11706},{"style":438},[11707],{"type":58,"value":3353},{"type":52,"tag":431,"props":11709,"children":11710},{"class":433,"line":5020},[11711],{"type":52,"tag":431,"props":11712,"children":11713},{"style":438},[11714],{"type":58,"value":3362},{"type":52,"tag":431,"props":11716,"children":11717},{"class":433,"line":5057},[11718],{"type":52,"tag":431,"props":11719,"children":11720},{"style":438},[11721],{"type":58,"value":3371},{"type":52,"tag":431,"props":11723,"children":11724},{"class":433,"line":5090},[11725,11729,11733,11737,11741],{"type":52,"tag":431,"props":11726,"children":11727},{"style":438},[11728],{"type":58,"value":1295},{"type":52,"tag":431,"props":11730,"children":11731},{"style":763},[11732],{"type":58,"value":1300},{"type":52,"tag":431,"props":11734,"children":11735},{"style":438},[11736],{"type":58,"value":446},{"type":52,"tag":431,"props":11738,"children":11739},{"style":438},[11740],{"type":58,"value":375},{"type":52,"tag":431,"props":11742,"children":11743},{"style":438},[11744],{"type":58,"value":1731},{"type":52,"tag":431,"props":11746,"children":11747},{"class":433,"line":5099},[11748],{"type":52,"tag":431,"props":11749,"children":11750},{"style":438},[11751],{"type":58,"value":1367},{"type":52,"tag":431,"props":11753,"children":11754},{"class":433,"line":5108},[11755,11759,11763,11767,11771,11775,11779,11783],{"type":52,"tag":431,"props":11756,"children":11757},{"style":438},[11758],{"type":58,"value":1268},{"type":52,"tag":431,"props":11760,"children":11761},{"style":740},[11762],{"type":58,"value":1380},{"type":52,"tag":431,"props":11764,"children":11765},{"style":438},[11766],{"type":58,"value":446},{"type":52,"tag":431,"props":11768,"children":11769},{"style":438},[11770],{"type":58,"value":375},{"type":52,"tag":431,"props":11772,"children":11773},{"style":438},[11774],{"type":58,"value":464},{"type":52,"tag":431,"props":11776,"children":11777},{"style":467},[11778],{"type":58,"value":3432},{"type":52,"tag":431,"props":11780,"children":11781},{"style":438},[11782],{"type":58,"value":446},{"type":52,"tag":431,"props":11784,"children":11785},{"style":438},[11786],{"type":58,"value":1406},{"type":52,"tag":431,"props":11788,"children":11789},{"class":433,"line":5133},[11790,11794,11798,11802,11806,11810],{"type":52,"tag":431,"props":11791,"children":11792},{"style":438},[11793],{"type":58,"value":1268},{"type":52,"tag":431,"props":11795,"children":11796},{"style":740},[11797],{"type":58,"value":1419},{"type":52,"tag":431,"props":11799,"children":11800},{"style":438},[11801],{"type":58,"value":446},{"type":52,"tag":431,"props":11803,"children":11804},{"style":438},[11805],{"type":58,"value":375},{"type":52,"tag":431,"props":11807,"children":11808},{"style":763},[11809],{"type":58,"value":3465},{"type":52,"tag":431,"props":11811,"children":11812},{"style":438},[11813],{"type":58,"value":1406},{"type":52,"tag":431,"props":11815,"children":11816},{"class":433,"line":5158},[11817,11821,11825,11829,11833,11837,11842,11846,11850],{"type":52,"tag":431,"props":11818,"children":11819},{"style":438},[11820],{"type":58,"value":1268},{"type":52,"tag":431,"props":11822,"children":11823},{"style":740},[11824],{"type":58,"value":1449},{"type":52,"tag":431,"props":11826,"children":11827},{"style":438},[11828],{"type":58,"value":446},{"type":52,"tag":431,"props":11830,"children":11831},{"style":438},[11832],{"type":58,"value":375},{"type":52,"tag":431,"props":11834,"children":11835},{"style":438},[11836],{"type":58,"value":1462},{"type":52,"tag":431,"props":11838,"children":11839},{"style":763},[11840],{"type":58,"value":11841},"-352",{"type":52,"tag":431,"props":11843,"children":11844},{"style":438},[11845],{"type":58,"value":479},{"type":52,"tag":431,"props":11847,"children":11848},{"style":763},[11849],{"type":58,"value":5268},{"type":52,"tag":431,"props":11851,"children":11852},{"style":438},[11853],{"type":58,"value":1481},{"type":52,"tag":431,"props":11855,"children":11856},{"class":433,"line":5276},[11857,11861,11865,11869,11873,11877,11882,11886],{"type":52,"tag":431,"props":11858,"children":11859},{"style":438},[11860],{"type":58,"value":1268},{"type":52,"tag":431,"props":11862,"children":11863},{"style":740},[11864],{"type":58,"value":1493},{"type":52,"tag":431,"props":11866,"children":11867},{"style":438},[11868],{"type":58,"value":446},{"type":52,"tag":431,"props":11870,"children":11871},{"style":438},[11872],{"type":58,"value":375},{"type":52,"tag":431,"props":11874,"children":11875},{"style":438},[11876],{"type":58,"value":464},{"type":52,"tag":431,"props":11878,"children":11879},{"style":467},[11880],{"type":58,"value":11881},"651439de-5525-4d0a-b055-1d722e81c0aa",{"type":52,"tag":431,"props":11883,"children":11884},{"style":438},[11885],{"type":58,"value":446},{"type":52,"tag":431,"props":11887,"children":11888},{"style":438},[11889],{"type":58,"value":1406},{"type":52,"tag":431,"props":11891,"children":11892},{"class":433,"line":5284},[11893,11897,11901,11905,11909,11913,11917],{"type":52,"tag":431,"props":11894,"children":11895},{"style":438},[11896],{"type":58,"value":1268},{"type":52,"tag":431,"props":11898,"children":11899},{"style":740},[11900],{"type":58,"value":410},{"type":52,"tag":431,"props":11902,"children":11903},{"style":438},[11904],{"type":58,"value":446},{"type":52,"tag":431,"props":11906,"children":11907},{"style":438},[11908],{"type":58,"value":375},{"type":52,"tag":431,"props":11910,"children":11911},{"style":438},[11912],{"type":58,"value":464},{"type":52,"tag":431,"props":11914,"children":11915},{"style":467},[11916],{"type":58,"value":3576},{"type":52,"tag":431,"props":11918,"children":11919},{"style":438},[11920],{"type":58,"value":1349},{"type":52,"tag":431,"props":11922,"children":11923},{"class":433,"line":5308},[11924],{"type":52,"tag":431,"props":11925,"children":11926},{"style":438},[11927],{"type":58,"value":1560},{"type":52,"tag":431,"props":11929,"children":11930},{"class":433,"line":5420},[11931],{"type":52,"tag":431,"props":11932,"children":11933},{"style":438},[11934],{"type":58,"value":1259},{"type":52,"tag":431,"props":11936,"children":11937},{"class":433,"line":5428},[11938,11942,11946,11950,11954,11958,11962,11966,11970,11974,11978,11982,11986,11990,11994,11998,12002,12006],{"type":52,"tag":431,"props":11939,"children":11940},{"style":438},[11941],{"type":58,"value":1268},{"type":52,"tag":431,"props":11943,"children":11944},{"style":740},[11945],{"type":58,"value":1273},{"type":52,"tag":431,"props":11947,"children":11948},{"style":438},[11949],{"type":58,"value":446},{"type":52,"tag":431,"props":11951,"children":11952},{"style":438},[11953],{"type":58,"value":375},{"type":52,"tag":431,"props":11955,"children":11956},{"style":438},[11957],{"type":58,"value":733},{"type":52,"tag":431,"props":11959,"children":11960},{"style":438},[11961],{"type":58,"value":446},{"type":52,"tag":431,"props":11963,"children":11964},{"style":763},[11965],{"type":58,"value":3629},{"type":52,"tag":431,"props":11967,"children":11968},{"style":438},[11969],{"type":58,"value":446},{"type":52,"tag":431,"props":11971,"children":11972},{"style":438},[11973],{"type":58,"value":375},{"type":52,"tag":431,"props":11975,"children":11976},{"style":438},[11977],{"type":58,"value":464},{"type":52,"tag":431,"props":11979,"children":11980},{"style":467},[11981],{"type":58,"value":3267},{"type":52,"tag":431,"props":11983,"children":11984},{"style":438},[11985],{"type":58,"value":446},{"type":52,"tag":431,"props":11987,"children":11988},{"style":438},[11989],{"type":58,"value":479},{"type":52,"tag":431,"props":11991,"children":11992},{"style":438},[11993],{"type":58,"value":464},{"type":52,"tag":431,"props":11995,"children":11996},{"style":763},[11997],{"type":58,"value":1300},{"type":52,"tag":431,"props":11999,"children":12000},{"style":438},[12001],{"type":58,"value":446},{"type":52,"tag":431,"props":12003,"children":12004},{"style":438},[12005],{"type":58,"value":375},{"type":52,"tag":431,"props":12007,"children":12008},{"style":438},[12009],{"type":58,"value":2669},{"type":52,"tag":431,"props":12011,"children":12012},{"class":433,"line":5452},[12013,12017,12021,12025,12029,12033,12037,12041],{"type":52,"tag":431,"props":12014,"children":12015},{"style":438},[12016],{"type":58,"value":1268},{"type":52,"tag":431,"props":12018,"children":12019},{"style":740},[12020],{"type":58,"value":1380},{"type":52,"tag":431,"props":12022,"children":12023},{"style":438},[12024],{"type":58,"value":446},{"type":52,"tag":431,"props":12026,"children":12027},{"style":438},[12028],{"type":58,"value":375},{"type":52,"tag":431,"props":12030,"children":12031},{"style":438},[12032],{"type":58,"value":464},{"type":52,"tag":431,"props":12034,"children":12035},{"style":467},[12036],{"type":58,"value":3702},{"type":52,"tag":431,"props":12038,"children":12039},{"style":438},[12040],{"type":58,"value":446},{"type":52,"tag":431,"props":12042,"children":12043},{"style":438},[12044],{"type":58,"value":1406},{"type":52,"tag":431,"props":12046,"children":12047},{"class":433,"line":5564},[12048,12052,12056,12060,12064,12068],{"type":52,"tag":431,"props":12049,"children":12050},{"style":438},[12051],{"type":58,"value":1268},{"type":52,"tag":431,"props":12053,"children":12054},{"style":740},[12055],{"type":58,"value":1419},{"type":52,"tag":431,"props":12057,"children":12058},{"style":438},[12059],{"type":58,"value":446},{"type":52,"tag":431,"props":12061,"children":12062},{"style":438},[12063],{"type":58,"value":375},{"type":52,"tag":431,"props":12065,"children":12066},{"style":763},[12067],{"type":58,"value":2193},{"type":52,"tag":431,"props":12069,"children":12070},{"style":438},[12071],{"type":58,"value":1406},{"type":52,"tag":431,"props":12073,"children":12074},{"class":433,"line":5572},[12075,12079,12083,12087,12091,12095,12100,12104,12108],{"type":52,"tag":431,"props":12076,"children":12077},{"style":438},[12078],{"type":58,"value":1268},{"type":52,"tag":431,"props":12080,"children":12081},{"style":740},[12082],{"type":58,"value":1449},{"type":52,"tag":431,"props":12084,"children":12085},{"style":438},[12086],{"type":58,"value":446},{"type":52,"tag":431,"props":12088,"children":12089},{"style":438},[12090],{"type":58,"value":375},{"type":52,"tag":431,"props":12092,"children":12093},{"style":438},[12094],{"type":58,"value":1462},{"type":52,"tag":431,"props":12096,"children":12097},{"style":763},[12098],{"type":58,"value":12099},"-192",{"type":52,"tag":431,"props":12101,"children":12102},{"style":438},[12103],{"type":58,"value":479},{"type":52,"tag":431,"props":12105,"children":12106},{"style":763},[12107],{"type":58,"value":5268},{"type":52,"tag":431,"props":12109,"children":12110},{"style":438},[12111],{"type":58,"value":1481},{"type":52,"tag":431,"props":12113,"children":12114},{"class":433,"line":5596},[12115,12119,12123,12127,12131,12135,12140,12144],{"type":52,"tag":431,"props":12116,"children":12117},{"style":438},[12118],{"type":58,"value":1268},{"type":52,"tag":431,"props":12120,"children":12121},{"style":740},[12122],{"type":58,"value":1493},{"type":52,"tag":431,"props":12124,"children":12125},{"style":438},[12126],{"type":58,"value":446},{"type":52,"tag":431,"props":12128,"children":12129},{"style":438},[12130],{"type":58,"value":375},{"type":52,"tag":431,"props":12132,"children":12133},{"style":438},[12134],{"type":58,"value":464},{"type":52,"tag":431,"props":12136,"children":12137},{"style":467},[12138],{"type":58,"value":12139},"8878265e-9e6f-4d9a-b533-53100205eb38",{"type":52,"tag":431,"props":12141,"children":12142},{"style":438},[12143],{"type":58,"value":446},{"type":52,"tag":431,"props":12145,"children":12146},{"style":438},[12147],{"type":58,"value":1406},{"type":52,"tag":431,"props":12149,"children":12150},{"class":433,"line":5708},[12151,12155,12159,12163,12167,12171,12175],{"type":52,"tag":431,"props":12152,"children":12153},{"style":438},[12154],{"type":58,"value":1268},{"type":52,"tag":431,"props":12156,"children":12157},{"style":740},[12158],{"type":58,"value":410},{"type":52,"tag":431,"props":12160,"children":12161},{"style":438},[12162],{"type":58,"value":446},{"type":52,"tag":431,"props":12164,"children":12165},{"style":438},[12166],{"type":58,"value":375},{"type":52,"tag":431,"props":12168,"children":12169},{"style":438},[12170],{"type":58,"value":464},{"type":52,"tag":431,"props":12172,"children":12173},{"style":467},[12174],{"type":58,"value":3845},{"type":52,"tag":431,"props":12176,"children":12177},{"style":438},[12178],{"type":58,"value":1349},{"type":52,"tag":431,"props":12180,"children":12181},{"class":433,"line":5716},[12182],{"type":52,"tag":431,"props":12183,"children":12184},{"style":438},[12185],{"type":58,"value":1560},{"type":52,"tag":431,"props":12187,"children":12188},{"class":433,"line":5740},[12189],{"type":52,"tag":431,"props":12190,"children":12191},{"style":438},[12192],{"type":58,"value":1259},{"type":52,"tag":431,"props":12194,"children":12195},{"class":433,"line":5852},[12196,12200,12204,12208,12212],{"type":52,"tag":431,"props":12197,"children":12198},{"style":438},[12199],{"type":58,"value":1268},{"type":52,"tag":431,"props":12201,"children":12202},{"style":740},[12203],{"type":58,"value":1273},{"type":52,"tag":431,"props":12205,"children":12206},{"style":438},[12207],{"type":58,"value":446},{"type":52,"tag":431,"props":12209,"children":12210},{"style":438},[12211],{"type":58,"value":375},{"type":52,"tag":431,"props":12213,"children":12214},{"style":438},[12215],{"type":58,"value":1286},{"type":52,"tag":431,"props":12217,"children":12218},{"class":433,"line":5860},[12219,12223,12228,12232,12236,12241],{"type":52,"tag":431,"props":12220,"children":12221},{"style":438},[12222],{"type":58,"value":1295},{"type":52,"tag":431,"props":12224,"children":12225},{"style":763},[12226],{"type":58,"value":12227},"chunkSize",{"type":52,"tag":431,"props":12229,"children":12230},{"style":438},[12231],{"type":58,"value":446},{"type":52,"tag":431,"props":12233,"children":12234},{"style":438},[12235],{"type":58,"value":375},{"type":52,"tag":431,"props":12237,"children":12238},{"style":763},[12239],{"type":58,"value":12240}," 3000",{"type":52,"tag":431,"props":12242,"children":12243},{"style":438},[12244],{"type":58,"value":1406},{"type":52,"tag":431,"props":12246,"children":12247},{"class":433,"line":5884},[12248,12252,12257,12261,12265,12270],{"type":52,"tag":431,"props":12249,"children":12250},{"style":438},[12251],{"type":58,"value":1295},{"type":52,"tag":431,"props":12253,"children":12254},{"style":763},[12255],{"type":58,"value":12256},"chunkOverlap",{"type":52,"tag":431,"props":12258,"children":12259},{"style":438},[12260],{"type":58,"value":446},{"type":52,"tag":431,"props":12262,"children":12263},{"style":438},[12264],{"type":58,"value":375},{"type":52,"tag":431,"props":12266,"children":12267},{"style":763},[12268],{"type":58,"value":12269}," 500",{"type":52,"tag":431,"props":12271,"children":12272},{"style":438},[12273],{"type":58,"value":1406},{"type":52,"tag":431,"props":12275,"children":12276},{"class":433,"line":5996},[12277,12281,12285,12289,12293],{"type":52,"tag":431,"props":12278,"children":12279},{"style":438},[12280],{"type":58,"value":1295},{"type":52,"tag":431,"props":12282,"children":12283},{"style":763},[12284],{"type":58,"value":1300},{"type":52,"tag":431,"props":12286,"children":12287},{"style":438},[12288],{"type":58,"value":446},{"type":52,"tag":431,"props":12290,"children":12291},{"style":438},[12292],{"type":58,"value":375},{"type":52,"tag":431,"props":12294,"children":12295},{"style":438},[12296],{"type":58,"value":1731},{"type":52,"tag":431,"props":12298,"children":12299},{"class":433,"line":6004},[12300],{"type":52,"tag":431,"props":12301,"children":12302},{"style":438},[12303],{"type":58,"value":1367},{"type":52,"tag":431,"props":12305,"children":12306},{"class":433,"line":6028},[12307,12311,12315,12319,12323,12327,12331,12335],{"type":52,"tag":431,"props":12308,"children":12309},{"style":438},[12310],{"type":58,"value":1268},{"type":52,"tag":431,"props":12312,"children":12313},{"style":740},[12314],{"type":58,"value":1380},{"type":52,"tag":431,"props":12316,"children":12317},{"style":438},[12318],{"type":58,"value":446},{"type":52,"tag":431,"props":12320,"children":12321},{"style":438},[12322],{"type":58,"value":375},{"type":52,"tag":431,"props":12324,"children":12325},{"style":438},[12326],{"type":58,"value":464},{"type":52,"tag":431,"props":12328,"children":12329},{"style":467},[12330],{"type":58,"value":8158},{"type":52,"tag":431,"props":12332,"children":12333},{"style":438},[12334],{"type":58,"value":446},{"type":52,"tag":431,"props":12336,"children":12337},{"style":438},[12338],{"type":58,"value":1406},{"type":52,"tag":431,"props":12340,"children":12341},{"class":433,"line":6140},[12342,12346,12350,12354,12358,12362],{"type":52,"tag":431,"props":12343,"children":12344},{"style":438},[12345],{"type":58,"value":1268},{"type":52,"tag":431,"props":12347,"children":12348},{"style":740},[12349],{"type":58,"value":1419},{"type":52,"tag":431,"props":12351,"children":12352},{"style":438},[12353],{"type":58,"value":446},{"type":52,"tag":431,"props":12355,"children":12356},{"style":438},[12357],{"type":58,"value":375},{"type":52,"tag":431,"props":12359,"children":12360},{"style":763},[12361],{"type":58,"value":2193},{"type":52,"tag":431,"props":12363,"children":12364},{"style":438},[12365],{"type":58,"value":1406},{"type":52,"tag":431,"props":12367,"children":12368},{"class":433,"line":6148},[12369,12373,12377,12381,12385,12389,12394,12398,12403],{"type":52,"tag":431,"props":12370,"children":12371},{"style":438},[12372],{"type":58,"value":1268},{"type":52,"tag":431,"props":12374,"children":12375},{"style":740},[12376],{"type":58,"value":1449},{"type":52,"tag":431,"props":12378,"children":12379},{"style":438},[12380],{"type":58,"value":446},{"type":52,"tag":431,"props":12382,"children":12383},{"style":438},[12384],{"type":58,"value":375},{"type":52,"tag":431,"props":12386,"children":12387},{"style":438},[12388],{"type":58,"value":1462},{"type":52,"tag":431,"props":12390,"children":12391},{"style":763},[12392],{"type":58,"value":12393},"416",{"type":52,"tag":431,"props":12395,"children":12396},{"style":438},[12397],{"type":58,"value":479},{"type":52,"tag":431,"props":12399,"children":12400},{"style":763},[12401],{"type":58,"value":12402}," 352",{"type":52,"tag":431,"props":12404,"children":12405},{"style":438},[12406],{"type":58,"value":1481},{"type":52,"tag":431,"props":12408,"children":12409},{"class":433,"line":6157},[12410,12414,12418,12422,12426,12430,12435,12439],{"type":52,"tag":431,"props":12411,"children":12412},{"style":438},[12413],{"type":58,"value":1268},{"type":52,"tag":431,"props":12415,"children":12416},{"style":740},[12417],{"type":58,"value":1493},{"type":52,"tag":431,"props":12419,"children":12420},{"style":438},[12421],{"type":58,"value":446},{"type":52,"tag":431,"props":12423,"children":12424},{"style":438},[12425],{"type":58,"value":375},{"type":52,"tag":431,"props":12427,"children":12428},{"style":438},[12429],{"type":58,"value":464},{"type":52,"tag":431,"props":12431,"children":12432},{"style":467},[12433],{"type":58,"value":12434},"347ba65b-9fad-4b92-a90f-6690df8e2a7e",{"type":52,"tag":431,"props":12436,"children":12437},{"style":438},[12438],{"type":58,"value":446},{"type":52,"tag":431,"props":12440,"children":12441},{"style":438},[12442],{"type":58,"value":1406},{"type":52,"tag":431,"props":12444,"children":12445},{"class":433,"line":6182},[12446,12450,12454,12458,12462,12466,12471],{"type":52,"tag":431,"props":12447,"children":12448},{"style":438},[12449],{"type":58,"value":1268},{"type":52,"tag":431,"props":12451,"children":12452},{"style":740},[12453],{"type":58,"value":410},{"type":52,"tag":431,"props":12455,"children":12456},{"style":438},[12457],{"type":58,"value":446},{"type":52,"tag":431,"props":12459,"children":12460},{"style":438},[12461],{"type":58,"value":375},{"type":52,"tag":431,"props":12463,"children":12464},{"style":438},[12465],{"type":58,"value":464},{"type":52,"tag":431,"props":12467,"children":12468},{"style":467},[12469],{"type":58,"value":12470},"Recursive Character Text Splitter",{"type":52,"tag":431,"props":12472,"children":12473},{"style":438},[12474],{"type":58,"value":1349},{"type":52,"tag":431,"props":12476,"children":12477},{"class":433,"line":6229},[12478],{"type":52,"tag":431,"props":12479,"children":12480},{"style":438},[12481],{"type":58,"value":1560},{"type":52,"tag":431,"props":12483,"children":12485},{"class":433,"line":12484},160,[12486],{"type":52,"tag":431,"props":12487,"children":12488},{"style":438},[12489],{"type":58,"value":1259},{"type":52,"tag":431,"props":12491,"children":12493},{"class":433,"line":12492},161,[12494,12498,12502,12506,12510],{"type":52,"tag":431,"props":12495,"children":12496},{"style":438},[12497],{"type":58,"value":1268},{"type":52,"tag":431,"props":12499,"children":12500},{"style":740},[12501],{"type":58,"value":1273},{"type":52,"tag":431,"props":12503,"children":12504},{"style":438},[12505],{"type":58,"value":446},{"type":52,"tag":431,"props":12507,"children":12508},{"style":438},[12509],{"type":58,"value":375},{"type":52,"tag":431,"props":12511,"children":12512},{"style":438},[12513],{"type":58,"value":1286},{"type":52,"tag":431,"props":12515,"children":12517},{"class":433,"line":12516},162,[12518,12522,12526,12530,12534,12538,12542,12546],{"type":52,"tag":431,"props":12519,"children":12520},{"style":438},[12521],{"type":58,"value":1295},{"type":52,"tag":431,"props":12523,"children":12524},{"style":763},[12525],{"type":58,"value":3902},{"type":52,"tag":431,"props":12527,"children":12528},{"style":438},[12529],{"type":58,"value":446},{"type":52,"tag":431,"props":12531,"children":12532},{"style":438},[12533],{"type":58,"value":375},{"type":52,"tag":431,"props":12535,"children":12536},{"style":438},[12537],{"type":58,"value":464},{"type":52,"tag":431,"props":12539,"children":12540},{"style":467},[12541],{"type":58,"value":3919},{"type":52,"tag":431,"props":12543,"children":12544},{"style":438},[12545],{"type":58,"value":446},{"type":52,"tag":431,"props":12547,"children":12548},{"style":438},[12549],{"type":58,"value":1406},{"type":52,"tag":431,"props":12551,"children":12553},{"class":433,"line":12552},163,[12554,12558,12562,12566,12570,12574,12578,12582,12586,12590,12594,12598,12602,12606,12610,12614,12618,12622,12626,12630,12634,12638,12642],{"type":52,"tag":431,"props":12555,"children":12556},{"style":438},[12557],{"type":58,"value":1295},{"type":52,"tag":431,"props":12559,"children":12560},{"style":763},[12561],{"type":58,"value":1300},{"type":52,"tag":431,"props":12563,"children":12564},{"style":438},[12565],{"type":58,"value":446},{"type":52,"tag":431,"props":12567,"children":12568},{"style":438},[12569],{"type":58,"value":375},{"type":52,"tag":431,"props":12571,"children":12572},{"style":438},[12573],{"type":58,"value":733},{"type":52,"tag":431,"props":12575,"children":12576},{"style":438},[12577],{"type":58,"value":446},{"type":52,"tag":431,"props":12579,"children":12580},{"style":1324},[12581],{"type":58,"value":3960},{"type":52,"tag":431,"props":12583,"children":12584},{"style":438},[12585],{"type":58,"value":446},{"type":52,"tag":431,"props":12587,"children":12588},{"style":438},[12589],{"type":58,"value":375},{"type":52,"tag":431,"props":12591,"children":12592},{"style":438},[12593],{"type":58,"value":733},{"type":52,"tag":431,"props":12595,"children":12596},{"style":438},[12597],{"type":58,"value":446},{"type":52,"tag":431,"props":12599,"children":12600},{"style":3211},[12601],{"type":58,"value":3960},{"type":52,"tag":431,"props":12603,"children":12604},{"style":438},[12605],{"type":58,"value":446},{"type":52,"tag":431,"props":12607,"children":12608},{"style":438},[12609],{"type":58,"value":375},{"type":52,"tag":431,"props":12611,"children":12612},{"style":438},[12613],{"type":58,"value":733},{"type":52,"tag":431,"props":12615,"children":12616},{"style":438},[12617],{"type":58,"value":446},{"type":52,"tag":431,"props":12619,"children":12620},{"style":3999},[12621],{"type":58,"value":4002},{"type":52,"tag":431,"props":12623,"children":12624},{"style":438},[12625],{"type":58,"value":446},{"type":52,"tag":431,"props":12627,"children":12628},{"style":438},[12629],{"type":58,"value":375},{"type":52,"tag":431,"props":12631,"children":12632},{"style":438},[12633],{"type":58,"value":464},{"type":52,"tag":431,"props":12635,"children":12636},{"style":467},[12637],{"type":58,"value":4019},{"type":52,"tag":431,"props":12639,"children":12640},{"style":438},[12641],{"type":58,"value":446},{"type":52,"tag":431,"props":12643,"children":12644},{"style":438},[12645],{"type":58,"value":4028},{"type":52,"tag":431,"props":12647,"children":12649},{"class":433,"line":12648},164,[12650],{"type":52,"tag":431,"props":12651,"children":12652},{"style":438},[12653],{"type":58,"value":1367},{"type":52,"tag":431,"props":12655,"children":12657},{"class":433,"line":12656},165,[12658,12662,12666,12670,12674,12678,12682,12686],{"type":52,"tag":431,"props":12659,"children":12660},{"style":438},[12661],{"type":58,"value":1268},{"type":52,"tag":431,"props":12663,"children":12664},{"style":740},[12665],{"type":58,"value":1380},{"type":52,"tag":431,"props":12667,"children":12668},{"style":438},[12669],{"type":58,"value":446},{"type":52,"tag":431,"props":12671,"children":12672},{"style":438},[12673],{"type":58,"value":375},{"type":52,"tag":431,"props":12675,"children":12676},{"style":438},[12677],{"type":58,"value":464},{"type":52,"tag":431,"props":12679,"children":12680},{"style":467},[12681],{"type":58,"value":4065},{"type":52,"tag":431,"props":12683,"children":12684},{"style":438},[12685],{"type":58,"value":446},{"type":52,"tag":431,"props":12687,"children":12688},{"style":438},[12689],{"type":58,"value":1406},{"type":52,"tag":431,"props":12691,"children":12693},{"class":433,"line":12692},166,[12694,12698,12702,12706,12710,12714],{"type":52,"tag":431,"props":12695,"children":12696},{"style":438},[12697],{"type":58,"value":1268},{"type":52,"tag":431,"props":12699,"children":12700},{"style":740},[12701],{"type":58,"value":1419},{"type":52,"tag":431,"props":12703,"children":12704},{"style":438},[12705],{"type":58,"value":446},{"type":52,"tag":431,"props":12707,"children":12708},{"style":438},[12709],{"type":58,"value":375},{"type":52,"tag":431,"props":12711,"children":12712},{"style":763},[12713],{"type":58,"value":4098},{"type":52,"tag":431,"props":12715,"children":12716},{"style":438},[12717],{"type":58,"value":1406},{"type":52,"tag":431,"props":12719,"children":12721},{"class":433,"line":12720},167,[12722,12726,12730,12734,12738,12742,12747,12751,12755],{"type":52,"tag":431,"props":12723,"children":12724},{"style":438},[12725],{"type":58,"value":1268},{"type":52,"tag":431,"props":12727,"children":12728},{"style":740},[12729],{"type":58,"value":1449},{"type":52,"tag":431,"props":12731,"children":12732},{"style":438},[12733],{"type":58,"value":446},{"type":52,"tag":431,"props":12735,"children":12736},{"style":438},[12737],{"type":58,"value":375},{"type":52,"tag":431,"props":12739,"children":12740},{"style":438},[12741],{"type":58,"value":1462},{"type":52,"tag":431,"props":12743,"children":12744},{"style":763},[12745],{"type":58,"value":12746},"-32",{"type":52,"tag":431,"props":12748,"children":12749},{"style":438},[12750],{"type":58,"value":479},{"type":52,"tag":431,"props":12752,"children":12753},{"style":763},[12754],{"type":58,"value":5268},{"type":52,"tag":431,"props":12756,"children":12757},{"style":438},[12758],{"type":58,"value":1481},{"type":52,"tag":431,"props":12760,"children":12762},{"class":433,"line":12761},168,[12763,12767,12771,12775,12779,12783,12788,12792],{"type":52,"tag":431,"props":12764,"children":12765},{"style":438},[12766],{"type":58,"value":1268},{"type":52,"tag":431,"props":12768,"children":12769},{"style":740},[12770],{"type":58,"value":1493},{"type":52,"tag":431,"props":12772,"children":12773},{"style":438},[12774],{"type":58,"value":446},{"type":52,"tag":431,"props":12776,"children":12777},{"style":438},[12778],{"type":58,"value":375},{"type":52,"tag":431,"props":12780,"children":12781},{"style":438},[12782],{"type":58,"value":464},{"type":52,"tag":431,"props":12784,"children":12785},{"style":467},[12786],{"type":58,"value":12787},"edf963af-18ee-4605-9b1e-49118c56b52d",{"type":52,"tag":431,"props":12789,"children":12790},{"style":438},[12791],{"type":58,"value":446},{"type":52,"tag":431,"props":12793,"children":12794},{"style":438},[12795],{"type":58,"value":1406},{"type":52,"tag":431,"props":12797,"children":12799},{"class":433,"line":12798},169,[12800,12804,12808,12812,12816,12820,12824],{"type":52,"tag":431,"props":12801,"children":12802},{"style":438},[12803],{"type":58,"value":1268},{"type":52,"tag":431,"props":12805,"children":12806},{"style":740},[12807],{"type":58,"value":410},{"type":52,"tag":431,"props":12809,"children":12810},{"style":438},[12811],{"type":58,"value":446},{"type":52,"tag":431,"props":12813,"children":12814},{"style":438},[12815],{"type":58,"value":375},{"type":52,"tag":431,"props":12817,"children":12818},{"style":438},[12819],{"type":58,"value":464},{"type":52,"tag":431,"props":12821,"children":12822},{"style":467},[12823],{"type":58,"value":4209},{"type":52,"tag":431,"props":12825,"children":12826},{"style":438},[12827],{"type":58,"value":1349},{"type":52,"tag":431,"props":12829,"children":12831},{"class":433,"line":12830},170,[12832],{"type":52,"tag":431,"props":12833,"children":12834},{"style":438},[12835],{"type":58,"value":1560},{"type":52,"tag":431,"props":12837,"children":12839},{"class":433,"line":12838},171,[12840],{"type":52,"tag":431,"props":12841,"children":12842},{"style":438},[12843],{"type":58,"value":1259},{"type":52,"tag":431,"props":12845,"children":12847},{"class":433,"line":12846},172,[12848,12852,12856,12860,12864],{"type":52,"tag":431,"props":12849,"children":12850},{"style":438},[12851],{"type":58,"value":1268},{"type":52,"tag":431,"props":12853,"children":12854},{"style":740},[12855],{"type":58,"value":1273},{"type":52,"tag":431,"props":12857,"children":12858},{"style":438},[12859],{"type":58,"value":446},{"type":52,"tag":431,"props":12861,"children":12862},{"style":438},[12863],{"type":58,"value":375},{"type":52,"tag":431,"props":12865,"children":12866},{"style":438},[12867],{"type":58,"value":1286},{"type":52,"tag":431,"props":12869,"children":12871},{"class":433,"line":12870},173,[12872,12876,12881,12885,12889,12893,12898,12902],{"type":52,"tag":431,"props":12873,"children":12874},{"style":438},[12875],{"type":58,"value":1295},{"type":52,"tag":431,"props":12877,"children":12878},{"style":763},[12879],{"type":58,"value":12880},"dataType",{"type":52,"tag":431,"props":12882,"children":12883},{"style":438},[12884],{"type":58,"value":446},{"type":52,"tag":431,"props":12886,"children":12887},{"style":438},[12888],{"type":58,"value":375},{"type":52,"tag":431,"props":12890,"children":12891},{"style":438},[12892],{"type":58,"value":464},{"type":52,"tag":431,"props":12894,"children":12895},{"style":467},[12896],{"type":58,"value":12897},"binary",{"type":52,"tag":431,"props":12899,"children":12900},{"style":438},[12901],{"type":58,"value":446},{"type":52,"tag":431,"props":12903,"children":12904},{"style":438},[12905],{"type":58,"value":1406},{"type":52,"tag":431,"props":12907,"children":12909},{"class":433,"line":12908},174,[12910,12914,12919,12923,12927,12931,12936,12940],{"type":52,"tag":431,"props":12911,"children":12912},{"style":438},[12913],{"type":58,"value":1295},{"type":52,"tag":431,"props":12915,"children":12916},{"style":763},[12917],{"type":58,"value":12918},"textSplittingMode",{"type":52,"tag":431,"props":12920,"children":12921},{"style":438},[12922],{"type":58,"value":446},{"type":52,"tag":431,"props":12924,"children":12925},{"style":438},[12926],{"type":58,"value":375},{"type":52,"tag":431,"props":12928,"children":12929},{"style":438},[12930],{"type":58,"value":464},{"type":52,"tag":431,"props":12932,"children":12933},{"style":467},[12934],{"type":58,"value":12935},"custom",{"type":52,"tag":431,"props":12937,"children":12938},{"style":438},[12939],{"type":58,"value":446},{"type":52,"tag":431,"props":12941,"children":12942},{"style":438},[12943],{"type":58,"value":1406},{"type":52,"tag":431,"props":12945,"children":12947},{"class":433,"line":12946},175,[12948,12952,12956,12960,12964],{"type":52,"tag":431,"props":12949,"children":12950},{"style":438},[12951],{"type":58,"value":1295},{"type":52,"tag":431,"props":12953,"children":12954},{"style":763},[12955],{"type":58,"value":1300},{"type":52,"tag":431,"props":12957,"children":12958},{"style":438},[12959],{"type":58,"value":446},{"type":52,"tag":431,"props":12961,"children":12962},{"style":438},[12963],{"type":58,"value":375},{"type":52,"tag":431,"props":12965,"children":12966},{"style":438},[12967],{"type":58,"value":1286},{"type":52,"tag":431,"props":12969,"children":12971},{"class":433,"line":12970},176,[12972,12976,12980,12984,12988],{"type":52,"tag":431,"props":12973,"children":12974},{"style":438},[12975],{"type":58,"value":1321},{"type":52,"tag":431,"props":12977,"children":12978},{"style":1324},[12979],{"type":58,"value":720},{"type":52,"tag":431,"props":12981,"children":12982},{"style":438},[12983],{"type":58,"value":446},{"type":52,"tag":431,"props":12985,"children":12986},{"style":438},[12987],{"type":58,"value":375},{"type":52,"tag":431,"props":12989,"children":12990},{"style":438},[12991],{"type":58,"value":1286},{"type":52,"tag":431,"props":12993,"children":12995},{"class":433,"line":12994},177,[12996,13001,13005,13009,13013],{"type":52,"tag":431,"props":12997,"children":12998},{"style":438},[12999],{"type":58,"value":13000},"            \"",{"type":52,"tag":431,"props":13002,"children":13003},{"style":3211},[13004],{"type":58,"value":743},{"type":52,"tag":431,"props":13006,"children":13007},{"style":438},[13008],{"type":58,"value":446},{"type":52,"tag":431,"props":13010,"children":13011},{"style":438},[13012],{"type":58,"value":375},{"type":52,"tag":431,"props":13014,"children":13015},{"style":438},[13016],{"type":58,"value":1251},{"type":52,"tag":431,"props":13018,"children":13020},{"class":433,"line":13019},178,[13021,13026,13030,13034,13038,13042,13046,13050,13054,13058,13062,13066,13070,13074,13078,13082,13086],{"type":52,"tag":431,"props":13022,"children":13023},{"style":438},[13024],{"type":58,"value":13025},"              {",{"type":52,"tag":431,"props":13027,"children":13028},{"style":438},[13029],{"type":58,"value":446},{"type":52,"tag":431,"props":13031,"children":13032},{"style":3999},[13033],{"type":58,"value":410},{"type":52,"tag":431,"props":13035,"children":13036},{"style":438},[13037],{"type":58,"value":446},{"type":52,"tag":431,"props":13039,"children":13040},{"style":438},[13041],{"type":58,"value":375},{"type":52,"tag":431,"props":13043,"children":13044},{"style":438},[13045],{"type":58,"value":464},{"type":52,"tag":431,"props":13047,"children":13048},{"style":467},[13049],{"type":58,"value":8219},{"type":52,"tag":431,"props":13051,"children":13052},{"style":438},[13053],{"type":58,"value":446},{"type":52,"tag":431,"props":13055,"children":13056},{"style":438},[13057],{"type":58,"value":479},{"type":52,"tag":431,"props":13059,"children":13060},{"style":438},[13061],{"type":58,"value":464},{"type":52,"tag":431,"props":13063,"children":13064},{"style":3999},[13065],{"type":58,"value":800},{"type":52,"tag":431,"props":13067,"children":13068},{"style":438},[13069],{"type":58,"value":446},{"type":52,"tag":431,"props":13071,"children":13072},{"style":438},[13073],{"type":58,"value":375},{"type":52,"tag":431,"props":13075,"children":13076},{"style":438},[13077],{"type":58,"value":464},{"type":52,"tag":431,"props":13079,"children":13080},{"style":467},[13081],{"type":58,"value":3919},{"type":52,"tag":431,"props":13083,"children":13084},{"style":438},[13085],{"type":58,"value":446},{"type":52,"tag":431,"props":13087,"children":13088},{"style":438},[13089],{"type":58,"value":513},{"type":52,"tag":431,"props":13091,"children":13093},{"class":433,"line":13092},179,[13094],{"type":52,"tag":431,"props":13095,"children":13096},{"style":438},[13097],{"type":58,"value":13098},"            ]\n",{"type":52,"tag":431,"props":13100,"children":13102},{"class":433,"line":13101},180,[13103],{"type":52,"tag":431,"props":13104,"children":13105},{"style":438},[13106],{"type":58,"value":13107},"          }\n",{"type":52,"tag":431,"props":13109,"children":13111},{"class":433,"line":13110},181,[13112],{"type":52,"tag":431,"props":13113,"children":13114},{"style":438},[13115],{"type":58,"value":1358},{"type":52,"tag":431,"props":13117,"children":13119},{"class":433,"line":13118},182,[13120],{"type":52,"tag":431,"props":13121,"children":13122},{"style":438},[13123],{"type":58,"value":1367},{"type":52,"tag":431,"props":13125,"children":13127},{"class":433,"line":13126},183,[13128,13132,13136,13140,13144,13148,13152,13156],{"type":52,"tag":431,"props":13129,"children":13130},{"style":438},[13131],{"type":58,"value":1268},{"type":52,"tag":431,"props":13133,"children":13134},{"style":740},[13135],{"type":58,"value":1380},{"type":52,"tag":431,"props":13137,"children":13138},{"style":438},[13139],{"type":58,"value":446},{"type":52,"tag":431,"props":13141,"children":13142},{"style":438},[13143],{"type":58,"value":375},{"type":52,"tag":431,"props":13145,"children":13146},{"style":438},[13147],{"type":58,"value":464},{"type":52,"tag":431,"props":13149,"children":13150},{"style":467},[13151],{"type":58,"value":8169},{"type":52,"tag":431,"props":13153,"children":13154},{"style":438},[13155],{"type":58,"value":446},{"type":52,"tag":431,"props":13157,"children":13158},{"style":438},[13159],{"type":58,"value":1406},{"type":52,"tag":431,"props":13161,"children":13163},{"class":433,"line":13162},184,[13164,13168,13172,13176,13180,13185],{"type":52,"tag":431,"props":13165,"children":13166},{"style":438},[13167],{"type":58,"value":1268},{"type":52,"tag":431,"props":13169,"children":13170},{"style":740},[13171],{"type":58,"value":1419},{"type":52,"tag":431,"props":13173,"children":13174},{"style":438},[13175],{"type":58,"value":446},{"type":52,"tag":431,"props":13177,"children":13178},{"style":438},[13179],{"type":58,"value":375},{"type":52,"tag":431,"props":13181,"children":13182},{"style":763},[13183],{"type":58,"value":13184}," 1.1",{"type":52,"tag":431,"props":13186,"children":13187},{"style":438},[13188],{"type":58,"value":1406},{"type":52,"tag":431,"props":13190,"children":13192},{"class":433,"line":13191},185,[13193,13197,13201,13205,13209,13213,13217,13221,13226],{"type":52,"tag":431,"props":13194,"children":13195},{"style":438},[13196],{"type":58,"value":1268},{"type":52,"tag":431,"props":13198,"children":13199},{"style":740},[13200],{"type":58,"value":1449},{"type":52,"tag":431,"props":13202,"children":13203},{"style":438},[13204],{"type":58,"value":446},{"type":52,"tag":431,"props":13206,"children":13207},{"style":438},[13208],{"type":58,"value":375},{"type":52,"tag":431,"props":13210,"children":13211},{"style":438},[13212],{"type":58,"value":1462},{"type":52,"tag":431,"props":13214,"children":13215},{"style":763},[13216],{"type":58,"value":9115},{"type":52,"tag":431,"props":13218,"children":13219},{"style":438},[13220],{"type":58,"value":479},{"type":52,"tag":431,"props":13222,"children":13223},{"style":763},[13224],{"type":58,"value":13225}," 192",{"type":52,"tag":431,"props":13227,"children":13228},{"style":438},[13229],{"type":58,"value":1481},{"type":52,"tag":431,"props":13231,"children":13233},{"class":433,"line":13232},186,[13234,13238,13242,13246,13250,13254,13259,13263],{"type":52,"tag":431,"props":13235,"children":13236},{"style":438},[13237],{"type":58,"value":1268},{"type":52,"tag":431,"props":13239,"children":13240},{"style":740},[13241],{"type":58,"value":1493},{"type":52,"tag":431,"props":13243,"children":13244},{"style":438},[13245],{"type":58,"value":446},{"type":52,"tag":431,"props":13247,"children":13248},{"style":438},[13249],{"type":58,"value":375},{"type":52,"tag":431,"props":13251,"children":13252},{"style":438},[13253],{"type":58,"value":464},{"type":52,"tag":431,"props":13255,"children":13256},{"style":467},[13257],{"type":58,"value":13258},"e9b99301-3af1-4d19-ab78-3fd0e8946fd1",{"type":52,"tag":431,"props":13260,"children":13261},{"style":438},[13262],{"type":58,"value":446},{"type":52,"tag":431,"props":13264,"children":13265},{"style":438},[13266],{"type":58,"value":1406},{"type":52,"tag":431,"props":13268,"children":13270},{"class":433,"line":13269},187,[13271,13275,13279,13283,13287,13291,13296],{"type":52,"tag":431,"props":13272,"children":13273},{"style":438},[13274],{"type":58,"value":1268},{"type":52,"tag":431,"props":13276,"children":13277},{"style":740},[13278],{"type":58,"value":410},{"type":52,"tag":431,"props":13280,"children":13281},{"style":438},[13282],{"type":58,"value":446},{"type":52,"tag":431,"props":13284,"children":13285},{"style":438},[13286],{"type":58,"value":375},{"type":52,"tag":431,"props":13288,"children":13289},{"style":438},[13290],{"type":58,"value":464},{"type":52,"tag":431,"props":13292,"children":13293},{"style":467},[13294],{"type":58,"value":13295},"Default data loader",{"type":52,"tag":431,"props":13297,"children":13298},{"style":438},[13299],{"type":58,"value":1349},{"type":52,"tag":431,"props":13301,"children":13303},{"class":433,"line":13302},188,[13304],{"type":52,"tag":431,"props":13305,"children":13306},{"style":438},[13307],{"type":58,"value":5096},{"type":52,"tag":431,"props":13309,"children":13311},{"class":433,"line":13310},189,[13312],{"type":52,"tag":431,"props":13313,"children":13314},{"style":438},[13315],{"type":58,"value":5105},{"type":52,"tag":431,"props":13317,"children":13319},{"class":433,"line":13318},190,[13320,13324,13328,13332,13336],{"type":52,"tag":431,"props":13321,"children":13322},{"style":438},[13323],{"type":58,"value":715},{"type":52,"tag":431,"props":13325,"children":13326},{"style":449},[13327],{"type":58,"value":5118},{"type":52,"tag":431,"props":13329,"children":13330},{"style":438},[13331],{"type":58,"value":446},{"type":52,"tag":431,"props":13333,"children":13334},{"style":438},[13335],{"type":58,"value":375},{"type":52,"tag":431,"props":13337,"children":13338},{"style":438},[13339],{"type":58,"value":1286},{"type":52,"tag":431,"props":13341,"children":13343},{"class":433,"line":13342},191,[13344,13348,13352,13356,13360],{"type":52,"tag":431,"props":13345,"children":13346},{"style":438},[13347],{"type":58,"value":5139},{"type":52,"tag":431,"props":13349,"children":13350},{"style":740},[13351],{"type":58,"value":9192},{"type":52,"tag":431,"props":13353,"children":13354},{"style":438},[13355],{"type":58,"value":446},{"type":52,"tag":431,"props":13357,"children":13358},{"style":438},[13359],{"type":58,"value":375},{"type":52,"tag":431,"props":13361,"children":13362},{"style":438},[13363],{"type":58,"value":1286},{"type":52,"tag":431,"props":13365,"children":13367},{"class":433,"line":13366},192,[13368,13372,13376,13380,13384],{"type":52,"tag":431,"props":13369,"children":13370},{"style":438},[13371],{"type":58,"value":1268},{"type":52,"tag":431,"props":13373,"children":13374},{"style":763},[13375],{"type":58,"value":8124},{"type":52,"tag":431,"props":13377,"children":13378},{"style":438},[13379],{"type":58,"value":446},{"type":52,"tag":431,"props":13381,"children":13382},{"style":438},[13383],{"type":58,"value":375},{"type":52,"tag":431,"props":13385,"children":13386},{"style":438},[13387],{"type":58,"value":13388}," [[\n",{"type":52,"tag":431,"props":13390,"children":13392},{"class":433,"line":13391},193,[13393,13398,13402,13406,13410,13414,13418,13422,13426,13430,13434,13438,13442,13446,13450,13454,13458,13462,13466,13470,13474,13478,13482],{"type":52,"tag":431,"props":13394,"children":13395},{"style":438},[13396],{"type":58,"value":13397},"        {",{"type":52,"tag":431,"props":13399,"children":13400},{"style":438},[13401],{"type":58,"value":446},{"type":52,"tag":431,"props":13403,"children":13404},{"style":1324},[13405],{"type":58,"value":5190},{"type":52,"tag":431,"props":13407,"children":13408},{"style":438},[13409],{"type":58,"value":446},{"type":52,"tag":431,"props":13411,"children":13412},{"style":438},[13413],{"type":58,"value":375},{"type":52,"tag":431,"props":13415,"children":13416},{"style":438},[13417],{"type":58,"value":464},{"type":52,"tag":431,"props":13419,"children":13420},{"style":467},[13421],{"type":58,"value":98},{"type":52,"tag":431,"props":13423,"children":13424},{"style":438},[13425],{"type":58,"value":446},{"type":52,"tag":431,"props":13427,"children":13428},{"style":438},[13429],{"type":58,"value":479},{"type":52,"tag":431,"props":13431,"children":13432},{"style":438},[13433],{"type":58,"value":464},{"type":52,"tag":431,"props":13435,"children":13436},{"style":1324},[13437],{"type":58,"value":1380},{"type":52,"tag":431,"props":13439,"children":13440},{"style":438},[13441],{"type":58,"value":446},{"type":52,"tag":431,"props":13443,"children":13444},{"style":438},[13445],{"type":58,"value":375},{"type":52,"tag":431,"props":13447,"children":13448},{"style":438},[13449],{"type":58,"value":464},{"type":52,"tag":431,"props":13451,"children":13452},{"style":467},[13453],{"type":58,"value":8124},{"type":52,"tag":431,"props":13455,"children":13456},{"style":438},[13457],{"type":58,"value":446},{"type":52,"tag":431,"props":13459,"children":13460},{"style":438},[13461],{"type":58,"value":479},{"type":52,"tag":431,"props":13463,"children":13464},{"style":438},[13465],{"type":58,"value":464},{"type":52,"tag":431,"props":13467,"children":13468},{"style":1324},[13469],{"type":58,"value":5255},{"type":52,"tag":431,"props":13471,"children":13472},{"style":438},[13473],{"type":58,"value":446},{"type":52,"tag":431,"props":13475,"children":13476},{"style":438},[13477],{"type":58,"value":375},{"type":52,"tag":431,"props":13479,"children":13480},{"style":763},[13481],{"type":58,"value":5268},{"type":52,"tag":431,"props":13483,"children":13484},{"style":438},[13485],{"type":58,"value":1706},{"type":52,"tag":431,"props":13487,"children":13489},{"class":433,"line":13488},194,[13490,13494,13498,13502,13506,13510,13514,13518,13522,13526,13530,13534,13538,13542,13546,13550,13554,13558,13562,13566,13570,13574,13578],{"type":52,"tag":431,"props":13491,"children":13492},{"style":438},[13493],{"type":58,"value":13397},{"type":52,"tag":431,"props":13495,"children":13496},{"style":438},[13497],{"type":58,"value":446},{"type":52,"tag":431,"props":13499,"children":13500},{"style":1324},[13501],{"type":58,"value":5190},{"type":52,"tag":431,"props":13503,"children":13504},{"style":438},[13505],{"type":58,"value":446},{"type":52,"tag":431,"props":13507,"children":13508},{"style":438},[13509],{"type":58,"value":375},{"type":52,"tag":431,"props":13511,"children":13512},{"style":438},[13513],{"type":58,"value":464},{"type":52,"tag":431,"props":13515,"children":13516},{"style":467},[13517],{"type":58,"value":10610},{"type":52,"tag":431,"props":13519,"children":13520},{"style":438},[13521],{"type":58,"value":446},{"type":52,"tag":431,"props":13523,"children":13524},{"style":438},[13525],{"type":58,"value":479},{"type":52,"tag":431,"props":13527,"children":13528},{"style":438},[13529],{"type":58,"value":464},{"type":52,"tag":431,"props":13531,"children":13532},{"style":1324},[13533],{"type":58,"value":1380},{"type":52,"tag":431,"props":13535,"children":13536},{"style":438},[13537],{"type":58,"value":446},{"type":52,"tag":431,"props":13539,"children":13540},{"style":438},[13541],{"type":58,"value":375},{"type":52,"tag":431,"props":13543,"children":13544},{"style":438},[13545],{"type":58,"value":464},{"type":52,"tag":431,"props":13547,"children":13548},{"style":467},[13549],{"type":58,"value":8124},{"type":52,"tag":431,"props":13551,"children":13552},{"style":438},[13553],{"type":58,"value":446},{"type":52,"tag":431,"props":13555,"children":13556},{"style":438},[13557],{"type":58,"value":479},{"type":52,"tag":431,"props":13559,"children":13560},{"style":438},[13561],{"type":58,"value":464},{"type":52,"tag":431,"props":13563,"children":13564},{"style":1324},[13565],{"type":58,"value":5255},{"type":52,"tag":431,"props":13567,"children":13568},{"style":438},[13569],{"type":58,"value":446},{"type":52,"tag":431,"props":13571,"children":13572},{"style":438},[13573],{"type":58,"value":375},{"type":52,"tag":431,"props":13575,"children":13576},{"style":763},[13577],{"type":58,"value":5268},{"type":52,"tag":431,"props":13579,"children":13580},{"style":438},[13581],{"type":58,"value":513},{"type":52,"tag":431,"props":13583,"children":13585},{"class":433,"line":13584},195,[13586],{"type":52,"tag":431,"props":13587,"children":13588},{"style":438},[13589],{"type":58,"value":13590},"      ]]\n",{"type":52,"tag":431,"props":13592,"children":13594},{"class":433,"line":13593},196,[13595],{"type":52,"tag":431,"props":13596,"children":13597},{"style":438},[13598],{"type":58,"value":1560},{"type":52,"tag":431,"props":13600,"children":13602},{"class":433,"line":13601},197,[13603,13607,13611,13615,13619],{"type":52,"tag":431,"props":13604,"children":13605},{"style":438},[13606],{"type":58,"value":5139},{"type":52,"tag":431,"props":13608,"children":13609},{"style":740},[13610],{"type":58,"value":9420},{"type":52,"tag":431,"props":13612,"children":13613},{"style":438},[13614],{"type":58,"value":446},{"type":52,"tag":431,"props":13616,"children":13617},{"style":438},[13618],{"type":58,"value":375},{"type":52,"tag":431,"props":13620,"children":13621},{"style":438},[13622],{"type":58,"value":1286},{"type":52,"tag":431,"props":13624,"children":13626},{"class":433,"line":13625},198,[13627,13631,13635,13639,13643,13647,13651,13655,13659,13663,13667,13671,13675,13679,13683,13687,13691,13695,13699,13703,13707,13711,13715,13719,13723,13727,13731],{"type":52,"tag":431,"props":13628,"children":13629},{"style":438},[13630],{"type":58,"value":1268},{"type":52,"tag":431,"props":13632,"children":13633},{"style":763},[13634],{"type":58,"value":612},{"type":52,"tag":431,"props":13636,"children":13637},{"style":438},[13638],{"type":58,"value":446},{"type":52,"tag":431,"props":13640,"children":13641},{"style":438},[13642],{"type":58,"value":375},{"type":52,"tag":431,"props":13644,"children":13645},{"style":438},[13646],{"type":58,"value":5181},{"type":52,"tag":431,"props":13648,"children":13649},{"style":438},[13650],{"type":58,"value":446},{"type":52,"tag":431,"props":13652,"children":13653},{"style":1324},[13654],{"type":58,"value":5190},{"type":52,"tag":431,"props":13656,"children":13657},{"style":438},[13658],{"type":58,"value":446},{"type":52,"tag":431,"props":13660,"children":13661},{"style":438},[13662],{"type":58,"value":375},{"type":52,"tag":431,"props":13664,"children":13665},{"style":438},[13666],{"type":58,"value":464},{"type":52,"tag":431,"props":13668,"children":13669},{"style":467},[13670],{"type":58,"value":1547},{"type":52,"tag":431,"props":13672,"children":13673},{"style":438},[13674],{"type":58,"value":446},{"type":52,"tag":431,"props":13676,"children":13677},{"style":438},[13678],{"type":58,"value":479},{"type":52,"tag":431,"props":13680,"children":13681},{"style":438},[13682],{"type":58,"value":464},{"type":52,"tag":431,"props":13684,"children":13685},{"style":1324},[13686],{"type":58,"value":1380},{"type":52,"tag":431,"props":13688,"children":13689},{"style":438},[13690],{"type":58,"value":446},{"type":52,"tag":431,"props":13692,"children":13693},{"style":438},[13694],{"type":58,"value":375},{"type":52,"tag":431,"props":13696,"children":13697},{"style":438},[13698],{"type":58,"value":464},{"type":52,"tag":431,"props":13700,"children":13701},{"style":467},[13702],{"type":58,"value":612},{"type":52,"tag":431,"props":13704,"children":13705},{"style":438},[13706],{"type":58,"value":446},{"type":52,"tag":431,"props":13708,"children":13709},{"style":438},[13710],{"type":58,"value":479},{"type":52,"tag":431,"props":13712,"children":13713},{"style":438},[13714],{"type":58,"value":464},{"type":52,"tag":431,"props":13716,"children":13717},{"style":1324},[13718],{"type":58,"value":5255},{"type":52,"tag":431,"props":13720,"children":13721},{"style":438},[13722],{"type":58,"value":446},{"type":52,"tag":431,"props":13724,"children":13725},{"style":438},[13726],{"type":58,"value":375},{"type":52,"tag":431,"props":13728,"children":13729},{"style":763},[13730],{"type":58,"value":5268},{"type":52,"tag":431,"props":13732,"children":13733},{"style":438},[13734],{"type":58,"value":5273},{"type":52,"tag":431,"props":13736,"children":13738},{"class":433,"line":13737},199,[13739],{"type":52,"tag":431,"props":13740,"children":13741},{"style":438},[13742],{"type":58,"value":1560},{"type":52,"tag":431,"props":13744,"children":13746},{"class":433,"line":13745},200,[13747,13751,13755,13759,13763],{"type":52,"tag":431,"props":13748,"children":13749},{"style":438},[13750],{"type":58,"value":5139},{"type":52,"tag":431,"props":13752,"children":13753},{"style":740},[13754],{"type":58,"value":1913},{"type":52,"tag":431,"props":13756,"children":13757},{"style":438},[13758],{"type":58,"value":446},{"type":52,"tag":431,"props":13760,"children":13761},{"style":438},[13762],{"type":58,"value":375},{"type":52,"tag":431,"props":13764,"children":13765},{"style":438},[13766],{"type":58,"value":1286},{"type":52,"tag":431,"props":13768,"children":13770},{"class":433,"line":13769},201,[13771,13775,13779,13783,13787,13791,13795,13799,13803,13807,13811,13815,13819,13823,13827,13831,13835,13839,13843,13847,13851,13855,13859,13863,13867,13871,13875],{"type":52,"tag":431,"props":13772,"children":13773},{"style":438},[13774],{"type":58,"value":1268},{"type":52,"tag":431,"props":13776,"children":13777},{"style":763},[13778],{"type":58,"value":5168},{"type":52,"tag":431,"props":13780,"children":13781},{"style":438},[13782],{"type":58,"value":446},{"type":52,"tag":431,"props":13784,"children":13785},{"style":438},[13786],{"type":58,"value":375},{"type":52,"tag":431,"props":13788,"children":13789},{"style":438},[13790],{"type":58,"value":5181},{"type":52,"tag":431,"props":13792,"children":13793},{"style":438},[13794],{"type":58,"value":446},{"type":52,"tag":431,"props":13796,"children":13797},{"style":1324},[13798],{"type":58,"value":5190},{"type":52,"tag":431,"props":13800,"children":13801},{"style":438},[13802],{"type":58,"value":446},{"type":52,"tag":431,"props":13804,"children":13805},{"style":438},[13806],{"type":58,"value":375},{"type":52,"tag":431,"props":13808,"children":13809},{"style":438},[13810],{"type":58,"value":464},{"type":52,"tag":431,"props":13812,"children":13813},{"style":467},[13814],{"type":58,"value":1547},{"type":52,"tag":431,"props":13816,"children":13817},{"style":438},[13818],{"type":58,"value":446},{"type":52,"tag":431,"props":13820,"children":13821},{"style":438},[13822],{"type":58,"value":479},{"type":52,"tag":431,"props":13824,"children":13825},{"style":438},[13826],{"type":58,"value":464},{"type":52,"tag":431,"props":13828,"children":13829},{"style":1324},[13830],{"type":58,"value":1380},{"type":52,"tag":431,"props":13832,"children":13833},{"style":438},[13834],{"type":58,"value":446},{"type":52,"tag":431,"props":13836,"children":13837},{"style":438},[13838],{"type":58,"value":375},{"type":52,"tag":431,"props":13840,"children":13841},{"style":438},[13842],{"type":58,"value":464},{"type":52,"tag":431,"props":13844,"children":13845},{"style":467},[13846],{"type":58,"value":5168},{"type":52,"tag":431,"props":13848,"children":13849},{"style":438},[13850],{"type":58,"value":446},{"type":52,"tag":431,"props":13852,"children":13853},{"style":438},[13854],{"type":58,"value":479},{"type":52,"tag":431,"props":13856,"children":13857},{"style":438},[13858],{"type":58,"value":464},{"type":52,"tag":431,"props":13860,"children":13861},{"style":1324},[13862],{"type":58,"value":5255},{"type":52,"tag":431,"props":13864,"children":13865},{"style":438},[13866],{"type":58,"value":446},{"type":52,"tag":431,"props":13868,"children":13869},{"style":438},[13870],{"type":58,"value":375},{"type":52,"tag":431,"props":13872,"children":13873},{"style":763},[13874],{"type":58,"value":5268},{"type":52,"tag":431,"props":13876,"children":13877},{"style":438},[13878],{"type":58,"value":5273},{"type":52,"tag":431,"props":13880,"children":13882},{"class":433,"line":13881},202,[13883],{"type":52,"tag":431,"props":13884,"children":13885},{"style":438},[13886],{"type":58,"value":1560},{"type":52,"tag":431,"props":13888,"children":13890},{"class":433,"line":13889},203,[13891,13895,13899,13903,13907],{"type":52,"tag":431,"props":13892,"children":13893},{"style":438},[13894],{"type":58,"value":5139},{"type":52,"tag":431,"props":13896,"children":13897},{"style":740},[13898],{"type":58,"value":10610},{"type":52,"tag":431,"props":13900,"children":13901},{"style":438},[13902],{"type":58,"value":446},{"type":52,"tag":431,"props":13904,"children":13905},{"style":438},[13906],{"type":58,"value":375},{"type":52,"tag":431,"props":13908,"children":13909},{"style":438},[13910],{"type":58,"value":1286},{"type":52,"tag":431,"props":13912,"children":13914},{"class":433,"line":13913},204,[13915,13919,13923,13927,13931,13935,13939,13943,13947,13951,13955,13959,13963,13967,13971,13975,13979,13983,13987,13991,13995,13999,14003,14007,14011,14015,14019],{"type":52,"tag":431,"props":13916,"children":13917},{"style":438},[13918],{"type":58,"value":1268},{"type":52,"tag":431,"props":13920,"children":13921},{"style":763},[13922],{"type":58,"value":604},{"type":52,"tag":431,"props":13924,"children":13925},{"style":438},[13926],{"type":58,"value":446},{"type":52,"tag":431,"props":13928,"children":13929},{"style":438},[13930],{"type":58,"value":375},{"type":52,"tag":431,"props":13932,"children":13933},{"style":438},[13934],{"type":58,"value":5181},{"type":52,"tag":431,"props":13936,"children":13937},{"style":438},[13938],{"type":58,"value":446},{"type":52,"tag":431,"props":13940,"children":13941},{"style":1324},[13942],{"type":58,"value":5190},{"type":52,"tag":431,"props":13944,"children":13945},{"style":438},[13946],{"type":58,"value":446},{"type":52,"tag":431,"props":13948,"children":13949},{"style":438},[13950],{"type":58,"value":375},{"type":52,"tag":431,"props":13952,"children":13953},{"style":438},[13954],{"type":58,"value":464},{"type":52,"tag":431,"props":13956,"children":13957},{"style":467},[13958],{"type":58,"value":1547},{"type":52,"tag":431,"props":13960,"children":13961},{"style":438},[13962],{"type":58,"value":446},{"type":52,"tag":431,"props":13964,"children":13965},{"style":438},[13966],{"type":58,"value":479},{"type":52,"tag":431,"props":13968,"children":13969},{"style":438},[13970],{"type":58,"value":464},{"type":52,"tag":431,"props":13972,"children":13973},{"style":1324},[13974],{"type":58,"value":1380},{"type":52,"tag":431,"props":13976,"children":13977},{"style":438},[13978],{"type":58,"value":446},{"type":52,"tag":431,"props":13980,"children":13981},{"style":438},[13982],{"type":58,"value":375},{"type":52,"tag":431,"props":13984,"children":13985},{"style":438},[13986],{"type":58,"value":464},{"type":52,"tag":431,"props":13988,"children":13989},{"style":467},[13990],{"type":58,"value":604},{"type":52,"tag":431,"props":13992,"children":13993},{"style":438},[13994],{"type":58,"value":446},{"type":52,"tag":431,"props":13996,"children":13997},{"style":438},[13998],{"type":58,"value":479},{"type":52,"tag":431,"props":14000,"children":14001},{"style":438},[14002],{"type":58,"value":464},{"type":52,"tag":431,"props":14004,"children":14005},{"style":1324},[14006],{"type":58,"value":5255},{"type":52,"tag":431,"props":14008,"children":14009},{"style":438},[14010],{"type":58,"value":446},{"type":52,"tag":431,"props":14012,"children":14013},{"style":438},[14014],{"type":58,"value":375},{"type":52,"tag":431,"props":14016,"children":14017},{"style":763},[14018],{"type":58,"value":5268},{"type":52,"tag":431,"props":14020,"children":14021},{"style":438},[14022],{"type":58,"value":5273},{"type":52,"tag":431,"props":14024,"children":14026},{"class":433,"line":14025},205,[14027],{"type":52,"tag":431,"props":14028,"children":14029},{"style":438},[14030],{"type":58,"value":1560},{"type":52,"tag":431,"props":14032,"children":14034},{"class":433,"line":14033},206,[14035,14039,14043,14047,14051],{"type":52,"tag":431,"props":14036,"children":14037},{"style":438},[14038],{"type":58,"value":5139},{"type":52,"tag":431,"props":14040,"children":14041},{"style":740},[14042],{"type":58,"value":3097},{"type":52,"tag":431,"props":14044,"children":14045},{"style":438},[14046],{"type":58,"value":446},{"type":52,"tag":431,"props":14048,"children":14049},{"style":438},[14050],{"type":58,"value":375},{"type":52,"tag":431,"props":14052,"children":14053},{"style":438},[14054],{"type":58,"value":1286},{"type":52,"tag":431,"props":14056,"children":14058},{"class":433,"line":14057},207,[14059,14063,14067,14071,14075,14079,14083,14087,14091,14095,14099,14103,14107,14111,14115,14119,14123,14127,14131,14135,14139,14143,14147,14151,14155,14159,14163],{"type":52,"tag":431,"props":14060,"children":14061},{"style":438},[14062],{"type":58,"value":1268},{"type":52,"tag":431,"props":14064,"children":14065},{"style":763},[14066],{"type":58,"value":612},{"type":52,"tag":431,"props":14068,"children":14069},{"style":438},[14070],{"type":58,"value":446},{"type":52,"tag":431,"props":14072,"children":14073},{"style":438},[14074],{"type":58,"value":375},{"type":52,"tag":431,"props":14076,"children":14077},{"style":438},[14078],{"type":58,"value":5181},{"type":52,"tag":431,"props":14080,"children":14081},{"style":438},[14082],{"type":58,"value":446},{"type":52,"tag":431,"props":14084,"children":14085},{"style":1324},[14086],{"type":58,"value":5190},{"type":52,"tag":431,"props":14088,"children":14089},{"style":438},[14090],{"type":58,"value":446},{"type":52,"tag":431,"props":14092,"children":14093},{"style":438},[14094],{"type":58,"value":375},{"type":52,"tag":431,"props":14096,"children":14097},{"style":438},[14098],{"type":58,"value":464},{"type":52,"tag":431,"props":14100,"children":14101},{"style":467},[14102],{"type":58,"value":3576},{"type":52,"tag":431,"props":14104,"children":14105},{"style":438},[14106],{"type":58,"value":446},{"type":52,"tag":431,"props":14108,"children":14109},{"style":438},[14110],{"type":58,"value":479},{"type":52,"tag":431,"props":14112,"children":14113},{"style":438},[14114],{"type":58,"value":464},{"type":52,"tag":431,"props":14116,"children":14117},{"style":1324},[14118],{"type":58,"value":1380},{"type":52,"tag":431,"props":14120,"children":14121},{"style":438},[14122],{"type":58,"value":446},{"type":52,"tag":431,"props":14124,"children":14125},{"style":438},[14126],{"type":58,"value":375},{"type":52,"tag":431,"props":14128,"children":14129},{"style":438},[14130],{"type":58,"value":464},{"type":52,"tag":431,"props":14132,"children":14133},{"style":467},[14134],{"type":58,"value":612},{"type":52,"tag":431,"props":14136,"children":14137},{"style":438},[14138],{"type":58,"value":446},{"type":52,"tag":431,"props":14140,"children":14141},{"style":438},[14142],{"type":58,"value":479},{"type":52,"tag":431,"props":14144,"children":14145},{"style":438},[14146],{"type":58,"value":464},{"type":52,"tag":431,"props":14148,"children":14149},{"style":1324},[14150],{"type":58,"value":5255},{"type":52,"tag":431,"props":14152,"children":14153},{"style":438},[14154],{"type":58,"value":446},{"type":52,"tag":431,"props":14156,"children":14157},{"style":438},[14158],{"type":58,"value":375},{"type":52,"tag":431,"props":14160,"children":14161},{"style":763},[14162],{"type":58,"value":5268},{"type":52,"tag":431,"props":14164,"children":14165},{"style":438},[14166],{"type":58,"value":5273},{"type":52,"tag":431,"props":14168,"children":14170},{"class":433,"line":14169},208,[14171],{"type":52,"tag":431,"props":14172,"children":14173},{"style":438},[14174],{"type":58,"value":1560},{"type":52,"tag":431,"props":14176,"children":14178},{"class":433,"line":14177},209,[14179,14183,14187,14191,14195],{"type":52,"tag":431,"props":14180,"children":14181},{"style":438},[14182],{"type":58,"value":5139},{"type":52,"tag":431,"props":14184,"children":14185},{"style":740},[14186],{"type":58,"value":3576},{"type":52,"tag":431,"props":14188,"children":14189},{"style":438},[14190],{"type":58,"value":446},{"type":52,"tag":431,"props":14192,"children":14193},{"style":438},[14194],{"type":58,"value":375},{"type":52,"tag":431,"props":14196,"children":14197},{"style":438},[14198],{"type":58,"value":1286},{"type":52,"tag":431,"props":14200,"children":14202},{"class":433,"line":14201},210,[14203,14207,14211,14215,14219,14223,14227,14231,14235,14239,14243,14247,14251,14255,14259,14263,14267,14271,14275,14279,14283,14287,14291,14295,14299,14303,14307],{"type":52,"tag":431,"props":14204,"children":14205},{"style":438},[14206],{"type":58,"value":1268},{"type":52,"tag":431,"props":14208,"children":14209},{"style":763},[14210],{"type":58,"value":612},{"type":52,"tag":431,"props":14212,"children":14213},{"style":438},[14214],{"type":58,"value":446},{"type":52,"tag":431,"props":14216,"children":14217},{"style":438},[14218],{"type":58,"value":375},{"type":52,"tag":431,"props":14220,"children":14221},{"style":438},[14222],{"type":58,"value":5181},{"type":52,"tag":431,"props":14224,"children":14225},{"style":438},[14226],{"type":58,"value":446},{"type":52,"tag":431,"props":14228,"children":14229},{"style":1324},[14230],{"type":58,"value":5190},{"type":52,"tag":431,"props":14232,"children":14233},{"style":438},[14234],{"type":58,"value":446},{"type":52,"tag":431,"props":14236,"children":14237},{"style":438},[14238],{"type":58,"value":375},{"type":52,"tag":431,"props":14240,"children":14241},{"style":438},[14242],{"type":58,"value":464},{"type":52,"tag":431,"props":14244,"children":14245},{"style":467},[14246],{"type":58,"value":3845},{"type":52,"tag":431,"props":14248,"children":14249},{"style":438},[14250],{"type":58,"value":446},{"type":52,"tag":431,"props":14252,"children":14253},{"style":438},[14254],{"type":58,"value":479},{"type":52,"tag":431,"props":14256,"children":14257},{"style":438},[14258],{"type":58,"value":464},{"type":52,"tag":431,"props":14260,"children":14261},{"style":1324},[14262],{"type":58,"value":1380},{"type":52,"tag":431,"props":14264,"children":14265},{"style":438},[14266],{"type":58,"value":446},{"type":52,"tag":431,"props":14268,"children":14269},{"style":438},[14270],{"type":58,"value":375},{"type":52,"tag":431,"props":14272,"children":14273},{"style":438},[14274],{"type":58,"value":464},{"type":52,"tag":431,"props":14276,"children":14277},{"style":467},[14278],{"type":58,"value":612},{"type":52,"tag":431,"props":14280,"children":14281},{"style":438},[14282],{"type":58,"value":446},{"type":52,"tag":431,"props":14284,"children":14285},{"style":438},[14286],{"type":58,"value":479},{"type":52,"tag":431,"props":14288,"children":14289},{"style":438},[14290],{"type":58,"value":464},{"type":52,"tag":431,"props":14292,"children":14293},{"style":1324},[14294],{"type":58,"value":5255},{"type":52,"tag":431,"props":14296,"children":14297},{"style":438},[14298],{"type":58,"value":446},{"type":52,"tag":431,"props":14300,"children":14301},{"style":438},[14302],{"type":58,"value":375},{"type":52,"tag":431,"props":14304,"children":14305},{"style":763},[14306],{"type":58,"value":5268},{"type":52,"tag":431,"props":14308,"children":14309},{"style":438},[14310],{"type":58,"value":5273},{"type":52,"tag":431,"props":14312,"children":14314},{"class":433,"line":14313},211,[14315],{"type":52,"tag":431,"props":14316,"children":14317},{"style":438},[14318],{"type":58,"value":1560},{"type":52,"tag":431,"props":14320,"children":14322},{"class":433,"line":14321},212,[14323,14327,14331,14335,14339],{"type":52,"tag":431,"props":14324,"children":14325},{"style":438},[14326],{"type":58,"value":5139},{"type":52,"tag":431,"props":14328,"children":14329},{"style":740},[14330],{"type":58,"value":3845},{"type":52,"tag":431,"props":14332,"children":14333},{"style":438},[14334],{"type":58,"value":446},{"type":52,"tag":431,"props":14336,"children":14337},{"style":438},[14338],{"type":58,"value":375},{"type":52,"tag":431,"props":14340,"children":14341},{"style":438},[14342],{"type":58,"value":1286},{"type":52,"tag":431,"props":14344,"children":14346},{"class":433,"line":14345},213,[14347,14351,14355,14359,14363,14367,14371,14375,14379,14383,14387,14391,14395,14399,14403,14407,14411,14415,14419,14423,14427,14431,14435,14439,14443,14447,14451],{"type":52,"tag":431,"props":14348,"children":14349},{"style":438},[14350],{"type":58,"value":1268},{"type":52,"tag":431,"props":14352,"children":14353},{"style":763},[14354],{"type":58,"value":612},{"type":52,"tag":431,"props":14356,"children":14357},{"style":438},[14358],{"type":58,"value":446},{"type":52,"tag":431,"props":14360,"children":14361},{"style":438},[14362],{"type":58,"value":375},{"type":52,"tag":431,"props":14364,"children":14365},{"style":438},[14366],{"type":58,"value":5181},{"type":52,"tag":431,"props":14368,"children":14369},{"style":438},[14370],{"type":58,"value":446},{"type":52,"tag":431,"props":14372,"children":14373},{"style":1324},[14374],{"type":58,"value":5190},{"type":52,"tag":431,"props":14376,"children":14377},{"style":438},[14378],{"type":58,"value":446},{"type":52,"tag":431,"props":14380,"children":14381},{"style":438},[14382],{"type":58,"value":375},{"type":52,"tag":431,"props":14384,"children":14385},{"style":438},[14386],{"type":58,"value":464},{"type":52,"tag":431,"props":14388,"children":14389},{"style":467},[14390],{"type":58,"value":4209},{"type":52,"tag":431,"props":14392,"children":14393},{"style":438},[14394],{"type":58,"value":446},{"type":52,"tag":431,"props":14396,"children":14397},{"style":438},[14398],{"type":58,"value":479},{"type":52,"tag":431,"props":14400,"children":14401},{"style":438},[14402],{"type":58,"value":464},{"type":52,"tag":431,"props":14404,"children":14405},{"style":1324},[14406],{"type":58,"value":1380},{"type":52,"tag":431,"props":14408,"children":14409},{"style":438},[14410],{"type":58,"value":446},{"type":52,"tag":431,"props":14412,"children":14413},{"style":438},[14414],{"type":58,"value":375},{"type":52,"tag":431,"props":14416,"children":14417},{"style":438},[14418],{"type":58,"value":464},{"type":52,"tag":431,"props":14420,"children":14421},{"style":467},[14422],{"type":58,"value":612},{"type":52,"tag":431,"props":14424,"children":14425},{"style":438},[14426],{"type":58,"value":446},{"type":52,"tag":431,"props":14428,"children":14429},{"style":438},[14430],{"type":58,"value":479},{"type":52,"tag":431,"props":14432,"children":14433},{"style":438},[14434],{"type":58,"value":464},{"type":52,"tag":431,"props":14436,"children":14437},{"style":1324},[14438],{"type":58,"value":5255},{"type":52,"tag":431,"props":14440,"children":14441},{"style":438},[14442],{"type":58,"value":446},{"type":52,"tag":431,"props":14444,"children":14445},{"style":438},[14446],{"type":58,"value":375},{"type":52,"tag":431,"props":14448,"children":14449},{"style":763},[14450],{"type":58,"value":5268},{"type":52,"tag":431,"props":14452,"children":14453},{"style":438},[14454],{"type":58,"value":5273},{"type":52,"tag":431,"props":14456,"children":14458},{"class":433,"line":14457},214,[14459],{"type":52,"tag":431,"props":14460,"children":14461},{"style":438},[14462],{"type":58,"value":1560},{"type":52,"tag":431,"props":14464,"children":14466},{"class":433,"line":14465},215,[14467,14471,14475,14479,14483],{"type":52,"tag":431,"props":14468,"children":14469},{"style":438},[14470],{"type":58,"value":5139},{"type":52,"tag":431,"props":14472,"children":14473},{"style":740},[14474],{"type":58,"value":12470},{"type":52,"tag":431,"props":14476,"children":14477},{"style":438},[14478],{"type":58,"value":446},{"type":52,"tag":431,"props":14480,"children":14481},{"style":438},[14482],{"type":58,"value":375},{"type":52,"tag":431,"props":14484,"children":14485},{"style":438},[14486],{"type":58,"value":1286},{"type":52,"tag":431,"props":14488,"children":14490},{"class":433,"line":14489},216,[14491,14495,14500,14504,14508,14512,14516,14520,14524,14528,14532,14536,14540,14544,14548,14552,14556,14560,14564,14568,14572,14576,14580,14584,14588,14592,14596],{"type":52,"tag":431,"props":14492,"children":14493},{"style":438},[14494],{"type":58,"value":1268},{"type":52,"tag":431,"props":14496,"children":14497},{"style":763},[14498],{"type":58,"value":14499},"ai_textSplitter",{"type":52,"tag":431,"props":14501,"children":14502},{"style":438},[14503],{"type":58,"value":446},{"type":52,"tag":431,"props":14505,"children":14506},{"style":438},[14507],{"type":58,"value":375},{"type":52,"tag":431,"props":14509,"children":14510},{"style":438},[14511],{"type":58,"value":5181},{"type":52,"tag":431,"props":14513,"children":14514},{"style":438},[14515],{"type":58,"value":446},{"type":52,"tag":431,"props":14517,"children":14518},{"style":1324},[14519],{"type":58,"value":5190},{"type":52,"tag":431,"props":14521,"children":14522},{"style":438},[14523],{"type":58,"value":446},{"type":52,"tag":431,"props":14525,"children":14526},{"style":438},[14527],{"type":58,"value":375},{"type":52,"tag":431,"props":14529,"children":14530},{"style":438},[14531],{"type":58,"value":464},{"type":52,"tag":431,"props":14533,"children":14534},{"style":467},[14535],{"type":58,"value":13295},{"type":52,"tag":431,"props":14537,"children":14538},{"style":438},[14539],{"type":58,"value":446},{"type":52,"tag":431,"props":14541,"children":14542},{"style":438},[14543],{"type":58,"value":479},{"type":52,"tag":431,"props":14545,"children":14546},{"style":438},[14547],{"type":58,"value":464},{"type":52,"tag":431,"props":14549,"children":14550},{"style":1324},[14551],{"type":58,"value":1380},{"type":52,"tag":431,"props":14553,"children":14554},{"style":438},[14555],{"type":58,"value":446},{"type":52,"tag":431,"props":14557,"children":14558},{"style":438},[14559],{"type":58,"value":375},{"type":52,"tag":431,"props":14561,"children":14562},{"style":438},[14563],{"type":58,"value":464},{"type":52,"tag":431,"props":14565,"children":14566},{"style":467},[14567],{"type":58,"value":14499},{"type":52,"tag":431,"props":14569,"children":14570},{"style":438},[14571],{"type":58,"value":446},{"type":52,"tag":431,"props":14573,"children":14574},{"style":438},[14575],{"type":58,"value":479},{"type":52,"tag":431,"props":14577,"children":14578},{"style":438},[14579],{"type":58,"value":464},{"type":52,"tag":431,"props":14581,"children":14582},{"style":1324},[14583],{"type":58,"value":5255},{"type":52,"tag":431,"props":14585,"children":14586},{"style":438},[14587],{"type":58,"value":446},{"type":52,"tag":431,"props":14589,"children":14590},{"style":438},[14591],{"type":58,"value":375},{"type":52,"tag":431,"props":14593,"children":14594},{"style":763},[14595],{"type":58,"value":5268},{"type":52,"tag":431,"props":14597,"children":14598},{"style":438},[14599],{"type":58,"value":5273},{"type":52,"tag":431,"props":14601,"children":14603},{"class":433,"line":14602},217,[14604],{"type":52,"tag":431,"props":14605,"children":14606},{"style":438},[14607],{"type":58,"value":1560},{"type":52,"tag":431,"props":14609,"children":14611},{"class":433,"line":14610},218,[14612,14616,14620,14624,14628],{"type":52,"tag":431,"props":14613,"children":14614},{"style":438},[14615],{"type":58,"value":5139},{"type":52,"tag":431,"props":14617,"children":14618},{"style":740},[14619],{"type":58,"value":4209},{"type":52,"tag":431,"props":14621,"children":14622},{"style":438},[14623],{"type":58,"value":446},{"type":52,"tag":431,"props":14625,"children":14626},{"style":438},[14627],{"type":58,"value":375},{"type":52,"tag":431,"props":14629,"children":14630},{"style":438},[14631],{"type":58,"value":1286},{"type":52,"tag":431,"props":14633,"children":14635},{"class":433,"line":14634},219,[14636,14640,14644,14648,14652,14656,14660,14664,14668,14672,14676,14680,14684,14688,14692,14696,14700,14704,14708,14712,14716,14720,14724,14728,14732,14736,14740],{"type":52,"tag":431,"props":14637,"children":14638},{"style":438},[14639],{"type":58,"value":1268},{"type":52,"tag":431,"props":14641,"children":14642},{"style":763},[14643],{"type":58,"value":612},{"type":52,"tag":431,"props":14645,"children":14646},{"style":438},[14647],{"type":58,"value":446},{"type":52,"tag":431,"props":14649,"children":14650},{"style":438},[14651],{"type":58,"value":375},{"type":52,"tag":431,"props":14653,"children":14654},{"style":438},[14655],{"type":58,"value":5181},{"type":52,"tag":431,"props":14657,"children":14658},{"style":438},[14659],{"type":58,"value":446},{"type":52,"tag":431,"props":14661,"children":14662},{"style":1324},[14663],{"type":58,"value":5190},{"type":52,"tag":431,"props":14665,"children":14666},{"style":438},[14667],{"type":58,"value":446},{"type":52,"tag":431,"props":14669,"children":14670},{"style":438},[14671],{"type":58,"value":375},{"type":52,"tag":431,"props":14673,"children":14674},{"style":438},[14675],{"type":58,"value":464},{"type":52,"tag":431,"props":14677,"children":14678},{"style":467},[14679],{"type":58,"value":98},{"type":52,"tag":431,"props":14681,"children":14682},{"style":438},[14683],{"type":58,"value":446},{"type":52,"tag":431,"props":14685,"children":14686},{"style":438},[14687],{"type":58,"value":479},{"type":52,"tag":431,"props":14689,"children":14690},{"style":438},[14691],{"type":58,"value":464},{"type":52,"tag":431,"props":14693,"children":14694},{"style":1324},[14695],{"type":58,"value":1380},{"type":52,"tag":431,"props":14697,"children":14698},{"style":438},[14699],{"type":58,"value":446},{"type":52,"tag":431,"props":14701,"children":14702},{"style":438},[14703],{"type":58,"value":375},{"type":52,"tag":431,"props":14705,"children":14706},{"style":438},[14707],{"type":58,"value":464},{"type":52,"tag":431,"props":14709,"children":14710},{"style":467},[14711],{"type":58,"value":612},{"type":52,"tag":431,"props":14713,"children":14714},{"style":438},[14715],{"type":58,"value":446},{"type":52,"tag":431,"props":14717,"children":14718},{"style":438},[14719],{"type":58,"value":479},{"type":52,"tag":431,"props":14721,"children":14722},{"style":438},[14723],{"type":58,"value":464},{"type":52,"tag":431,"props":14725,"children":14726},{"style":1324},[14727],{"type":58,"value":5255},{"type":52,"tag":431,"props":14729,"children":14730},{"style":438},[14731],{"type":58,"value":446},{"type":52,"tag":431,"props":14733,"children":14734},{"style":438},[14735],{"type":58,"value":375},{"type":52,"tag":431,"props":14737,"children":14738},{"style":763},[14739],{"type":58,"value":5268},{"type":52,"tag":431,"props":14741,"children":14742},{"style":438},[14743],{"type":58,"value":5273},{"type":52,"tag":431,"props":14745,"children":14747},{"class":433,"line":14746},220,[14748],{"type":52,"tag":431,"props":14749,"children":14750},{"style":438},[14751],{"type":58,"value":1560},{"type":52,"tag":431,"props":14753,"children":14755},{"class":433,"line":14754},221,[14756,14760,14764,14768,14772],{"type":52,"tag":431,"props":14757,"children":14758},{"style":438},[14759],{"type":58,"value":5139},{"type":52,"tag":431,"props":14761,"children":14762},{"style":740},[14763],{"type":58,"value":13295},{"type":52,"tag":431,"props":14765,"children":14766},{"style":438},[14767],{"type":58,"value":446},{"type":52,"tag":431,"props":14769,"children":14770},{"style":438},[14771],{"type":58,"value":375},{"type":52,"tag":431,"props":14773,"children":14774},{"style":438},[14775],{"type":58,"value":1286},{"type":52,"tag":431,"props":14777,"children":14779},{"class":433,"line":14778},222,[14780,14784,14789,14793,14797,14801,14805,14809,14813,14817,14821,14825,14829,14833,14837,14841,14845,14849,14853,14857,14861,14865,14869,14873,14877,14881,14885],{"type":52,"tag":431,"props":14781,"children":14782},{"style":438},[14783],{"type":58,"value":1268},{"type":52,"tag":431,"props":14785,"children":14786},{"style":763},[14787],{"type":58,"value":14788},"ai_document",{"type":52,"tag":431,"props":14790,"children":14791},{"style":438},[14792],{"type":58,"value":446},{"type":52,"tag":431,"props":14794,"children":14795},{"style":438},[14796],{"type":58,"value":375},{"type":52,"tag":431,"props":14798,"children":14799},{"style":438},[14800],{"type":58,"value":5181},{"type":52,"tag":431,"props":14802,"children":14803},{"style":438},[14804],{"type":58,"value":446},{"type":52,"tag":431,"props":14806,"children":14807},{"style":1324},[14808],{"type":58,"value":5190},{"type":52,"tag":431,"props":14810,"children":14811},{"style":438},[14812],{"type":58,"value":446},{"type":52,"tag":431,"props":14814,"children":14815},{"style":438},[14816],{"type":58,"value":375},{"type":52,"tag":431,"props":14818,"children":14819},{"style":438},[14820],{"type":58,"value":464},{"type":52,"tag":431,"props":14822,"children":14823},{"style":467},[14824],{"type":58,"value":98},{"type":52,"tag":431,"props":14826,"children":14827},{"style":438},[14828],{"type":58,"value":446},{"type":52,"tag":431,"props":14830,"children":14831},{"style":438},[14832],{"type":58,"value":479},{"type":52,"tag":431,"props":14834,"children":14835},{"style":438},[14836],{"type":58,"value":464},{"type":52,"tag":431,"props":14838,"children":14839},{"style":1324},[14840],{"type":58,"value":1380},{"type":52,"tag":431,"props":14842,"children":14843},{"style":438},[14844],{"type":58,"value":446},{"type":52,"tag":431,"props":14846,"children":14847},{"style":438},[14848],{"type":58,"value":375},{"type":52,"tag":431,"props":14850,"children":14851},{"style":438},[14852],{"type":58,"value":464},{"type":52,"tag":431,"props":14854,"children":14855},{"style":467},[14856],{"type":58,"value":14788},{"type":52,"tag":431,"props":14858,"children":14859},{"style":438},[14860],{"type":58,"value":446},{"type":52,"tag":431,"props":14862,"children":14863},{"style":438},[14864],{"type":58,"value":479},{"type":52,"tag":431,"props":14866,"children":14867},{"style":438},[14868],{"type":58,"value":464},{"type":52,"tag":431,"props":14870,"children":14871},{"style":1324},[14872],{"type":58,"value":5255},{"type":52,"tag":431,"props":14874,"children":14875},{"style":438},[14876],{"type":58,"value":446},{"type":52,"tag":431,"props":14878,"children":14879},{"style":438},[14880],{"type":58,"value":375},{"type":52,"tag":431,"props":14882,"children":14883},{"style":763},[14884],{"type":58,"value":5268},{"type":52,"tag":431,"props":14886,"children":14887},{"style":438},[14888],{"type":58,"value":5273},{"type":52,"tag":431,"props":14890,"children":14892},{"class":433,"line":14891},223,[14893],{"type":52,"tag":431,"props":14894,"children":14895},{"style":438},[14896],{"type":58,"value":5096},{"type":52,"tag":431,"props":14898,"children":14900},{"class":433,"line":14899},224,[14901],{"type":52,"tag":431,"props":14902,"children":14903},{"style":438},[14904],{"type":58,"value":6154},{"type":52,"tag":431,"props":14906,"children":14908},{"class":433,"line":14907},225,[14909,14913,14917,14921,14925],{"type":52,"tag":431,"props":14910,"children":14911},{"style":438},[14912],{"type":58,"value":715},{"type":52,"tag":431,"props":14914,"children":14915},{"style":449},[14916],{"type":58,"value":6167},{"type":52,"tag":431,"props":14918,"children":14919},{"style":438},[14920],{"type":58,"value":446},{"type":52,"tag":431,"props":14922,"children":14923},{"style":438},[14924],{"type":58,"value":375},{"type":52,"tag":431,"props":14926,"children":14927},{"style":438},[14928],{"type":58,"value":2925},{"type":52,"tag":431,"props":14930,"children":14932},{"class":433,"line":14931},226,[14933,14937,14941,14945,14949,14953,14957,14961,14965,14969],{"type":52,"tag":431,"props":14934,"children":14935},{"style":438},[14936],{"type":58,"value":715},{"type":52,"tag":431,"props":14938,"children":14939},{"style":449},[14940],{"type":58,"value":6192},{"type":52,"tag":431,"props":14942,"children":14943},{"style":438},[14944],{"type":58,"value":446},{"type":52,"tag":431,"props":14946,"children":14947},{"style":438},[14948],{"type":58,"value":375},{"type":52,"tag":431,"props":14950,"children":14951},{"style":438},[14952],{"type":58,"value":733},{"type":52,"tag":431,"props":14954,"children":14955},{"style":438},[14956],{"type":58,"value":446},{"type":52,"tag":431,"props":14958,"children":14959},{"style":740},[14960],{"type":58,"value":6213},{"type":52,"tag":431,"props":14962,"children":14963},{"style":438},[14964],{"type":58,"value":446},{"type":52,"tag":431,"props":14966,"children":14967},{"style":438},[14968],{"type":58,"value":375},{"type":52,"tag":431,"props":14970,"children":14971},{"style":438},[14972],{"type":58,"value":6226},{"type":52,"tag":431,"props":14974,"children":14976},{"class":433,"line":14975},227,[14977],{"type":52,"tag":431,"props":14978,"children":14979},{"style":438},[14980],{"type":58,"value":513},{"type":52,"tag":119,"props":14982,"children":14983},{},[],{"type":52,"tag":123,"props":14985,"children":14987},{"id":14986},"debugging-guidance",[14988],{"type":58,"value":14989},"Debugging guidance",{"type":52,"tag":61,"props":14991,"children":14992},{},[14993],{"type":58,"value":14994},"When a user reports a broken workflow, ask which node is failing and what error they see, then refer to these common issues:",{"type":52,"tag":6249,"props":14996,"children":14997},{},[14998,15019],{"type":52,"tag":6253,"props":14999,"children":15000},{},[15001],{"type":52,"tag":6257,"props":15002,"children":15003},{},[15004,15009,15014],{"type":52,"tag":6261,"props":15005,"children":15006},{},[15007],{"type":58,"value":15008},"Error \u002F Symptom",{"type":52,"tag":6261,"props":15010,"children":15011},{},[15012],{"type":58,"value":15013},"Cause",{"type":52,"tag":6261,"props":15015,"children":15016},{},[15017],{"type":58,"value":15018},"Fix",{"type":52,"tag":6272,"props":15020,"children":15021},{},[15022,15046,15071,15089,15112,15130],{"type":52,"tag":6257,"props":15023,"children":15024},{},[15025,15030,15041],{"type":52,"tag":6279,"props":15026,"children":15027},{},[15028],{"type":58,"value":15029},"\"Assistant not found\"",{"type":52,"tag":6279,"props":15031,"children":15032},{},[15033,15039],{"type":52,"tag":83,"props":15034,"children":15036},{"className":15035},[],[15037],{"type":58,"value":15038},"assistantData.name",{"type":58,"value":15040}," doesn't match an existing assistant",{"type":52,"tag":6279,"props":15042,"children":15043},{},[15044],{"type":58,"value":15045},"Create the assistant in the Pinecone Console first, then match the name exactly",{"type":52,"tag":6257,"props":15047,"children":15048},{},[15049,15054,15059],{"type":52,"tag":6279,"props":15050,"children":15051},{},[15052],{"type":58,"value":15053},"\"Invalid credentials\"",{"type":52,"tag":6279,"props":15055,"children":15056},{},[15057],{"type":58,"value":15058},"Pinecone API key not set or wrong credential on the node",{"type":52,"tag":6279,"props":15060,"children":15061},{},[15062,15064,15069],{"type":58,"value":15063},"Re-select the ",{"type":52,"tag":83,"props":15065,"children":15067},{"className":15066},[],[15068],{"type":58,"value":638},{"type":58,"value":15070}," credential on each Pinecone node",{"type":52,"tag":6257,"props":15072,"children":15073},{},[15074,15079,15084],{"type":52,"tag":6279,"props":15075,"children":15076},{},[15077],{"type":58,"value":15078},"\"Dimension mismatch\"",{"type":52,"tag":6279,"props":15080,"children":15081},{},[15082],{"type":58,"value":15083},"Embedding model dimensions don't match the index",{"type":52,"tag":6279,"props":15085,"children":15086},{},[15087],{"type":58,"value":15088},"Index and embeddings node must use the same dimensions (e.g., 1536 for text-embedding-3-small)",{"type":52,"tag":6257,"props":15090,"children":15091},{},[15092,15097,15107],{"type":52,"tag":6279,"props":15093,"children":15094},{},[15095],{"type":58,"value":15096},"Tool never called by Agent",{"type":52,"tag":6279,"props":15098,"children":15099},{},[15100,15105],{"type":52,"tag":83,"props":15101,"children":15103},{"className":15102},[],[15104],{"type":58,"value":8192},{"type":58,"value":15106}," is vague",{"type":52,"tag":6279,"props":15108,"children":15109},{},[15110],{"type":58,"value":15111},"Make the description specific: what data is in the store, what questions it can answer",{"type":52,"tag":6257,"props":15113,"children":15114},{},[15115,15120,15125],{"type":52,"tag":6279,"props":15116,"children":15117},{},[15118],{"type":58,"value":15119},"No results returned",{"type":52,"tag":6279,"props":15121,"children":15122},{},[15123],{"type":58,"value":15124},"Ingestion didn't run, or topK too low",{"type":52,"tag":6279,"props":15126,"children":15127},{},[15128],{"type":58,"value":15129},"Run Phase 1 first; try increasing topK to 20+",{"type":52,"tag":6257,"props":15131,"children":15132},{},[15133,15138,15143],{"type":52,"tag":6279,"props":15134,"children":15135},{},[15136],{"type":58,"value":15137},"HTTP node calling Pinecone API",{"type":52,"tag":6279,"props":15139,"children":15140},{},[15141],{"type":58,"value":15142},"Wrong pattern",{"type":52,"tag":6279,"props":15144,"children":15145},{},[15146,15148,15153,15155],{"type":58,"value":15147},"Replace with ",{"type":52,"tag":83,"props":15149,"children":15151},{"className":15150},[],[15152],{"type":58,"value":292},{"type":58,"value":15154}," or ",{"type":52,"tag":83,"props":15156,"children":15158},{"className":15157},[],[15159],{"type":58,"value":105},{"type":52,"tag":119,"props":15161,"children":15162},{},[],{"type":52,"tag":123,"props":15164,"children":15166},{"id":15165},"best-practices-review-checklist",[15167],{"type":58,"value":15168},"Best practices review checklist",{"type":52,"tag":61,"props":15170,"children":15171},{},[15172],{"type":58,"value":15173},"When reviewing an existing workflow:",{"type":52,"tag":392,"props":15175,"children":15176},{},[15177,15187,15197,15238,15247,15263,15273,15295,15319,15350,15360],{"type":52,"tag":71,"props":15178,"children":15179},{},[15180,15185],{"type":52,"tag":75,"props":15181,"children":15182},{},[15183],{"type":58,"value":15184},"No HTTP nodes calling Pinecone endpoints",{"type":58,"value":15186}," — replace any with the proper Pinecone node",{"type":52,"tag":71,"props":15188,"children":15189},{},[15190,15195],{"type":52,"tag":75,"props":15191,"children":15192},{},[15193],{"type":58,"value":15194},"Vector Store",{"type":58,"value":15196},": same Embeddings node connected to both insert and retrieve-as-tool instances",{"type":52,"tag":71,"props":15198,"children":15199},{},[15200,15205,15206,15211,15213,15218,15219,15224,15226,15231,15233],{"type":52,"tag":75,"props":15201,"children":15202},{},[15203],{"type":58,"value":15204},"Assistant",{"type":58,"value":701},{"type":52,"tag":83,"props":15207,"children":15209},{"className":15208},[],[15210],{"type":58,"value":4340},{"type":58,"value":15212}," includes both ",{"type":52,"tag":83,"props":15214,"children":15216},{"className":15215},[],[15217],{"type":58,"value":410},{"type":58,"value":412},{"type":52,"tag":83,"props":15220,"children":15222},{"className":15221},[],[15223],{"type":58,"value":418},{"type":58,"value":15225},"; ",{"type":52,"tag":83,"props":15227,"children":15229},{"className":15228},[],[15230],{"type":58,"value":531},{"type":58,"value":15232}," is present in ",{"type":52,"tag":83,"props":15234,"children":15236},{"className":15235},[],[15237],{"type":58,"value":539},{"type":52,"tag":71,"props":15239,"children":15240},{},[15241,15245],{"type":52,"tag":75,"props":15242,"children":15243},{},[15244],{"type":58,"value":8192},{"type":58,"value":15246}," is specific and descriptive (not generic like \"a vector store\")",{"type":52,"tag":71,"props":15248,"children":15249},{},[15250,15255,15256,15261],{"type":52,"tag":75,"props":15251,"children":15252},{},[15253],{"type":58,"value":15254},"Vector Store metadata",{"type":58,"value":701},{"type":52,"tag":83,"props":15257,"children":15259},{"className":15258},[],[15260],{"type":58,"value":8219},{"type":58,"value":15262}," stored in the Default Data Loader metadata for source citations",{"type":52,"tag":71,"props":15264,"children":15265},{},[15266,15271],{"type":52,"tag":75,"props":15267,"children":15268},{},[15269],{"type":58,"value":15270},"Assistant file metadata",{"type":58,"value":15272},": files uploaded with meaningful key-value metadata when filtering will be needed later",{"type":52,"tag":71,"props":15274,"children":15275},{},[15276,15281,15282,15287,15288,15293],{"type":52,"tag":75,"props":15277,"children":15278},{},[15279],{"type":58,"value":15280},"Metadata filter",{"type":58,"value":701},{"type":52,"tag":83,"props":15283,"children":15285},{"className":15284},[],[15286],{"type":58,"value":6893},{"type":58,"value":412},{"type":52,"tag":83,"props":15289,"children":15291},{"className":15290},[],[15292],{"type":58,"value":7531},{"type":58,"value":15294}," use a metadata filter (not both filter fields at once) when scoping to a subset of files",{"type":52,"tag":71,"props":15296,"children":15297},{},[15298,15303,15304,15310,15312,15317],{"type":52,"tag":75,"props":15299,"children":15300},{},[15301],{"type":58,"value":15302},"Multimodal upload",{"type":58,"value":701},{"type":52,"tag":83,"props":15305,"children":15307},{"className":15306},[],[15308],{"type":58,"value":15309},"multimodalFile: true",{"type":58,"value":15311}," is set on ",{"type":52,"tag":83,"props":15313,"children":15315},{"className":15314},[],[15316],{"type":58,"value":1059},{"type":58,"value":15318}," when PDFs contain images or charts — this is required to index visual content and is NOT the default",{"type":52,"tag":71,"props":15320,"children":15321},{},[15322,15327,15328,15334,15335,15341,15343,15348],{"type":52,"tag":75,"props":15323,"children":15324},{},[15325],{"type":58,"value":15326},"Multimodal retrieval",{"type":58,"value":701},{"type":52,"tag":83,"props":15329,"children":15331},{"className":15330},[],[15332],{"type":58,"value":15333},"includeMultimodalContext: true",{"type":58,"value":412},{"type":52,"tag":83,"props":15336,"children":15338},{"className":15337},[],[15339],{"type":58,"value":15340},"includeBinaryContent: true",{"type":58,"value":15342}," on ",{"type":52,"tag":83,"props":15344,"children":15346},{"className":15345},[],[15347],{"type":58,"value":7531},{"type":58,"value":15349}," when the workflow needs image chunks alongside text",{"type":52,"tag":71,"props":15351,"children":15352},{},[15353,15358],{"type":52,"tag":75,"props":15354,"children":15355},{},[15356],{"type":58,"value":15357},"Chunk size",{"type":58,"value":15359}," is appropriate for the content type (see chunking guidance above)",{"type":52,"tag":71,"props":15361,"children":15362},{},[15363,15368],{"type":52,"tag":75,"props":15364,"children":15365},{},[15366],{"type":58,"value":15367},"Index exists",{"type":58,"value":15369}," with correct dimensions before the workflow runs",{"type":52,"tag":15371,"props":15372,"children":15373},"style",{},[15374],{"type":58,"value":15375},"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":15377,"total":1709},[15378,15396,15411,15427,15438,15449,15462,15469,15481,15495,15507,15515],{"slug":15379,"name":15380,"fn":15381,"description":15382,"org":15383,"tags":15384,"stars":24,"repoUrl":25,"updatedAt":15395},"pineconeassistant","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":9,"name":10,"logoUrl":11,"githubOrg":12},[15385,15388,15391,15392],{"name":15386,"slug":15387,"type":16},"Knowledge Management","knowledge-management",{"name":15389,"slug":15390,"type":16},"LLM","llm",{"name":10,"slug":9,"type":16},{"name":15393,"slug":15394,"type":16},"Search","search","2026-07-13T06:02:15.573985",{"slug":15397,"name":15398,"fn":15399,"description":15400,"org":15401,"tags":15402,"stars":24,"repoUrl":25,"updatedAt":15410},"pineconecli","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":9,"name":10,"logoUrl":11,"githubOrg":12},[15403,15406,15409],{"name":15404,"slug":15405,"type":16},"CLI","cli",{"name":15407,"slug":15408,"type":16},"Database","database",{"name":10,"slug":9,"type":16},"2026-07-13T06:02:07.032383",{"slug":15412,"name":15413,"fn":15414,"description":15415,"org":15416,"tags":15417,"stars":24,"repoUrl":25,"updatedAt":15426},"pineconedocs","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":9,"name":10,"logoUrl":11,"githubOrg":12},[15418,15421,15422,15425],{"name":15419,"slug":15420,"type":16},"Documentation","documentation",{"name":10,"slug":9,"type":16},{"name":15423,"slug":15424,"type":16},"Reference","reference",{"name":15393,"slug":15394,"type":16},"2026-07-13T06:02:12.996533",{"slug":15428,"name":15429,"fn":15430,"description":15431,"org":15432,"tags":15433,"stars":24,"repoUrl":25,"updatedAt":15437},"pineconefull-text-search","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":9,"name":10,"logoUrl":11,"githubOrg":12},[15434,15435,15436],{"name":15407,"slug":15408,"type":16},{"name":10,"slug":9,"type":16},{"name":15393,"slug":15394,"type":16},"2026-07-13T06:02:18.270055",{"slug":15439,"name":15440,"fn":15441,"description":15442,"org":15443,"tags":15444,"stars":24,"repoUrl":25,"updatedAt":15448},"pineconehelp","pinecone:help","provide Pinecone skill guidance","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":9,"name":10,"logoUrl":11,"githubOrg":12},[15445,15446,15447],{"name":15419,"slug":15420,"type":16},{"name":10,"slug":9,"type":16},{"name":15423,"slug":15424,"type":16},"2026-07-13T06:02:11.702305",{"slug":15450,"name":15451,"fn":15452,"description":15453,"org":15454,"tags":15455,"stars":24,"repoUrl":25,"updatedAt":15461},"pineconemcp","pinecone:mcp","use 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":9,"name":10,"logoUrl":11,"githubOrg":12},[15456,15457,15459,15460],{"name":15407,"slug":15408,"type":16},{"name":15458,"slug":35,"type":16},"MCP",{"name":10,"slug":9,"type":16},{"name":15393,"slug":15394,"type":16},"2026-07-16T05:59:21.318686",{"slug":4,"name":5,"fn":6,"description":7,"org":15463,"tags":15464,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[15465,15466,15467,15468],{"name":15,"slug":15,"type":16},{"name":10,"slug":9,"type":16},{"name":18,"slug":19,"type":16},{"name":22,"slug":23,"type":16},{"slug":15470,"name":15471,"fn":15472,"description":15473,"org":15474,"tags":15475,"stars":24,"repoUrl":25,"updatedAt":15480},"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":9,"name":10,"logoUrl":11,"githubOrg":12},[15476,15477,15478,15479],{"name":15407,"slug":15408,"type":16},{"name":15458,"slug":35,"type":16},{"name":10,"slug":9,"type":16},{"name":15393,"slug":15394,"type":16},"2026-07-13T06:02:14.255922",{"slug":15482,"name":15483,"fn":15484,"description":15485,"org":15486,"tags":15487,"stars":24,"repoUrl":25,"updatedAt":15494},"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":9,"name":10,"logoUrl":11,"githubOrg":12},[15488,15489,15490,15493],{"name":15407,"slug":15408,"type":16},{"name":15458,"slug":35,"type":16},{"name":15491,"slug":15492,"type":16},"Onboarding","onboarding",{"name":10,"slug":9,"type":16},"2026-07-13T06:02:16.886569",{"slug":15496,"name":15496,"fn":15381,"description":15382,"org":15497,"tags":15498,"stars":1554,"repoUrl":15505,"updatedAt":15506},"pinecone-assistant",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[15499,15502,15503,15504],{"name":15500,"slug":15501,"type":16},"Documents","documents",{"name":15389,"slug":15390,"type":16},{"name":10,"slug":9,"type":16},{"name":15393,"slug":15394,"type":16},"https:\u002F\u002Fgithub.com\u002Fpinecone-io\u002Fskills","2026-07-13T06:02:40.044479",{"slug":15508,"name":15508,"fn":15399,"description":15400,"org":15509,"tags":15510,"stars":1554,"repoUrl":15505,"updatedAt":15514},"pinecone-cli",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[15511,15512,15513],{"name":15404,"slug":15405,"type":16},{"name":15407,"slug":15408,"type":16},{"name":10,"slug":9,"type":16},"2026-07-13T06:02:31.804044",{"slug":15516,"name":15516,"fn":15414,"description":15415,"org":15517,"tags":15518,"stars":1554,"repoUrl":15505,"updatedAt":15522},"pinecone-docs",{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[15519,15520,15521],{"name":15419,"slug":15420,"type":16},{"name":10,"slug":9,"type":16},{"name":15423,"slug":15424,"type":16},"2026-07-13T06:02:35.982565",{"items":15524,"total":1370},[15525,15532,15538,15545,15551,15557,15564],{"slug":15379,"name":15380,"fn":15381,"description":15382,"org":15526,"tags":15527,"stars":24,"repoUrl":25,"updatedAt":15395},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[15528,15529,15530,15531],{"name":15386,"slug":15387,"type":16},{"name":15389,"slug":15390,"type":16},{"name":10,"slug":9,"type":16},{"name":15393,"slug":15394,"type":16},{"slug":15397,"name":15398,"fn":15399,"description":15400,"org":15533,"tags":15534,"stars":24,"repoUrl":25,"updatedAt":15410},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[15535,15536,15537],{"name":15404,"slug":15405,"type":16},{"name":15407,"slug":15408,"type":16},{"name":10,"slug":9,"type":16},{"slug":15412,"name":15413,"fn":15414,"description":15415,"org":15539,"tags":15540,"stars":24,"repoUrl":25,"updatedAt":15426},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[15541,15542,15543,15544],{"name":15419,"slug":15420,"type":16},{"name":10,"slug":9,"type":16},{"name":15423,"slug":15424,"type":16},{"name":15393,"slug":15394,"type":16},{"slug":15428,"name":15429,"fn":15430,"description":15431,"org":15546,"tags":15547,"stars":24,"repoUrl":25,"updatedAt":15437},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[15548,15549,15550],{"name":15407,"slug":15408,"type":16},{"name":10,"slug":9,"type":16},{"name":15393,"slug":15394,"type":16},{"slug":15439,"name":15440,"fn":15441,"description":15442,"org":15552,"tags":15553,"stars":24,"repoUrl":25,"updatedAt":15448},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[15554,15555,15556],{"name":15419,"slug":15420,"type":16},{"name":10,"slug":9,"type":16},{"name":15423,"slug":15424,"type":16},{"slug":15450,"name":15451,"fn":15452,"description":15453,"org":15558,"tags":15559,"stars":24,"repoUrl":25,"updatedAt":15461},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[15560,15561,15562,15563],{"name":15407,"slug":15408,"type":16},{"name":15458,"slug":35,"type":16},{"name":10,"slug":9,"type":16},{"name":15393,"slug":15394,"type":16},{"slug":4,"name":5,"fn":6,"description":7,"org":15565,"tags":15566,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":9,"name":10,"logoUrl":11,"githubOrg":12},[15567,15568,15569,15570],{"name":15,"slug":15,"type":16},{"name":10,"slug":9,"type":16},{"name":18,"slug":19,"type":16},{"name":22,"slug":23,"type":16}]