@n8n-as-code/skills 2.1.0-next.49 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/assets/n8n-credentials-ontology.json +1 -1
- package/dist/assets/n8n-docs-complete.json +579 -416
- package/dist/assets/n8n-knowledge-index.json +365 -171
- package/dist/assets/n8n-nodes-index.json +5 -5
- package/dist/assets/n8n-nodes-technical.json +5 -5
- package/dist/assets/workflows-index.json +1 -1
- package/package.json +1 -1
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
"generatedAt": "2026-05-
|
|
2
|
+
"generatedAt": "2026-05-11T13:29:19.741Z",
|
|
3
3
|
"version": "1.0.0",
|
|
4
4
|
"sourceUrl": "https://docs.n8n.io/llms.txt",
|
|
5
|
-
"totalPages":
|
|
5
|
+
"totalPages": 1278,
|
|
6
6
|
"statistics": {
|
|
7
7
|
"byCategory": {
|
|
8
|
-
"other":
|
|
8
|
+
"other": 513,
|
|
9
9
|
"tutorials": 27,
|
|
10
|
-
"advanced-ai":
|
|
10
|
+
"advanced-ai": 28,
|
|
11
11
|
"api": 6,
|
|
12
12
|
"code": 20,
|
|
13
13
|
"data": 38,
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
},
|
|
22
22
|
"withNodeNames": 471,
|
|
23
23
|
"withUseCases": 40,
|
|
24
|
-
"withCodeExamples":
|
|
24
|
+
"withCodeExamples": 186
|
|
25
25
|
},
|
|
26
26
|
"categories": {
|
|
27
27
|
"other": {
|
|
28
28
|
"description": "General documentation and guides",
|
|
29
|
-
"totalPages":
|
|
29
|
+
"totalPages": 513,
|
|
30
30
|
"pages": [
|
|
31
31
|
"page-0001",
|
|
32
32
|
"page-0002",
|
|
@@ -49,7 +49,6 @@
|
|
|
49
49
|
"page-0237",
|
|
50
50
|
"page-0238",
|
|
51
51
|
"page-0239",
|
|
52
|
-
"page-0240",
|
|
53
52
|
"page-0654",
|
|
54
53
|
"page-0655",
|
|
55
54
|
"page-0656",
|
|
@@ -579,7 +578,7 @@
|
|
|
579
578
|
},
|
|
580
579
|
"advanced-ai": {
|
|
581
580
|
"description": "AI agents, chains, RAG, memory, and LangChain integration",
|
|
582
|
-
"totalPages":
|
|
581
|
+
"totalPages": 28,
|
|
583
582
|
"pages": [
|
|
584
583
|
"page-0017",
|
|
585
584
|
"page-0018",
|
|
@@ -602,6 +601,9 @@
|
|
|
602
601
|
"page-0035",
|
|
603
602
|
"page-0036",
|
|
604
603
|
"page-0037",
|
|
604
|
+
"page-0038",
|
|
605
|
+
"page-0039",
|
|
606
|
+
"page-0040",
|
|
605
607
|
"page-0041",
|
|
606
608
|
"page-0042",
|
|
607
609
|
"page-0043",
|
|
@@ -4838,6 +4840,99 @@
|
|
|
4838
4840
|
},
|
|
4839
4841
|
{
|
|
4840
4842
|
"id": "page-0037",
|
|
4843
|
+
"title": "Let AI specify tool parameters",
|
|
4844
|
+
"url": "https://docs.n8n.io/advanced-ai/examples/using-the-fromai-function/index.md",
|
|
4845
|
+
"urlPath": "advanced-ai/examples/using-the-fromai-function/index.md",
|
|
4846
|
+
"category": "advanced-ai",
|
|
4847
|
+
"subcategory": "examples",
|
|
4848
|
+
"nodeName": null,
|
|
4849
|
+
"nodeType": null,
|
|
4850
|
+
"content": {
|
|
4851
|
+
"markdown": "# Let AI specify the tool parameters\n\nWhen configuring [tools](../../../glossary/#ai-tool) connected to the Tools Agent, many parameters can be filled in by the AI model itself. The AI model will use the context from the task and information from other connected tools to fill in the appropriate details.\n\nThere are two ways to do this, and you can switch between them.\n\n## Let the model fill in the parameter\n\nEach appropriate parameter field in the tool's editing dialog has an extra button at the end:\n\nOn activating this button, the [AI Agent](../../../glossary/#ai-agent) will fill in the expression for you, with no need for any further user input. The field itself is filled in with a message indicating that the parameter has been defined automatically by the model.\n\nIf you want to define the parameter yourself, click on the 'X' in this box to revert to user-defined values. Note that the 'expression' field will now contain the expression generated by this feature, though you can now edit it further to add extra details as described in the following section.\n\nWarning\n\nActivating this feature will overwrite any manual definition you may have already added.\n\n## Use the `$fromAI()` function\n\nThe `$fromAI()` function uses AI to dynamically fill in parameters for tools connected to the [Tools AI agent](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/tools-agent/).\n\nOnly for tools\n\nThe `$fromAI()` function is only available for tools connected to the AI Agent node. The `$fromAI()` function doesn't work with the [Code](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolcode/) tool or with [other non-tool cluster sub-nodes](../../../integrations/builtin/cluster-nodes/sub-nodes/).\n\nTo use the `$fromAI()` function, call it with the required `key` parameter:\n\n```\n{{ $fromAI('email') }}\n```\n\nThe `key` parameter and other arguments to the `$fromAI()` function aren't references to existing values. Instead, think of these arguments as hints that the AI model will use to populate the right data.\n\nFor instance, if you choose a key called `email`, the AI Model will look for an email address in its context, other tools, and input data. In chat workflows, it may ask the user for an email address if it can't find one elsewhere. You can optionally pass other parameters like `description` to give extra context to the AI model.\n\n### Parameters\n\nThe `$fromAI()` function accepts the following parameters:\n\n| Parameter | Type | Required? | Description |\n| -------------- | ------ | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `key` | string | | A string representing the key or name of the argument. This must be between 1 and 64 characters in length and can only contain lowercase letters, uppercase letters, numbers, underscores, and hyphens. |\n| `description` | string | | A string describing the argument. |\n| `type` | string | | A string specifying the data type. Can be string, number, boolean, or json (defaults to string). |\n| `defaultValue` | any | | The default value to use for the argument. |\n\n### Examples\n\nAs an example, you could use the following `$fromAI()` expression to dynamically populate a field with a name:\n\n```\n$fromAI(\"name\", \"The commenter's name\", \"string\", \"Jane Doe\")\n```\n\nIf you don't need the optional parameters, you could simplify this as:\n\n```\n$fromAI(\"name\")\n```\n\nTo dynamically populate the number of items you have in stock, you could use a `$fromAI()` expression like this:\n\n```\n$fromAI(\"numItemsInStock\", \"Number of items in stock\", \"number\", 5)\n```\n\nIf you only want to fill in parts of a field with a dynamic value from the model, you can use it in a normal expression as well. For example, if you want the model to fill out the `subject` parameter for an e-mail, but always pre-fix the generated value with the string 'Generated by AI:', you could use the following expression:\n\n```\nGenerated by AI: {{ $fromAI(\"subject\") }}\n```\n\n### Templates\n\nYou can see the `$fromAI()` function in action in the following [templates](../../../glossary/#template-n8n):\n\n- [Angie, Personal AI Assistant with Telegram Voice and Text](https://n8n.io/workflows/2462-angie-personal-ai-assistant-with-telegram-voice-and-text/)\n- [Automate Customer Support Issue Resolution using AI Text Classifier](https://n8n.io/workflows/2468-automate-customer-support-issue-resolution-using-ai-text-classifier/)\n- [Scale Deal Flow with a Pitch Deck AI Vision, Chatbot and QDrant Vector Store](https://n8n.io/workflows/2464-scale-deal-flow-with-a-pitch-deck-ai-vision-chatbot-and-qdrant-vector-store/)\n",
|
|
4852
|
+
"excerpt": "# Let AI specify the tool parameters When configuring [tools](../../../glossary/#ai-tool) connected to the Tools Agent, many parameters can be filled in by the AI model itself. The AI model will use the context from the task and information from other connected tools to fill in the appropriate details. There are two ways to do this, and you can switch between them. ## Let the model fill in the parameter Each appropriate parameter field in the tool's editing dialog has an extra button at the...",
|
|
4853
|
+
"sections": [
|
|
4854
|
+
{
|
|
4855
|
+
"title": "Let AI specify the tool parameters",
|
|
4856
|
+
"level": 1,
|
|
4857
|
+
"content": "When configuring [tools](../../../glossary/#ai-tool) connected to the Tools Agent, many parameters can be filled in by the AI model itself. The AI model will use the context from the task and information from other connected tools to fill in the appropriate details.\n\nThere are two ways to do this, and you can switch between them."
|
|
4858
|
+
}
|
|
4859
|
+
]
|
|
4860
|
+
},
|
|
4861
|
+
"metadata": {
|
|
4862
|
+
"keywords": [
|
|
4863
|
+
"specify",
|
|
4864
|
+
"tool",
|
|
4865
|
+
"parameters",
|
|
4866
|
+
"model",
|
|
4867
|
+
"fill",
|
|
4868
|
+
"parameter",
|
|
4869
|
+
"`$fromai()`",
|
|
4870
|
+
"function",
|
|
4871
|
+
"examples",
|
|
4872
|
+
"templates"
|
|
4873
|
+
],
|
|
4874
|
+
"useCases": [],
|
|
4875
|
+
"operations": [],
|
|
4876
|
+
"codeExamples": 5,
|
|
4877
|
+
"complexity": "intermediate",
|
|
4878
|
+
"readingTime": "4 min",
|
|
4879
|
+
"contentLength": 5438,
|
|
4880
|
+
"relatedPages": []
|
|
4881
|
+
},
|
|
4882
|
+
"searchIndex": {
|
|
4883
|
+
"fullText": "let ai specify tool parameters # let ai specify the tool parameters\n\nwhen configuring [tools](../../../glossary/#ai-tool) connected to the tools agent, many parameters can be filled in by the ai model itself. the ai model will use the context from the task and information from other connected tools to fill in the appropriate details.\n\nthere are two ways to do this, and you can switch between them.\n\n## let the model fill in the parameter\n\neach appropriate parameter field in the tool's editing dialog has an extra button at the end:\n\non activating this button, the [ai agent](../../../glossary/#ai-agent) will fill in the expression for you, with no need for any further user input. the field itself is filled in with a message indicating that the parameter has been defined automatically by the model.\n\nif you want to define the parameter yourself, click on the 'x' in this box to revert to user-defined values. note that the 'expression' field will now contain the expression generated by this feature, though you can now edit it further to add extra details as described in the following section.\n\nwarning\n\nactivating this feature will overwrite any manual definition you may have already added.\n\n## use the `$fromai()` function\n\nthe `$fromai()` function uses ai to dynamically fill in parameters for tools connected to the [tools ai agent](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/tools-agent/).\n\nonly for tools\n\nthe `$fromai()` function is only available for tools connected to the ai agent node. the `$fromai()` function doesn't work with the [code](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolcode/) tool or with [other non-tool cluster sub-nodes](../../../integrations/builtin/cluster-nodes/sub-nodes/).\n\nto use the `$fromai()` function, call it with the required `key` parameter:\n\n```\n{{ $fromai('email') }}\n```\n\nthe `key` parameter and other arguments to the `$fromai()` function aren't references to existing values. instead, think of these arguments as hints that the ai model will use to populate the right data.\n\nfor instance, if you choose a key called `email`, the ai model will look for an email address in its context, other tools, and input data. in chat workflows, it may ask the user for an email address if it can't find one elsewhere. you can optionally pass other parameters like `description` to give extra context to the ai model.\n\n### parameters\n\nthe `$fromai()` function accepts the following parameters:\n\n| parameter | type | required? | description |\n| -------------- | ------ | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `key` | string | | a string representing the key or name of the argument. this must be between 1 and 64 characters in length and can only contain lowercase letters, uppercase letters, numbers, underscores, and hyphens. |\n| `description` | string | | a string describing the argument. |\n| `type` | string | | a string specifying the data type. can be string, number, boolean, or json (defaults to string). |\n| `defaultvalue` | any | | the default value to use for the argument. |\n\n### examples\n\nas an example, you could use the following `$fromai()` expression to dynamically populate a field with a name:\n\n```\n$fromai(\"name\", \"the commenter's name\", \"string\", \"jane doe\")\n```\n\nif you don't need the optional parameters, you could simplify this as:\n\n```\n$fromai(\"name\")\n```\n\nto dynamically populate the number of items you have in stock, you could use a `$fromai()` expression like this:\n\n```\n$fromai(\"numitemsinstock\", \"number of items in stock\", \"number\", 5)\n```\n\nif you only want to fill in parts of a field with a dynamic value from the model, you can use it in a normal expression as well. for example, if you want the model to fill out the `subject` parameter for an e-mail, but always pre-fix the generated value with the string 'generated by ai:', you could use the following expression:\n\n```\ngenerated by ai: {{ $fromai(\"subject\") }}\n```\n\n### templates\n\nyou can see the `$fromai()` function in action in the following [templates](../../../glossary/#template-n8n):\n\n- [angie, personal ai assistant with telegram voice and text](https://n8n.io/workflows/2462-angie-personal-ai-assistant-with-telegram-voice-and-text/)\n- [automate customer support issue resolution using ai text classifier](https://n8n.io/workflows/2468-automate-customer-support-issue-resolution-using-ai-text-classifier/)\n- [scale deal flow with a pitch deck ai vision, chatbot and qdrant vector store](https://n8n.io/workflows/2464-scale-deal-flow-with-a-pitch-deck-ai-vision-chatbot-and-qdrant-vector-store/)\n let ai specify the tool parameters",
|
|
4884
|
+
"importantTerms": [
|
|
4885
|
+
"fromai",
|
|
4886
|
+
"with",
|
|
4887
|
+
"string",
|
|
4888
|
+
"parameters",
|
|
4889
|
+
"tools",
|
|
4890
|
+
"model",
|
|
4891
|
+
"nodes",
|
|
4892
|
+
"this",
|
|
4893
|
+
"parameter",
|
|
4894
|
+
"function",
|
|
4895
|
+
"tool",
|
|
4896
|
+
"agent",
|
|
4897
|
+
"expression",
|
|
4898
|
+
"will",
|
|
4899
|
+
"fill",
|
|
4900
|
+
"other",
|
|
4901
|
+
"field",
|
|
4902
|
+
"following",
|
|
4903
|
+
"name",
|
|
4904
|
+
"connected",
|
|
4905
|
+
"generated",
|
|
4906
|
+
"cluster",
|
|
4907
|
+
"only",
|
|
4908
|
+
"email",
|
|
4909
|
+
"workflows",
|
|
4910
|
+
"number",
|
|
4911
|
+
"could",
|
|
4912
|
+
"text",
|
|
4913
|
+
"specify",
|
|
4914
|
+
"glossary",
|
|
4915
|
+
"context",
|
|
4916
|
+
"from",
|
|
4917
|
+
"extra",
|
|
4918
|
+
"user",
|
|
4919
|
+
"that",
|
|
4920
|
+
"want",
|
|
4921
|
+
"dynamically",
|
|
4922
|
+
"integrations",
|
|
4923
|
+
"builtin",
|
|
4924
|
+
"populate",
|
|
4925
|
+
"data",
|
|
4926
|
+
"description",
|
|
4927
|
+
"type",
|
|
4928
|
+
"argument",
|
|
4929
|
+
"value",
|
|
4930
|
+
"https"
|
|
4931
|
+
]
|
|
4932
|
+
}
|
|
4933
|
+
},
|
|
4934
|
+
{
|
|
4935
|
+
"id": "page-0038",
|
|
4841
4936
|
"title": "Populate a Pinecone vector database from a website",
|
|
4842
4937
|
"url": "https://docs.n8n.io/advanced-ai/examples/vector-store-website/index.md",
|
|
4843
4938
|
"urlPath": "advanced-ai/examples/vector-store-website/index.md",
|
|
@@ -4846,13 +4941,13 @@
|
|
|
4846
4941
|
"nodeName": null,
|
|
4847
4942
|
"nodeType": null,
|
|
4848
4943
|
"content": {
|
|
4849
|
-
"markdown": "# LangChain concepts in n8n\n\nThis page explains how LangChain concepts and features map to n8n nodes.\n\nThis page includes lists of the LangChain-focused nodes in n8n. You can use any n8n node in a workflow where you interact with LangChain, to link LangChain to other services. The LangChain features uses n8n's [Cluster nodes](../../../integrations/builtin/cluster-nodes/).\n\nn8n implements LangChain JS\n\nThis feature is n8n's implementation of [LangChain's JavaScript framework](https://js.langchain.com/docs/get_started/introduction).\n\n## Trigger nodes\n\n[Chat Trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/)\n\n## Cluster nodes\n\n[Cluster nodes](../../../glossary/#cluster-node-n8n) are node groups that work together to provide functionality in an n8n workflow. Instead of using a single node, you use a [root node](../../../glossary/#root-node-n8n) and one or more [sub-nodes](../../../glossary/#sub-node-n8n) that extend the functionality of the node.\n\n### Root nodes\n\nEach cluster starts with one [root node](../../../glossary/#root-node-n8n).\n\n#### Chains\n\nA [chain](../../../glossary/#ai-chain) is a series of LLMs, and related tools, linked together to support functionality that can't be provided by a single LLM alone.\n\nAvailable nodes:\n\n- [Basic LLM Chain](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm/)\n- [Retrieval Q&A Chain](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainretrievalqa/)\n- [Summarization Chain](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainsummarization/)\n- [Sentiment Analysis](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.sentimentanalysis/)\n- [Text Classifier](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.text-classifier/)\n\nLearn more about [chaining in LangChain](https://js.langchain.com/docs/concepts/lcel).\n\n#### Agents\n\n> An [agent](../../../glossary/#ai-agent) has access to a suite of tools, and determines which ones to use depending on the user input. Agents can use multiple tools, and use the output of one tool as the input to the next. [Source](https://github.com/langchain-ai/langchainjs/blob/def3a26c054575e1ed40b9062087e8c0a8899633/docs/core_docs/docs/modules/agents/index.mdx)\n\nAvailable nodes:\n\n- [Agent](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/)\n\nLearn more about [Agents in LangChain](https://js.langchain.com/docs/concepts/agents).\n\n#### Vector stores\n\n[Vector stores](../../../glossary/#ai-vector-store) store embedded data, and perform vector searches on it.\n\n- [Simple Vector Store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreinmemory/)\n- [PGVector Vector Store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorepgvector/)\n- [Pinecone Vector Store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorepinecone/)\n- [Qdrant Vector Store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreqdrant/)\n- [Supabase Vector Store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoresupabase/)\n- [Zep Vector Store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorezep/)\n\nLearn more about [Vector stores in LangChain](https://js.langchain.com/docs/concepts/vectorstores/).\n\n#### Miscellaneous\n\nUtility nodes.\n\n[LangChain Code](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.code/): import LangChain. This means if there is functionality you need that n8n hasn't created a node for, you can still use it.\n\n### Sub-nodes\n\nEach root node can have one or more [sub-nodes](../../../glossary/#sub-node-n8n) attached to it.\n\n#### Document loaders\n\nDocument loaders add data to your chain as documents. The data source can be a file or web service.\n\nAvailable nodes:\n\n- [Default Document Loader](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.documentdefaultdataloader/)\n- [GitHub Document Loader](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.documentgithubloader/)\n\nLearn more about [Document loaders in LangChain](https://js.langchain.com/docs/concepts/document_loaders).\n\n#### Language models\n\n[LLMs (large language models)](../../../glossary/#large-language-model-llm) are programs that analyze datasets. They're the key element of working with AI.\n\nAvailable nodes:\n\n- [Anthropic Chat Model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatanthropic/)\n- [AWS Bedrock Chat Model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatawsbedrock/)\n- [Cohere Model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmcohere/)\n- [Hugging Face Inference Model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmopenhuggingfaceinference/)\n- [Mistral Cloud Chat Model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatmistralcloud/)\n- [Ollama Chat Model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatollama/)\n- [Ollama Model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmollama/)\n- [OpenAI Chat Model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatopenai/)\n\nLearn more about [Language models in LangChain](https://js.langchain.com/docs/concepts/chat_models).\n\n#### Memory\n\n[Memory](../../../glossary/#ai-memory) retains information about previous queries in a series of queries. For example, when a user interacts with a chat model, it's useful if your application can remember and call on the full conversation, not just the most recent query entered by the user.\n\nAvailable nodes:\n\n- [Motorhead](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorymotorhead/)\n- [Redis Chat Memory](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryredischat/)\n- [Postgres Chat Memory](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorypostgreschat/)\n- [Simple Memory](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorybufferwindow/)\n- [Xata](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryxata/)\n- [Zep](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryzep/)\n\nLearn more about [Memory in LangChain](https://langchain-ai.github.io/langgraphjs/concepts/memory/).\n\n#### Output parsers\n\nOutput parsers take the text generated by an LLM and format it to match the structure you require.\n\nAvailable nodes:\n\n- [Auto-fixing Output Parser](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserautofixing/)\n- [Item List Output Parser](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparseritemlist/)\n- [Structured Output Parser](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserstructured/)\n\nLearn more about [Output parsers in LangChain](https://js.langchain.com/docs/concepts/output_parsers/).\n\n#### Retrievers\n\n- [Contextual Compression Retriever](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievercontextualcompression/)\n- [MultiQuery Retriever](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievermultiquery/)\n- [Vector Store Retriever](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievervectorstore/)\n- [Workflow Retriever](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrieverworkflow/)\n\n#### Text splitters\n\nText splitters break down data (documents), making it easier for the LLM to process the information and return accurate results.\n\nAvailable nodes:\n\n- [Character Text Splitter](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittercharactertextsplitter/)\n- [Recursive Character Text Splitter](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplitterrecursivecharactertextsplitter/)\n- [Token Splitter](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittertokensplitter/)\n\nn8n's text splitter nodes implements parts of [LangChain's text_splitter API](https://js.langchain.com/docs/concepts/text_splitters/).\n\n#### Tools\n\nUtility [tools](../../../glossary/#ai-tool).\n\n- [Calculator](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolcalculator/)\n- [Code Tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolcode/)\n- [SerpAPI](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolserpapi/)\n- [Think Tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolthink/)\n- [Vector Store Tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolvectorstore/)\n- [Wikipedia](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolwikipedia/)\n- [Wolfram|Alpha](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolwolframalpha/)\n- [Workflow Tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolworkflow/)\n\n#### Embeddings\n\n> [Embeddings](../../../glossary/#ai-embedding) capture the \"relatedness\" of text, images, video, or other types of information. ([source](https://supabase.com/docs/guides/ai/concepts))\n\nAvailable nodes:\n\n- [Embeddings AWS Bedrock](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsawsbedrock/)\n- [Embeddings Cohere](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingscohere/)\n- [Embeddings Google PaLM](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsgooglepalm/)\n- [Embeddings Hugging Face Inference](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingshuggingfaceinference/)\n- [Embeddings Mistral Cloud](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsmistralcloud/)\n- [Embeddings Ollama](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsollama/)\n- [Embeddings OpenAI](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsopenai/)\n\nLearn more about [Text embeddings in LangChain](https://js.langchain.com/docs/concepts/embedding_models/).\n\n#### Miscellaneous\n\n- [Chat Memory Manager](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorymanager/)\n",
|
|
4850
|
-
"excerpt": "#
|
|
4944
|
+
"markdown": "# Populate a Pinecone vector database from a website\n\nUse n8n to scrape a website, load the data into Pinecone, then query it using a chat workflow. This workflow uses the [HTTP node](../../../integrations/builtin/core-nodes/n8n-nodes-base.httprequest/) to get website data, extracts the relevant content using the [HTML node](../../../integrations/builtin/core-nodes/n8n-nodes-base.html/), then uses the [Pinecone Vector Store node](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorepinecone/) to send it to Pinecone.\n\n[View workflow file](/_workflows/advanced-ai/examples/populate_a_pinecone_vector_database_from_a_website.json)\n\n## Key features\n\nThis workflow uses:\n\n- [HTTP node](../../../integrations/builtin/core-nodes/n8n-nodes-base.httprequest/): fetches website data.\n- [HTML node](../../../integrations/builtin/core-nodes/n8n-nodes-base.html/): simplifies the data by extracting the main content from the page.\n- [Pinecone Vector Store node](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorepinecone/) and [Embeddings OpenAI](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsopenai/): transform the data into vectors and store it in Pinecone.\n- [Chat Trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/) and [Question and Answer Chain](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainretrievalqa/) to query the vector database.\n\n## Using the example\n\nTo load the template into your n8n instance:\n\n1. Download the workflow JSON file.\n1. Open a new workflow in your n8n instance.\n1. Copy in the JSON, or select **Workflow menu** > **Import from file...**.\n\nThe example workflows use Sticky Notes to guide you:\n\n- Yellow: notes and information.\n- Green: instructions to run the workflow.\n- Orange: you need to change something to make the workflow work.\n- Blue: draws attention to a key feature of the example.\n",
|
|
4945
|
+
"excerpt": "# Populate a Pinecone vector database from a website Use n8n to scrape a website, load the data into Pinecone, then query it using a chat workflow. This workflow uses the [HTTP node](../../../integrations/builtin/core-nodes/n8n-nodes-base.httprequest/) to get website data, extracts the relevant content using the [HTML node](../../../integrations/builtin/core-nodes/n8n-nodes-base.html/), then uses the [Pinecone Vector Store node](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-l...",
|
|
4851
4946
|
"sections": [
|
|
4852
4947
|
{
|
|
4853
|
-
"title": "
|
|
4948
|
+
"title": "Populate a Pinecone vector database from a website",
|
|
4854
4949
|
"level": 1,
|
|
4855
|
-
"content": "
|
|
4950
|
+
"content": "Use n8n to scrape a website, load the data into Pinecone, then query it using a chat workflow. This workflow uses the [HTTP node](../../../integrations/builtin/core-nodes/n8n-nodes-base.httprequest/) to get website data, extracts the relevant content using the [HTML node](../../../integrations/builtin/core-nodes/n8n-nodes-base.html/), then uses the [Pinecone Vector Store node](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorepinecone/) to send it to Pinecone.\n\n[View workflow file](/_workflows/advanced-ai/examples/populate_a_pinecone_vector_database_from_a_website.json)"
|
|
4856
4951
|
}
|
|
4857
4952
|
]
|
|
4858
4953
|
},
|
|
@@ -4871,13 +4966,148 @@
|
|
|
4871
4966
|
"useCases": [],
|
|
4872
4967
|
"operations": [],
|
|
4873
4968
|
"codeExamples": 0,
|
|
4969
|
+
"complexity": "beginner",
|
|
4970
|
+
"readingTime": "2 min",
|
|
4971
|
+
"contentLength": 1989,
|
|
4972
|
+
"relatedPages": []
|
|
4973
|
+
},
|
|
4974
|
+
"searchIndex": {
|
|
4975
|
+
"fullText": "populate a pinecone vector database from a website # populate a pinecone vector database from a website\n\nuse n8n to scrape a website, load the data into pinecone, then query it using a chat workflow. this workflow uses the [http node](../../../integrations/builtin/core-nodes/n8n-nodes-base.httprequest/) to get website data, extracts the relevant content using the [html node](../../../integrations/builtin/core-nodes/n8n-nodes-base.html/), then uses the [pinecone vector store node](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorepinecone/) to send it to pinecone.\n\n[view workflow file](/_workflows/advanced-ai/examples/populate_a_pinecone_vector_database_from_a_website.json)\n\n## key features\n\nthis workflow uses:\n\n- [http node](../../../integrations/builtin/core-nodes/n8n-nodes-base.httprequest/): fetches website data.\n- [html node](../../../integrations/builtin/core-nodes/n8n-nodes-base.html/): simplifies the data by extracting the main content from the page.\n- [pinecone vector store node](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorepinecone/) and [embeddings openai](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsopenai/): transform the data into vectors and store it in pinecone.\n- [chat trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/) and [question and answer chain](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainretrievalqa/) to query the vector database.\n\n## using the example\n\nto load the template into your n8n instance:\n\n1. download the workflow json file.\n1. open a new workflow in your n8n instance.\n1. copy in the json, or select **workflow menu** > **import from file...**.\n\nthe example workflows use sticky notes to guide you:\n\n- yellow: notes and information.\n- green: instructions to run the workflow.\n- orange: you need to change something to make the workflow work.\n- blue: draws attention to a key feature of the example.\n populate a pinecone vector database from a website",
|
|
4976
|
+
"importantTerms": [
|
|
4977
|
+
"nodes",
|
|
4978
|
+
"workflow",
|
|
4979
|
+
"integrations",
|
|
4980
|
+
"builtin",
|
|
4981
|
+
"pinecone",
|
|
4982
|
+
"vector",
|
|
4983
|
+
"website",
|
|
4984
|
+
"node",
|
|
4985
|
+
"from",
|
|
4986
|
+
"data",
|
|
4987
|
+
"core",
|
|
4988
|
+
"langchain",
|
|
4989
|
+
"database",
|
|
4990
|
+
"base",
|
|
4991
|
+
"html",
|
|
4992
|
+
"cluster",
|
|
4993
|
+
"populate",
|
|
4994
|
+
"into",
|
|
4995
|
+
"using",
|
|
4996
|
+
"uses",
|
|
4997
|
+
"store",
|
|
4998
|
+
"root",
|
|
4999
|
+
"file",
|
|
5000
|
+
"json",
|
|
5001
|
+
"example"
|
|
5002
|
+
]
|
|
5003
|
+
}
|
|
5004
|
+
},
|
|
5005
|
+
{
|
|
5006
|
+
"id": "page-0039",
|
|
5007
|
+
"title": "LangChain learning resources",
|
|
5008
|
+
"url": "https://docs.n8n.io/advanced-ai/langchain/langchain-learning-resources/index.md",
|
|
5009
|
+
"urlPath": "advanced-ai/langchain/langchain-learning-resources/index.md",
|
|
5010
|
+
"category": "advanced-ai",
|
|
5011
|
+
"subcategory": "langchain",
|
|
5012
|
+
"nodeName": null,
|
|
5013
|
+
"nodeType": null,
|
|
5014
|
+
"content": {
|
|
5015
|
+
"markdown": "# LangChain learning resources\n\nYou don't need to know details about LangChain to use n8n, but it can be helpful to learn a few concepts. This pages lists some learning resources that people at n8n have found helpful.\n\nThe [LangChain documentation](https://docs.langchain.com/docs/) includes introductions to key concepts and possible use cases. Choose the [LangChain | Python](https://python.langchain.com/docs/get_started/introduction) or [LangChain | JavaScript](https://js.langchain.com/docs/get_started/introduction/) documentation for quickstarts, code examples, and API documentation. LangChain also provide [code templates](https://github.com/langchain-ai/langchain/tree/master/cookbook) (Python only), offering ideas for potential use cases and common patterns.\n\n[What Product People Need To Know About LangChain](https://www.commandbar.com/blog/langchain-guide) provides a list of terminology and concepts, explained with helpful metaphors. Aimed at a wide audience.\n\nIf you prefer video, this [YouTube series by Greg Kamradt](https://youtu.be/_v_fgW2SkkQ?si=8Z2tfAoXnN3lXU9s) works through the LangChain documentation, providing code examples as it goes.\n\nn8n offers space to discuss LangChain on the [Discord](https://discord.gg/bAt54txhHg). Join to share your projects and discuss ideas with the community.\n",
|
|
5016
|
+
"excerpt": "# LangChain learning resources You don't need to know details about LangChain to use n8n, but it can be helpful to learn a few concepts. This pages lists some learning resources that people at n8n have found helpful. The [LangChain documentation](https://docs.langchain.com/docs/) includes introductions to key concepts and possible use cases. Choose the [LangChain | Python](https://python.langchain.com/docs/get_started/introduction) or [LangChain | JavaScript](https://js.langchain.com/docs/get_...",
|
|
5017
|
+
"sections": [
|
|
5018
|
+
{
|
|
5019
|
+
"title": "LangChain learning resources",
|
|
5020
|
+
"level": 1,
|
|
5021
|
+
"content": "You don't need to know details about LangChain to use n8n, but it can be helpful to learn a few concepts. This pages lists some learning resources that people at n8n have found helpful.\n\nThe [LangChain documentation](https://docs.langchain.com/docs/) includes introductions to key concepts and possible use cases. Choose the [LangChain | Python](https://python.langchain.com/docs/get_started/introduction) or [LangChain | JavaScript](https://js.langchain.com/docs/get_started/introduction/) documentation for quickstarts, code examples, and API documentation. LangChain also provide [code templates](https://github.com/langchain-ai/langchain/tree/master/cookbook) (Python only), offering ideas for potential use cases and common patterns.\n\n[What Product People Need To Know About LangChain](https://www.commandbar.com/blog/langchain-guide) provides a list of terminology and concepts, explained with helpful metaphors. Aimed at a wide audience.\n\nIf you prefer video, this [YouTube series by Greg Kamr"
|
|
5022
|
+
}
|
|
5023
|
+
]
|
|
5024
|
+
},
|
|
5025
|
+
"metadata": {
|
|
5026
|
+
"keywords": [
|
|
5027
|
+
"langchain",
|
|
5028
|
+
"learning",
|
|
5029
|
+
"resources"
|
|
5030
|
+
],
|
|
5031
|
+
"useCases": [],
|
|
5032
|
+
"operations": [],
|
|
5033
|
+
"codeExamples": 0,
|
|
5034
|
+
"complexity": "beginner",
|
|
5035
|
+
"readingTime": "1 min",
|
|
5036
|
+
"contentLength": 1320,
|
|
5037
|
+
"relatedPages": []
|
|
5038
|
+
},
|
|
5039
|
+
"searchIndex": {
|
|
5040
|
+
"fullText": "langchain learning resources # langchain learning resources\n\nyou don't need to know details about langchain to use n8n, but it can be helpful to learn a few concepts. this pages lists some learning resources that people at n8n have found helpful.\n\nthe [langchain documentation](https://docs.langchain.com/docs/) includes introductions to key concepts and possible use cases. choose the [langchain | python](https://python.langchain.com/docs/get_started/introduction) or [langchain | javascript](https://js.langchain.com/docs/get_started/introduction/) documentation for quickstarts, code examples, and api documentation. langchain also provide [code templates](https://github.com/langchain-ai/langchain/tree/master/cookbook) (python only), offering ideas for potential use cases and common patterns.\n\n[what product people need to know about langchain](https://www.commandbar.com/blog/langchain-guide) provides a list of terminology and concepts, explained with helpful metaphors. aimed at a wide audience.\n\nif you prefer video, this [youtube series by greg kamradt](https://youtu.be/_v_fgw2skkq?si=8z2tfaoxnn3lxu9s) works through the langchain documentation, providing code examples as it goes.\n\nn8n offers space to discuss langchain on the [discord](https://discord.gg/bat54txhhg). join to share your projects and discuss ideas with the community.\n langchain learning resources",
|
|
5041
|
+
"importantTerms": [
|
|
5042
|
+
"langchain",
|
|
5043
|
+
"https",
|
|
5044
|
+
"learning",
|
|
5045
|
+
"resources",
|
|
5046
|
+
"documentation",
|
|
5047
|
+
"docs",
|
|
5048
|
+
"helpful",
|
|
5049
|
+
"concepts",
|
|
5050
|
+
"python",
|
|
5051
|
+
"code"
|
|
5052
|
+
]
|
|
5053
|
+
}
|
|
5054
|
+
},
|
|
5055
|
+
{
|
|
5056
|
+
"id": "page-0040",
|
|
5057
|
+
"title": "Langchain concepts in n8n",
|
|
5058
|
+
"url": "https://docs.n8n.io/advanced-ai/langchain/langchain-n8n/index.md",
|
|
5059
|
+
"urlPath": "advanced-ai/langchain/langchain-n8n/index.md",
|
|
5060
|
+
"category": "advanced-ai",
|
|
5061
|
+
"subcategory": "langchain",
|
|
5062
|
+
"nodeName": null,
|
|
5063
|
+
"nodeType": null,
|
|
5064
|
+
"content": {
|
|
5065
|
+
"markdown": "# LangChain concepts in n8n\n\nThis page explains how LangChain concepts and features map to n8n nodes.\n\nThis page includes lists of the LangChain-focused nodes in n8n. You can use any n8n node in a workflow where you interact with LangChain, to link LangChain to other services. The LangChain features uses n8n's [Cluster nodes](../../../integrations/builtin/cluster-nodes/).\n\nn8n implements LangChain JS\n\nThis feature is n8n's implementation of [LangChain's JavaScript framework](https://js.langchain.com/docs/get_started/introduction).\n\n## Trigger nodes\n\n[Chat Trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/)\n\n## Cluster nodes\n\n[Cluster nodes](../../../glossary/#cluster-node-n8n) are node groups that work together to provide functionality in an n8n workflow. Instead of using a single node, you use a [root node](../../../glossary/#root-node-n8n) and one or more [sub-nodes](../../../glossary/#sub-node-n8n) that extend the functionality of the node.\n\n### Root nodes\n\nEach cluster starts with one [root node](../../../glossary/#root-node-n8n).\n\n#### Chains\n\nA [chain](../../../glossary/#ai-chain) is a series of LLMs, and related tools, linked together to support functionality that can't be provided by a single LLM alone.\n\nAvailable nodes:\n\n- [Basic LLM Chain](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm/)\n- [Retrieval Q&A Chain](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainretrievalqa/)\n- [Summarization Chain](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainsummarization/)\n- [Sentiment Analysis](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.sentimentanalysis/)\n- [Text Classifier](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.text-classifier/)\n\nLearn more about [chaining in LangChain](https://js.langchain.com/docs/concepts/lcel).\n\n#### Agents\n\n> An [agent](../../../glossary/#ai-agent) has access to a suite of tools, and determines which ones to use depending on the user input. Agents can use multiple tools, and use the output of one tool as the input to the next. [Source](https://github.com/langchain-ai/langchainjs/blob/def3a26c054575e1ed40b9062087e8c0a8899633/docs/core_docs/docs/modules/agents/index.mdx)\n\nAvailable nodes:\n\n- [Agent](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/)\n\nLearn more about [Agents in LangChain](https://js.langchain.com/docs/concepts/agents).\n\n#### Vector stores\n\n[Vector stores](../../../glossary/#ai-vector-store) store embedded data, and perform vector searches on it.\n\n- [Simple Vector Store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreinmemory/)\n- [PGVector Vector Store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorepgvector/)\n- [Pinecone Vector Store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorepinecone/)\n- [Qdrant Vector Store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreqdrant/)\n- [Supabase Vector Store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoresupabase/)\n- [Zep Vector Store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorezep/)\n\nLearn more about [Vector stores in LangChain](https://js.langchain.com/docs/concepts/vectorstores/).\n\n#### Miscellaneous\n\nUtility nodes.\n\n[LangChain Code](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.code/): import LangChain. This means if there is functionality you need that n8n hasn't created a node for, you can still use it.\n\n### Sub-nodes\n\nEach root node can have one or more [sub-nodes](../../../glossary/#sub-node-n8n) attached to it.\n\n#### Document loaders\n\nDocument loaders add data to your chain as documents. The data source can be a file or web service.\n\nAvailable nodes:\n\n- [Default Document Loader](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.documentdefaultdataloader/)\n- [GitHub Document Loader](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.documentgithubloader/)\n\nLearn more about [Document loaders in LangChain](https://js.langchain.com/docs/concepts/document_loaders).\n\n#### Language models\n\n[LLMs (large language models)](../../../glossary/#large-language-model-llm) are programs that analyze datasets. They're the key element of working with AI.\n\nAvailable nodes:\n\n- [Anthropic Chat Model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatanthropic/)\n- [AWS Bedrock Chat Model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatawsbedrock/)\n- [Cohere Model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmcohere/)\n- [Hugging Face Inference Model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmopenhuggingfaceinference/)\n- [Mistral Cloud Chat Model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatmistralcloud/)\n- [Ollama Chat Model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatollama/)\n- [Ollama Model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmollama/)\n- [OpenAI Chat Model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatopenai/)\n\nLearn more about [Language models in LangChain](https://js.langchain.com/docs/concepts/chat_models).\n\n#### Memory\n\n[Memory](../../../glossary/#ai-memory) retains information about previous queries in a series of queries. For example, when a user interacts with a chat model, it's useful if your application can remember and call on the full conversation, not just the most recent query entered by the user.\n\nAvailable nodes:\n\n- [Motorhead](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorymotorhead/)\n- [Redis Chat Memory](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryredischat/)\n- [Postgres Chat Memory](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorypostgreschat/)\n- [Simple Memory](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorybufferwindow/)\n- [Xata](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryxata/)\n- [Zep](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryzep/)\n\nLearn more about [Memory in LangChain](https://langchain-ai.github.io/langgraphjs/concepts/memory/).\n\n#### Output parsers\n\nOutput parsers take the text generated by an LLM and format it to match the structure you require.\n\nAvailable nodes:\n\n- [Auto-fixing Output Parser](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserautofixing/)\n- [Item List Output Parser](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparseritemlist/)\n- [Structured Output Parser](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserstructured/)\n\nLearn more about [Output parsers in LangChain](https://js.langchain.com/docs/concepts/output_parsers/).\n\n#### Retrievers\n\n- [Contextual Compression Retriever](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievercontextualcompression/)\n- [MultiQuery Retriever](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievermultiquery/)\n- [Vector Store Retriever](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievervectorstore/)\n- [Workflow Retriever](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrieverworkflow/)\n\n#### Text splitters\n\nText splitters break down data (documents), making it easier for the LLM to process the information and return accurate results.\n\nAvailable nodes:\n\n- [Character Text Splitter](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittercharactertextsplitter/)\n- [Recursive Character Text Splitter](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplitterrecursivecharactertextsplitter/)\n- [Token Splitter](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittertokensplitter/)\n\nn8n's text splitter nodes implements parts of [LangChain's text_splitter API](https://js.langchain.com/docs/concepts/text_splitters/).\n\n#### Tools\n\nUtility [tools](../../../glossary/#ai-tool).\n\n- [Calculator](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolcalculator/)\n- [Code Tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolcode/)\n- [SerpAPI](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolserpapi/)\n- [Think Tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolthink/)\n- [Vector Store Tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolvectorstore/)\n- [Wikipedia](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolwikipedia/)\n- [Wolfram|Alpha](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolwolframalpha/)\n- [Workflow Tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolworkflow/)\n\n#### Embeddings\n\n> [Embeddings](../../../glossary/#ai-embedding) capture the \"relatedness\" of text, images, video, or other types of information. ([source](https://supabase.com/docs/guides/ai/concepts))\n\nAvailable nodes:\n\n- [Embeddings AWS Bedrock](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsawsbedrock/)\n- [Embeddings Cohere](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingscohere/)\n- [Embeddings Google PaLM](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsgooglepalm/)\n- [Embeddings Hugging Face Inference](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingshuggingfaceinference/)\n- [Embeddings Mistral Cloud](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsmistralcloud/)\n- [Embeddings Ollama](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsollama/)\n- [Embeddings OpenAI](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsopenai/)\n\nLearn more about [Text embeddings in LangChain](https://js.langchain.com/docs/concepts/embedding_models/).\n\n#### Miscellaneous\n\n- [Chat Memory Manager](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorymanager/)\n",
|
|
5066
|
+
"excerpt": "# LangChain concepts in n8n This page explains how LangChain concepts and features map to n8n nodes. This page includes lists of the LangChain-focused nodes in n8n. You can use any n8n node in a workflow where you interact with LangChain, to link LangChain to other services. The LangChain features uses n8n's [Cluster nodes](../../../integrations/builtin/cluster-nodes/). n8n implements LangChain JS This feature is n8n's implementation of [LangChain's JavaScript framework](https://js.langchain...",
|
|
5067
|
+
"sections": [
|
|
5068
|
+
{
|
|
5069
|
+
"title": "LangChain concepts in n8n",
|
|
5070
|
+
"level": 1,
|
|
5071
|
+
"content": "This page explains how LangChain concepts and features map to n8n nodes.\n\nThis page includes lists of the LangChain-focused nodes in n8n. You can use any n8n node in a workflow where you interact with LangChain, to link LangChain to other services. The LangChain features uses n8n's [Cluster nodes](../../../integrations/builtin/cluster-nodes/).\n\nn8n implements LangChain JS\n\nThis feature is n8n's implementation of [LangChain's JavaScript framework](https://js.langchain.com/docs/get_started/introduction)."
|
|
5072
|
+
}
|
|
5073
|
+
]
|
|
5074
|
+
},
|
|
5075
|
+
"metadata": {
|
|
5076
|
+
"keywords": [
|
|
5077
|
+
"langchain",
|
|
5078
|
+
"concepts",
|
|
5079
|
+
"trigger",
|
|
5080
|
+
"nodes",
|
|
5081
|
+
"cluster",
|
|
5082
|
+
"root",
|
|
5083
|
+
"chains",
|
|
5084
|
+
"agents",
|
|
5085
|
+
"vector",
|
|
5086
|
+
"stores",
|
|
5087
|
+
"miscellaneous",
|
|
5088
|
+
"document",
|
|
5089
|
+
"loaders",
|
|
5090
|
+
"language",
|
|
5091
|
+
"models",
|
|
5092
|
+
"memory",
|
|
5093
|
+
"output",
|
|
5094
|
+
"parsers",
|
|
5095
|
+
"retrievers",
|
|
5096
|
+
"text",
|
|
5097
|
+
"splitters",
|
|
5098
|
+
"tools",
|
|
5099
|
+
"embeddings"
|
|
5100
|
+
],
|
|
5101
|
+
"useCases": [],
|
|
5102
|
+
"operations": [],
|
|
5103
|
+
"codeExamples": 0,
|
|
4874
5104
|
"complexity": "intermediate",
|
|
4875
5105
|
"readingTime": "4 min",
|
|
4876
5106
|
"contentLength": 10758,
|
|
4877
5107
|
"relatedPages": []
|
|
4878
5108
|
},
|
|
4879
5109
|
"searchIndex": {
|
|
4880
|
-
"fullText": "populate a pinecone vector database from a website # langchain concepts in n8n\n\nthis page explains how langchain concepts and features map to n8n nodes.\n\nthis page includes lists of the langchain-focused nodes in n8n. you can use any n8n node in a workflow where you interact with langchain, to link langchain to other services. the langchain features uses n8n's [cluster nodes](../../../integrations/builtin/cluster-nodes/).\n\nn8n implements langchain js\n\nthis feature is n8n's implementation of [langchain's javascript framework](https://js.langchain.com/docs/get_started/introduction).\n\n## trigger nodes\n\n[chat trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/)\n\n## cluster nodes\n\n[cluster nodes](../../../glossary/#cluster-node-n8n) are node groups that work together to provide functionality in an n8n workflow. instead of using a single node, you use a [root node](../../../glossary/#root-node-n8n) and one or more [sub-nodes](../../../glossary/#sub-node-n8n) that extend the functionality of the node.\n\n### root nodes\n\neach cluster starts with one [root node](../../../glossary/#root-node-n8n).\n\n#### chains\n\na [chain](../../../glossary/#ai-chain) is a series of llms, and related tools, linked together to support functionality that can't be provided by a single llm alone.\n\navailable nodes:\n\n- [basic llm chain](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm/)\n- [retrieval q&a chain](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainretrievalqa/)\n- [summarization chain](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainsummarization/)\n- [sentiment analysis](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.sentimentanalysis/)\n- [text classifier](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.text-classifier/)\n\nlearn more about [chaining in langchain](https://js.langchain.com/docs/concepts/lcel).\n\n#### agents\n\n> an [agent](../../../glossary/#ai-agent) has access to a suite of tools, and determines which ones to use depending on the user input. agents can use multiple tools, and use the output of one tool as the input to the next. [source](https://github.com/langchain-ai/langchainjs/blob/def3a26c054575e1ed40b9062087e8c0a8899633/docs/core_docs/docs/modules/agents/index.mdx)\n\navailable nodes:\n\n- [agent](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/)\n\nlearn more about [agents in langchain](https://js.langchain.com/docs/concepts/agents).\n\n#### vector stores\n\n[vector stores](../../../glossary/#ai-vector-store) store embedded data, and perform vector searches on it.\n\n- [simple vector store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreinmemory/)\n- [pgvector vector store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorepgvector/)\n- [pinecone vector store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorepinecone/)\n- [qdrant vector store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreqdrant/)\n- [supabase vector store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoresupabase/)\n- [zep vector store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorezep/)\n\nlearn more about [vector stores in langchain](https://js.langchain.com/docs/concepts/vectorstores/).\n\n#### miscellaneous\n\nutility nodes.\n\n[langchain code](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.code/): import langchain. this means if there is functionality you need that n8n hasn't created a node for, you can still use it.\n\n### sub-nodes\n\neach root node can have one or more [sub-nodes](../../../glossary/#sub-node-n8n) attached to it.\n\n#### document loaders\n\ndocument loaders add data to your chain as documents. the data source can be a file or web service.\n\navailable nodes:\n\n- [default document loader](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.documentdefaultdataloader/)\n- [github document loader](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.documentgithubloader/)\n\nlearn more about [document loaders in langchain](https://js.langchain.com/docs/concepts/document_loaders).\n\n#### language models\n\n[llms (large language models)](../../../glossary/#large-language-model-llm) are programs that analyze datasets. they're the key element of working with ai.\n\navailable nodes:\n\n- [anthropic chat model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatanthropic/)\n- [aws bedrock chat model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatawsbedrock/)\n- [cohere model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmcohere/)\n- [hugging face inference model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmopenhuggingfaceinference/)\n- [mistral cloud chat model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatmistralcloud/)\n- [ollama chat model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatollama/)\n- [ollama model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmollama/)\n- [openai chat model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatopenai/)\n\nlearn more about [language models in langchain](https://js.langchain.com/docs/concepts/chat_models).\n\n#### memory\n\n[memory](../../../glossary/#ai-memory) retains information about previous queries in a series of queries. for example, when a user interacts with a chat model, it's useful if your application can remember and call on the full conversation, not just the most recent query entered by the user.\n\navailable nodes:\n\n- [motorhead](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorymotorhead/)\n- [redis chat memory](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryredischat/)\n- [postgres chat memory](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorypostgreschat/)\n- [simple memory](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorybufferwindow/)\n- [xata](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryxata/)\n- [zep](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryzep/)\n\nlearn more about [memory in langchain](https://langchain-ai.github.io/langgraphjs/concepts/memory/).\n\n#### output parsers\n\noutput parsers take the text generated by an llm and format it to match the structure you require.\n\navailable nodes:\n\n- [auto-fixing output parser](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserautofixing/)\n- [item list output parser](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparseritemlist/)\n- [structured output parser](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserstructured/)\n\nlearn more about [output parsers in langchain](https://js.langchain.com/docs/concepts/output_parsers/).\n\n#### retrievers\n\n- [contextual compression retriever](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievercontextualcompression/)\n- [multiquery retriever](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievermultiquery/)\n- [vector store retriever](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievervectorstore/)\n- [workflow retriever](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrieverworkflow/)\n\n#### text splitters\n\ntext splitters break down data (documents), making it easier for the llm to process the information and return accurate results.\n\navailable nodes:\n\n- [character text splitter](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittercharactertextsplitter/)\n- [recursive character text splitter](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplitterrecursivecharactertextsplitter/)\n- [token splitter](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittertokensplitter/)\n\nn8n's text splitter nodes implements parts of [langchain's text_splitter api](https://js.langchain.com/docs/concepts/text_splitters/).\n\n#### tools\n\nutility [tools](../../../glossary/#ai-tool).\n\n- [calculator](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolcalculator/)\n- [code tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolcode/)\n- [serpapi](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolserpapi/)\n- [think tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolthink/)\n- [vector store tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolvectorstore/)\n- [wikipedia](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolwikipedia/)\n- [wolfram|alpha](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolwolframalpha/)\n- [workflow tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolworkflow/)\n\n#### embeddings\n\n> [embeddings](../../../glossary/#ai-embedding) capture the \"relatedness\" of text, images, video, or other types of information. ([source](https://supabase.com/docs/guides/ai/concepts))\n\navailable nodes:\n\n- [embeddings aws bedrock](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsawsbedrock/)\n- [embeddings cohere](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingscohere/)\n- [embeddings google palm](../../../integrations/builtin/clus",
|
|
5110
|
+
"fullText": "langchain concepts in n8n # langchain concepts in n8n\n\nthis page explains how langchain concepts and features map to n8n nodes.\n\nthis page includes lists of the langchain-focused nodes in n8n. you can use any n8n node in a workflow where you interact with langchain, to link langchain to other services. the langchain features uses n8n's [cluster nodes](../../../integrations/builtin/cluster-nodes/).\n\nn8n implements langchain js\n\nthis feature is n8n's implementation of [langchain's javascript framework](https://js.langchain.com/docs/get_started/introduction).\n\n## trigger nodes\n\n[chat trigger](../../../integrations/builtin/core-nodes/n8n-nodes-langchain.chattrigger/)\n\n## cluster nodes\n\n[cluster nodes](../../../glossary/#cluster-node-n8n) are node groups that work together to provide functionality in an n8n workflow. instead of using a single node, you use a [root node](../../../glossary/#root-node-n8n) and one or more [sub-nodes](../../../glossary/#sub-node-n8n) that extend the functionality of the node.\n\n### root nodes\n\neach cluster starts with one [root node](../../../glossary/#root-node-n8n).\n\n#### chains\n\na [chain](../../../glossary/#ai-chain) is a series of llms, and related tools, linked together to support functionality that can't be provided by a single llm alone.\n\navailable nodes:\n\n- [basic llm chain](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainllm/)\n- [retrieval q&a chain](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainretrievalqa/)\n- [summarization chain](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.chainsummarization/)\n- [sentiment analysis](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.sentimentanalysis/)\n- [text classifier](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.text-classifier/)\n\nlearn more about [chaining in langchain](https://js.langchain.com/docs/concepts/lcel).\n\n#### agents\n\n> an [agent](../../../glossary/#ai-agent) has access to a suite of tools, and determines which ones to use depending on the user input. agents can use multiple tools, and use the output of one tool as the input to the next. [source](https://github.com/langchain-ai/langchainjs/blob/def3a26c054575e1ed40b9062087e8c0a8899633/docs/core_docs/docs/modules/agents/index.mdx)\n\navailable nodes:\n\n- [agent](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/)\n\nlearn more about [agents in langchain](https://js.langchain.com/docs/concepts/agents).\n\n#### vector stores\n\n[vector stores](../../../glossary/#ai-vector-store) store embedded data, and perform vector searches on it.\n\n- [simple vector store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreinmemory/)\n- [pgvector vector store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorepgvector/)\n- [pinecone vector store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorepinecone/)\n- [qdrant vector store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreqdrant/)\n- [supabase vector store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoresupabase/)\n- [zep vector store](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstorezep/)\n\nlearn more about [vector stores in langchain](https://js.langchain.com/docs/concepts/vectorstores/).\n\n#### miscellaneous\n\nutility nodes.\n\n[langchain code](../../../integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.code/): import langchain. this means if there is functionality you need that n8n hasn't created a node for, you can still use it.\n\n### sub-nodes\n\neach root node can have one or more [sub-nodes](../../../glossary/#sub-node-n8n) attached to it.\n\n#### document loaders\n\ndocument loaders add data to your chain as documents. the data source can be a file or web service.\n\navailable nodes:\n\n- [default document loader](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.documentdefaultdataloader/)\n- [github document loader](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.documentgithubloader/)\n\nlearn more about [document loaders in langchain](https://js.langchain.com/docs/concepts/document_loaders).\n\n#### language models\n\n[llms (large language models)](../../../glossary/#large-language-model-llm) are programs that analyze datasets. they're the key element of working with ai.\n\navailable nodes:\n\n- [anthropic chat model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatanthropic/)\n- [aws bedrock chat model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatawsbedrock/)\n- [cohere model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmcohere/)\n- [hugging face inference model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmopenhuggingfaceinference/)\n- [mistral cloud chat model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatmistralcloud/)\n- [ollama chat model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatollama/)\n- [ollama model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmollama/)\n- [openai chat model](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatopenai/)\n\nlearn more about [language models in langchain](https://js.langchain.com/docs/concepts/chat_models).\n\n#### memory\n\n[memory](../../../glossary/#ai-memory) retains information about previous queries in a series of queries. for example, when a user interacts with a chat model, it's useful if your application can remember and call on the full conversation, not just the most recent query entered by the user.\n\navailable nodes:\n\n- [motorhead](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorymotorhead/)\n- [redis chat memory](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryredischat/)\n- [postgres chat memory](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorypostgreschat/)\n- [simple memory](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memorybufferwindow/)\n- [xata](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryxata/)\n- [zep](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.memoryzep/)\n\nlearn more about [memory in langchain](https://langchain-ai.github.io/langgraphjs/concepts/memory/).\n\n#### output parsers\n\noutput parsers take the text generated by an llm and format it to match the structure you require.\n\navailable nodes:\n\n- [auto-fixing output parser](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserautofixing/)\n- [item list output parser](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparseritemlist/)\n- [structured output parser](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.outputparserstructured/)\n\nlearn more about [output parsers in langchain](https://js.langchain.com/docs/concepts/output_parsers/).\n\n#### retrievers\n\n- [contextual compression retriever](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievercontextualcompression/)\n- [multiquery retriever](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievermultiquery/)\n- [vector store retriever](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrievervectorstore/)\n- [workflow retriever](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.retrieverworkflow/)\n\n#### text splitters\n\ntext splitters break down data (documents), making it easier for the llm to process the information and return accurate results.\n\navailable nodes:\n\n- [character text splitter](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittercharactertextsplitter/)\n- [recursive character text splitter](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplitterrecursivecharactertextsplitter/)\n- [token splitter](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.textsplittertokensplitter/)\n\nn8n's text splitter nodes implements parts of [langchain's text_splitter api](https://js.langchain.com/docs/concepts/text_splitters/).\n\n#### tools\n\nutility [tools](../../../glossary/#ai-tool).\n\n- [calculator](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolcalculator/)\n- [code tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolcode/)\n- [serpapi](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolserpapi/)\n- [think tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolthink/)\n- [vector store tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolvectorstore/)\n- [wikipedia](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolwikipedia/)\n- [wolfram|alpha](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolwolframalpha/)\n- [workflow tool](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolworkflow/)\n\n#### embeddings\n\n> [embeddings](../../../glossary/#ai-embedding) capture the \"relatedness\" of text, images, video, or other types of information. ([source](https://supabase.com/docs/guides/ai/concepts))\n\navailable nodes:\n\n- [embeddings aws bedrock](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsawsbedrock/)\n- [embeddings cohere](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingscohere/)\n- [embeddings google palm](../../../integrations/builtin/cluster-nodes/sub-nodes/n8n-n",
|
|
4881
5111
|
"importantTerms": [
|
|
4882
5112
|
"nodes",
|
|
4883
5113
|
"langchain",
|
|
@@ -4885,9 +5115,9 @@
|
|
|
4885
5115
|
"integrations",
|
|
4886
5116
|
"builtin",
|
|
4887
5117
|
"root",
|
|
4888
|
-
"vector",
|
|
4889
5118
|
"concepts",
|
|
4890
5119
|
"node",
|
|
5120
|
+
"vector",
|
|
4891
5121
|
"https",
|
|
4892
5122
|
"docs",
|
|
4893
5123
|
"glossary",
|
|
@@ -18552,13 +18782,13 @@
|
|
|
18552
18782
|
"nodeName": null,
|
|
18553
18783
|
"nodeType": null,
|
|
18554
18784
|
"content": {
|
|
18555
|
-
"markdown": "# OpenTelemetry tracing\n\nThis feature is still under development - Initially available from 2.19.0\n\nAgent telemetry and open telemetry formatted metrics will be coming soon\n\nn8n can emit [OpenTelemetry](https://opentelemetry.io/) traces for workflow and node executions. Use these traces to monitor execution latency, debug failures, and track requests across services in your observability stack.\n\nFeature availability\n\nOpenTelemetry workflow tracing requires environment variables to be set, so it's available on self-hosted n8n only.\n\n## What you get\n\nWhen you turn on tracing, n8n exports two kinds of spans for each execution:\n\n- **`workflow.execute`**: One span per workflow execution. It records the workflow ID, name, version, node count, execution mode, status, and any error type.\n- **`node.execute`**: One span per node execution, nested inside its workflow span. It records the node ID, name, type, version, and the number of input and output items.\n\nEach span includes resource attributes that identify the n8n instance:\n\n- `service.name` (default `n8n`)\n- `service.version` (the n8n version)\n- `n8n.instance.id`\n- `n8n.instance.role` (for example, `main`, `worker`, or `webhook`)\n\nn8n also handles trace context propagation:\n\n- **Inbound**: If a webhook request includes a [W3C `traceparent` header](https://www.w3.org/TR/trace-context/), n8n uses it as the parent for the workflow span. This links the n8n workflow trace to the upstream caller.\n- **Outbound**: HTTP Request nodes (and other nodes that use the n8n HTTP helpers) can inject a `traceparent` header into outbound requests. Downstream services that support W3C trace context can therefore continue the trace.\n- **Sub-workflows**: A sub-workflow's span uses the parent workflow's span as its parent.\n- **Resumed workflows**: When a workflow resumes after a wait, the new span links back to the previous span using a span link.\n\n## Enable tracing\n\nSet the following environment variables on each n8n instance you want workflow tracing enabled (main, workers, and webhook processors):\n\n```\nexport N8N_OTEL_ENABLED=true\nexport N8N_OTEL_EXPORTER_OTLP_ENDPOINT=http://<your-collector-host>:4318\n```\n\nRestart n8n. The instance starts exporting spans over OTLP HTTP using the Protobuf encoding.\n\nn8n appends `/v1/traces` to the endpoint by default. Point `N8N_OTEL_EXPORTER_OTLP_ENDPOINT` at the base URL of your collector, not the traces path.\n\nIf your collector needs authentication, set `N8N_OTEL_EXPORTER_OTLP_HEADERS` to a comma-separated list of `key=value` pairs:\n\n```\nexport N8N_OTEL_EXPORTER_OTLP_HEADERS=\"authorization=Bearer <your-token>,x-tenant=acme\"\n\n// For added protection - It is recommended to use the `_FILE` postfix if you are putting a token in here:\nexport N8N_OTEL_EXPORTER_OTLP_HEADERS_FILE=/mnt/otel-headers\n```\n\nFor the full list of supported variables, refer to [OpenTelemetry environment variables](../../configuration/environment-variables/opentelemetry/).\n\nQueue mode\n\nIn [queue mode](../../scaling/queue-mode/), set the OpenTelemetry variables on the main, worker, and webhook instances. Trace context is propagated between main, worker and webhook instances.\n\n## Sampling\n\nBy default, n8n exports every trace. To reduce volume in busy instances, set `N8N_OTEL_TRACES_SAMPLE_RATE` to a value between `0` and `1`:\n\n```\n# Export 10% of traces\nexport N8N_OTEL_TRACES_SAMPLE_RATE=0.1\n```\n\nn8n uses a trace ID ratio sampler, so the same trace ID is either fully sampled or fully dropped across all spans in the trace.\n\nn8n will output a trace for every workflow execution - this includes published workflows, unpublished workflows and test executions - In a future release a toggle will be available to track only published workflows\n\n## Reduce span volume\n\nEach node in a workflow produces its own span. For workflows with lots of nodes, this can produce more data than you need. To export only workflow-level spans, set:\n\n```\nexport N8N_OTEL_TRACES_INCLUDE_NODE_SPANS=false\n```\n\nTo stop n8n from injecting `traceparent` headers into outbound HTTP requests, set:\n\n```\nexport N8N_OTEL_TRACES_INJECT_OUTBOUND=false\n```\n\n## Add custom attributes to node spans\n\nIf you're [building a custom node](../../../integrations/creating-nodes/overview/), you can attach custom key-value pairs to the node's span. Call `setMetadata` from the node's `execute` method:\n\n```\nasync execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {\n\tthis.setMetadata({\n\t\ttracing: {\n\t\t\t'llm.model': 'gpt-4o',\n\t\t\t'llm.token.input': 1500,\n\t\t\t'llm.token.output': 340,\n\t\t},\n\t});\n\n\treturn [this.getInputData()];\n}\n```\n\nn8n prefixes each key with `n8n.node.custom.` on the exported span. Values must be strings, numbers, or boolean.\n\nThis API isn't available from the Code node. It's intended for node authors who want to enrich spans with domain-specific data.\n\n## Try it out with Jaeger\n\nYou can send traces to a local [Jaeger](https://www.jaegertracing.io/) instance to see them in action.\n\n1. Save the following as `docker-compose.yml`:\n\n```\nservices:\n jaeger:\n image: jaegertracing/jaeger:latest\n ports:\n - \"16686:16686\" # UI\n - \"4317:4317\" # OTLP gRPC\n - \"4318:4318\" # OTLP HTTP\n```\n\n2. Start Jaeger:\n\n```\ndocker compose up -d\n```\n\n3. Start n8n with tracing turned on and pointed at Jaeger. Information about [starting n8n](https://github.com/n8n-io/n8n/blob/master/CONTRIBUTING.md) can be found elsewhere in this documentation:\n\n```\nN8N_OTEL_ENABLED=true N8N_OTEL_EXPORTER_OTLP_ENDPOINT=http://127.0.0.1:4318 n8n start\n```\n\n5. Run a workflow, then open the Jaeger UI at <http://localhost:16686> - Select \"n8n\" as service\" and click \"Find traces\" to see the OpenTelemetry traces emitted by n8n.\n\n## Span attributes\n\nWorkflow and node spans include the following n8n-specific attributes.\n\n### Workflow span (`workflow.execute`)\n\n| Attribute | Description |\n| -------------------------- | ---------------------------------------------------------------------- |\n| `n8n.workflow.id` | Workflow ID. |\n| `n8n.workflow.name` | Workflow name. |\n| `n8n.workflow.version_id` | Workflow version ID. |\n| `n8n.workflow.node_count` | Number of nodes in the workflow. |\n| `n8n.execution.id` | Execution ID. |\n| `n8n.execution.mode` | Execution mode (for example, `manual`, `webhook`, `trigger`, `retry`). |\n| `n8n.execution.status` | Final execution status. |\n| `n8n.execution.is_retry` | `true` if the execution is a retry. |\n| `n8n.execution.retry_of` | The original execution ID, when the execution is a retry. |\n| `n8n.execution.error_type` | Error class name, set when the execution fails. |\n| `n8n.continuation.reason` | Set on a span link when the workflow resumes after a wait. |\n\n### Node span (`node.execute`)\n\n| Attribute | Description |\n| ----------------------------- | -------------------------------------------------------------------------------------- |\n| `n8n.node.id` | Node ID. |\n| `n8n.node.name` | Node name. |\n| `n8n.node.type` | Node type (for example, `n8n-nodes-base.httpRequest`). |\n| `n8n.node.type_version` | Node type version. |\n| `n8n.node.items.input` | Number of input items the node received. |\n| `n8n.node.items.output` | Number of output items the node produced. |\n| `n8n.node.termination_reason` | Why a node span ended without a normal completion (for example, `workflow_cancelled`). |\n| `n8n.node.custom.<key>` | Custom attributes set through `metadata.tracing` in the node output. |\n\nWhen a node fails, n8n records an `exception` event on the span with the standard OpenTelemetry exception attributes (`exception.type`, `exception.message`, `exception.stacktrace`).\n\n## Troubleshooting\n\n### No traces appear in your backend\n\nIf n8n can't reach the OTLP endpoint at startup, it logs an error:\n\n```\nFailed to connect to OpenTelemetry OTLP endpoint during startup\n```\n\nCheck that:\n\n- `N8N_OTEL_ENABLED` is set to `true`.\n- `N8N_OTEL_EXPORTER_OTLP_ENDPOINT` points at the base URL of the collector (not the `/v1/traces` path).\n- The collector is reachable from the n8n container or host.\n- Any required `N8N_OTEL_EXPORTER_OTLP_HEADERS` (such as authentication tokens) are set.\n\nn8n logs OpenTelemetry diagnostics at `warn` level by default. Set `N8N_LOG_LEVEL=debug` to see more detail.\n\n### Worker traces are missing parent context\n\nIn queue mode, workers read the parent trace context from the database. If you only set the OpenTelemetry environment variables on the main instance, worker spans won't link to the parent workflow trace. Set the same variables on every instance type.\n\n## Related resources\n\n- [OpenTelemetry environment variables](../../configuration/environment-variables/opentelemetry/)\n- [W3C Trace Context specification](https://www.w3.org/TR/trace-context/)\n- [OpenTelemetry Collector documentation](https://opentelemetry.io/docs/collector/)\n- [Logging in n8n](../logging/)\n- [Monitoring](../monitoring/)\n",
|
|
18556
|
-
"excerpt": "# OpenTelemetry tracing This feature is still under development
|
|
18785
|
+
"markdown": "# OpenTelemetry tracing\n\nThis feature is still under development\n\n- Initially available from 2.19.0\n- Open telemetry formatted metrics will be coming soon\n\nn8n can emit [OpenTelemetry](https://opentelemetry.io/) traces for workflow and node executions. Use these traces to monitor execution latency, debug failures, and track requests across services in your observability stack.\n\nFeature availability\n\nOpenTelemetry workflow tracing is only available on self-hosted n8n.\n\n## What you get\n\nWhen you turn on tracing, n8n exports two kinds of spans for each execution:\n\n- **`workflow.execute`**: One span per workflow execution. It records the workflow ID, name, version, node count, execution mode, status, and any error type.\n- **`node.execute`**: One span per node execution, nested inside its workflow span. It records the node ID, name, type, version, and the number of input and output items.\n\nEach span includes resource attributes that identify the n8n instance:\n\n- `service.name` (default `n8n`)\n- `service.version` (the n8n version)\n- `n8n.instance.id`\n- `n8n.instance.role` (for example, `main`, `worker`, or `webhook`)\n\nn8n also handles trace context propagation:\n\n- **Inbound**: If a webhook request includes a [W3C `traceparent` header](https://www.w3.org/TR/trace-context/), n8n uses it as the parent for the workflow span. This links the n8n workflow trace to the upstream caller.\n- **Outbound**: HTTP Request nodes (and other nodes that use the n8n HTTP helpers) can inject a `traceparent` header into outbound requests. Downstream services that support W3C trace context can therefore continue the trace.\n- **Sub-workflows**: A sub-workflow's span uses the parent workflow's span as its parent.\n- **Resumed workflows**: When a workflow resumes after a wait, the new span links back to the previous span using a span link.\n\n## Enable tracing\n\nSet the following environment variables on each n8n instance you want workflow tracing enabled (main, workers, and webhook processors):\n\n```\nexport N8N_OTEL_ENABLED=true\nexport N8N_OTEL_EXPORTER_OTLP_ENDPOINT=http://<your-collector-host>:4318\n```\n\nRestart n8n. The instance starts exporting spans over OTLP HTTP using the Protobuf encoding.\n\nn8n appends `/v1/traces` to the endpoint by default. Point `N8N_OTEL_EXPORTER_OTLP_ENDPOINT` at the base URL of your collector, not the traces path.\n\nIf your collector needs authentication, set `N8N_OTEL_EXPORTER_OTLP_HEADERS` to a comma-separated list of `key=value` pairs:\n\n```\nexport N8N_OTEL_EXPORTER_OTLP_HEADERS=\"authorization=Bearer <your-token>,x-tenant=acme\"\n\n// For added protection - It is recommended to use the `_FILE` postfix if you are putting a token in here:\nexport N8N_OTEL_EXPORTER_OTLP_HEADERS_FILE=/mnt/otel-headers\n```\n\nFor the full list of supported variables, refer to [OpenTelemetry environment variables](../../configuration/environment-variables/opentelemetry/).\n\nQueue mode\n\nIn [queue mode](../../scaling/queue-mode/), the OpenTelemetry variables must be set on all instances. Trace context is propagated between instances.\n\n## Sampling\n\nBy default, n8n exports every trace. To reduce volume in busy instances, set `N8N_OTEL_TRACES_SAMPLE_RATE` to a value between `0` and `1`:\n\n```\n# Export 10% of traces\nexport N8N_OTEL_TRACES_SAMPLE_RATE=0.1\n```\n\nn8n uses a trace ID ratio sampler, so the same trace ID is either fully sampled or fully dropped across all spans in the trace.\n\nn8n will output a trace for every workflow execution - this includes published workflows, unpublished workflows and test executions - In a future release a toggle will be available to track only published workflows\n\n## Reduce span volume\n\nEach node in a workflow produces its own span. For workflows with lots of nodes, this can produce more data than you need. To export only workflow-level spans, set:\n\n```\nexport N8N_OTEL_TRACES_INCLUDE_NODE_SPANS=false\n```\n\nTo stop n8n from injecting `traceparent` headers into outbound HTTP requests, set:\n\n```\nexport N8N_OTEL_TRACES_INJECT_OUTBOUND=false\n```\n\n## Add custom attributes to node spans\n\nIf you're [building a custom node](../../../integrations/creating-nodes/overview/), you can attach custom key-value pairs to the node's span. Call `setMetadata` from the node's `execute` method:\n\n```\nasync execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {\n\tthis.setMetadata({\n\t\ttracing: {\n\t\t\t'llm.model': 'gpt-4o',\n\t\t\t'llm.token.input': 1500,\n\t\t\t'llm.token.output': 340,\n\t\t},\n\t});\n\n\treturn [this.getInputData()];\n}\n```\n\nn8n prefixes each key with `n8n.node.custom.` on the exported span. Values must be strings, numbers, or boolean.\n\nThis API isn't available from the Code node. It's intended for node authors who want to enrich spans with domain-specific data.\n\n## Try it out with Jaeger\n\nYou can send traces to a local [Jaeger](https://www.jaegertracing.io/) instance to see them in action.\n\n1. Save the following as `docker-compose.yml`:\n\n```\nservices:\n jaeger:\n image: jaegertracing/jaeger:latest\n ports:\n - \"16686:16686\" # UI\n - \"4317:4317\" # OTLP gRPC\n - \"4318:4318\" # OTLP HTTP\n```\n\n2. Start Jaeger:\n\n```\ndocker compose up -d\n```\n\n3. Start n8n with tracing turned on and pointed at Jaeger. Information about [starting n8n](https://github.com/n8n-io/n8n/blob/master/CONTRIBUTING.md) can be found elsewhere in this documentation:\n\n```\nN8N_OTEL_ENABLED=true N8N_OTEL_EXPORTER_OTLP_ENDPOINT=http://127.0.0.1:4318 n8n start\n```\n\n5. Run a workflow, then open the Jaeger UI at <http://localhost:16686> - Select \"n8n\" as service\" and click \"Find traces\" to see the OpenTelemetry traces emitted by n8n.\n\n## Span attributes\n\nWorkflow and node spans include the following n8n-specific attributes.\n\n### Workflow span (`workflow.execute`)\n\n| Attribute | Description |\n| -------------------------- | ---------------------------------------------------------------------- |\n| `n8n.workflow.id` | Workflow ID. |\n| `n8n.workflow.name` | Workflow name. |\n| `n8n.workflow.version_id` | Workflow version ID. |\n| `n8n.workflow.node_count` | Number of nodes in the workflow. |\n| `n8n.execution.id` | Execution ID. |\n| `n8n.execution.mode` | Execution mode (for example, `manual`, `webhook`, `trigger`, `retry`). |\n| `n8n.execution.status` | Final execution status. |\n| `n8n.execution.is_retry` | `true` if the execution is a retry. |\n| `n8n.execution.retry_of` | The original execution ID, when the execution is a retry. |\n| `n8n.execution.error_type` | Error class name, set when the execution fails. |\n| `n8n.continuation.reason` | Set on a span link when the workflow resumes after a wait. |\n\n### Node span (`node.execute`)\n\n| Attribute | Description |\n| ----------------------------- | -------------------------------------------------------------------------------------- |\n| `n8n.node.id` | Node ID. |\n| `n8n.node.name` | Node name. |\n| `n8n.node.type` | Node type (for example, `n8n-nodes-base.httpRequest`). |\n| `n8n.node.type_version` | Node type version. |\n| `n8n.node.items.input` | Number of input items the node received. |\n| `n8n.node.items.output` | Number of output items the node produced. |\n| `n8n.node.termination_reason` | Why a node span ended without a normal completion (for example, `workflow_cancelled`). |\n| `n8n.node.custom.<key>` | Custom attributes set through `metadata.tracing` in the node output. |\n\nWhen a node fails, n8n records an `exception` event on the span with the standard OpenTelemetry exception attributes (`exception.type`, `exception.message`, `exception.stacktrace`).\n\n## Troubleshooting\n\n### No traces appear in your backend\n\nIf n8n can't reach the OTLP endpoint at startup, it logs an error:\n\n```\nFailed to connect to OpenTelemetry OTLP endpoint during startup\n```\n\nCheck that:\n\n- `N8N_OTEL_ENABLED` is set to `true`.\n- `N8N_OTEL_EXPORTER_OTLP_ENDPOINT` points at the base URL of the collector (not the `/v1/traces` path).\n- The collector is reachable from the n8n container or host.\n- Any required `N8N_OTEL_EXPORTER_OTLP_HEADERS` (such as authentication tokens) are set.\n\nn8n logs OpenTelemetry diagnostics at `warn` level by default. Set `N8N_LOG_LEVEL=debug` to see more detail.\n\n### Worker traces are missing parent context\n\nIn queue mode, workers read the parent trace context from the database. If you only set the OpenTelemetry environment variables on the main instance, worker spans won't link to the parent workflow trace. Set the same variables on every instance type.\n\n## Related resources\n\n- [OpenTelemetry environment variables](../../configuration/environment-variables/opentelemetry/)\n- [W3C Trace Context specification](https://www.w3.org/TR/trace-context/)\n- [OpenTelemetry Collector documentation](https://opentelemetry.io/docs/collector/)\n- [Logging in n8n](../logging/)\n- [Monitoring](../monitoring/)\n",
|
|
18786
|
+
"excerpt": "# OpenTelemetry tracing This feature is still under development - Initially available from 2.19.0 - Open telemetry formatted metrics will be coming soon n8n can emit [OpenTelemetry](https://opentelemetry.io/) traces for workflow and node executions. Use these traces to monitor execution latency, debug failures, and track requests across services in your observability stack. Feature availability OpenTelemetry workflow tracing is only available on self-hosted n8n. ## What you get When you t...",
|
|
18557
18787
|
"sections": [
|
|
18558
18788
|
{
|
|
18559
18789
|
"title": "OpenTelemetry tracing",
|
|
18560
18790
|
"level": 1,
|
|
18561
|
-
"content": "This feature is still under development
|
|
18791
|
+
"content": "This feature is still under development\n\n- Initially available from 2.19.0\n- Open telemetry formatted metrics will be coming soon\n\nn8n can emit [OpenTelemetry](https://opentelemetry.io/) traces for workflow and node executions. Use these traces to monitor execution latency, debug failures, and track requests across services in your observability stack.\n\nFeature availability\n\nOpenTelemetry workflow tracing is only available on self-hosted n8n."
|
|
18562
18792
|
},
|
|
18563
18793
|
{
|
|
18564
18794
|
"title": "Export 10% of traces",
|
|
@@ -18605,11 +18835,11 @@
|
|
|
18605
18835
|
"codeExamples": 10,
|
|
18606
18836
|
"complexity": "intermediate",
|
|
18607
18837
|
"readingTime": "6 min",
|
|
18608
|
-
"contentLength":
|
|
18838
|
+
"contentLength": 9779,
|
|
18609
18839
|
"relatedPages": []
|
|
18610
18840
|
},
|
|
18611
18841
|
"searchIndex": {
|
|
18612
|
-
"fullText": "opentelemetry tracing # opentelemetry tracing\n\nthis feature is still under development - initially available from 2.19.0\n\nagent telemetry and open telemetry formatted metrics will be coming soon\n\nn8n can emit [opentelemetry](https://opentelemetry.io/) traces for workflow and node executions. use these traces to monitor execution latency, debug failures, and track requests across services in your observability stack.\n\nfeature availability\n\nopentelemetry workflow tracing requires environment variables to be set, so it's available on self-hosted n8n only.\n\n## what you get\n\nwhen you turn on tracing, n8n exports two kinds of spans for each execution:\n\n- **`workflow.execute`**: one span per workflow execution. it records the workflow id, name, version, node count, execution mode, status, and any error type.\n- **`node.execute`**: one span per node execution, nested inside its workflow span. it records the node id, name, type, version, and the number of input and output items.\n\neach span includes resource attributes that identify the n8n instance:\n\n- `service.name` (default `n8n`)\n- `service.version` (the n8n version)\n- `n8n.instance.id`\n- `n8n.instance.role` (for example, `main`, `worker`, or `webhook`)\n\nn8n also handles trace context propagation:\n\n- **inbound**: if a webhook request includes a [w3c `traceparent` header](https://www.w3.org/tr/trace-context/), n8n uses it as the parent for the workflow span. this links the n8n workflow trace to the upstream caller.\n- **outbound**: http request nodes (and other nodes that use the n8n http helpers) can inject a `traceparent` header into outbound requests. downstream services that support w3c trace context can therefore continue the trace.\n- **sub-workflows**: a sub-workflow's span uses the parent workflow's span as its parent.\n- **resumed workflows**: when a workflow resumes after a wait, the new span links back to the previous span using a span link.\n\n## enable tracing\n\nset the following environment variables on each n8n instance you want workflow tracing enabled (main, workers, and webhook processors):\n\n```\nexport n8n_otel_enabled=true\nexport n8n_otel_exporter_otlp_endpoint=http://<your-collector-host>:4318\n```\n\nrestart n8n. the instance starts exporting spans over otlp http using the protobuf encoding.\n\nn8n appends `/v1/traces` to the endpoint by default. point `n8n_otel_exporter_otlp_endpoint` at the base url of your collector, not the traces path.\n\nif your collector needs authentication, set `n8n_otel_exporter_otlp_headers` to a comma-separated list of `key=value` pairs:\n\n```\nexport n8n_otel_exporter_otlp_headers=\"authorization=bearer <your-token>,x-tenant=acme\"\n\n// for added protection - it is recommended to use the `_file` postfix if you are putting a token in here:\nexport n8n_otel_exporter_otlp_headers_file=/mnt/otel-headers\n```\n\nfor the full list of supported variables, refer to [opentelemetry environment variables](../../configuration/environment-variables/opentelemetry/).\n\nqueue mode\n\nin [queue mode](../../scaling/queue-mode/), set the opentelemetry variables on the main, worker, and webhook instances. trace context is propagated between main, worker and webhook instances.\n\n## sampling\n\nby default, n8n exports every trace. to reduce volume in busy instances, set `n8n_otel_traces_sample_rate` to a value between `0` and `1`:\n\n```\n# export 10% of traces\nexport n8n_otel_traces_sample_rate=0.1\n```\n\nn8n uses a trace id ratio sampler, so the same trace id is either fully sampled or fully dropped across all spans in the trace.\n\nn8n will output a trace for every workflow execution - this includes published workflows, unpublished workflows and test executions - in a future release a toggle will be available to track only published workflows\n\n## reduce span volume\n\neach node in a workflow produces its own span. for workflows with lots of nodes, this can produce more data than you need. to export only workflow-level spans, set:\n\n```\nexport n8n_otel_traces_include_node_spans=false\n```\n\nto stop n8n from injecting `traceparent` headers into outbound http requests, set:\n\n```\nexport n8n_otel_traces_inject_outbound=false\n```\n\n## add custom attributes to node spans\n\nif you're [building a custom node](../../../integrations/creating-nodes/overview/), you can attach custom key-value pairs to the node's span. call `setmetadata` from the node's `execute` method:\n\n```\nasync execute(this: iexecutefunctions): promise<inodeexecutiondata[][]> {\n\tthis.setmetadata({\n\t\ttracing: {\n\t\t\t'llm.model': 'gpt-4o',\n\t\t\t'llm.token.input': 1500,\n\t\t\t'llm.token.output': 340,\n\t\t},\n\t});\n\n\treturn [this.getinputdata()];\n}\n```\n\nn8n prefixes each key with `n8n.node.custom.` on the exported span. values must be strings, numbers, or boolean.\n\nthis api isn't available from the code node. it's intended for node authors who want to enrich spans with domain-specific data.\n\n## try it out with jaeger\n\nyou can send traces to a local [jaeger](https://www.jaegertracing.io/) instance to see them in action.\n\n1. save the following as `docker-compose.yml`:\n\n```\nservices:\n jaeger:\n image: jaegertracing/jaeger:latest\n ports:\n - \"16686:16686\" # ui\n - \"4317:4317\" # otlp grpc\n - \"4318:4318\" # otlp http\n```\n\n2. start jaeger:\n\n```\ndocker compose up -d\n```\n\n3. start n8n with tracing turned on and pointed at jaeger. information about [starting n8n](https://github.com/n8n-io/n8n/blob/master/contributing.md) can be found elsewhere in this documentation:\n\n```\nn8n_otel_enabled=true n8n_otel_exporter_otlp_endpoint=http://127.0.0.1:4318 n8n start\n```\n\n5. run a workflow, then open the jaeger ui at <http://localhost:16686> - select \"n8n\" as service\" and click \"find traces\" to see the opentelemetry traces emitted by n8n.\n\n## span attributes\n\nworkflow and node spans include the following n8n-specific attributes.\n\n### workflow span (`workflow.execute`)\n\n| attribute | description |\n| -------------------------- | ---------------------------------------------------------------------- |\n| `n8n.workflow.id` | workflow id. |\n| `n8n.workflow.name` | workflow name. |\n| `n8n.workflow.version_id` | workflow version id. |\n| `n8n.workflow.node_count` | number of nodes in the workflow. |\n| `n8n.execution.id` | execution id. |\n| `n8n.execution.mode` | execution mode (for example, `manual`, `webhook`, `trigger`, `retry`). |\n| `n8n.execution.status` | final execution status. |\n| `n8n.execution.is_retry` | `true` if the execution is a retry. |\n| `n8n.execution.retry_of` | the original execution id, when the execution is a retry. |\n| `n8n.execution.error_type` | error class name, set when the execution fails. |\n| `n8n.continuation.reason` | set on a span link when the workflow resumes after a wait. |\n\n### node span (`node.execute`)\n\n| attribute | description |\n| ----------------------------- | -------------------------------------------------------------------------------------- |\n| `n8n.node.id` | node id. |\n| `n8n.node.name` | node name. |\n| `n8n.node.type` | node type (for example, `n8n-nodes-base.httprequest`). |\n| `n8n.node.type_version` | node type version. |\n| `n8n.node.items.input` | number of input items the node received. |\n| `n8n.node.items.output` | number of output items the node produced. |\n| `n8n.node.termination_reason` | why a node span ended without a normal completion (for example, `workflow_cancelled`). |\n| `n8n.node.custom.<key>` | custom attributes set through `metadata.tracing` in the node output. |\n\nwhen a node fails, n8n records an `exception` event on the span with the standard opentelemetry exception attributes (`exception.type`, `exception.message`, `exception.stacktrace`).\n\n## troubleshooting\n\n### no traces appear in your backend\n\nif n8n can't reach the otlp endpoint at startup, it logs an error:\n\n```\nfailed to connect to opentelemetry otlp endpoint during startup\n```\n\ncheck that:\n\n- `n8n_otel_enabled` is set to `true`.\n- `n8n_otel_exporter_otlp_endpoint` points at the base url of the collector (not the `/v1/traces` path).\n- the collector is reachable from the n8n container or host.\n- any required `n8n_otel_exporter_otlp_headers` (such as authentication tokens) are set.\n\nn8n logs opentelemetry diagnostics at `warn` level by default. set `n8n_log_level=debug` to see more detail.\n\n### worker traces are missing parent context\n\nin queue mode, workers read the parent trace context from the database. if you only set the opentelemetry environment variables on the main instance, worker spans won't link to the parent workflow trace. set the same variables on every instance type.\n\n## related resources\n\n- [opentelemetry environment variables](../../configuration/environment-variables/opentelemetry/)\n- [w3c trace context specification](https://www.w3.org/tr/trace-context/)\n- [opentelemetry collector documentation](https://opentelemetry.io/docs/collector/)\n- [logging in n8n](../logging/)\n- [monitoring](../monitoring/)\n opentelemetry tracing export 10% of traces",
|
|
18842
|
+
"fullText": "opentelemetry tracing # opentelemetry tracing\n\nthis feature is still under development\n\n- initially available from 2.19.0\n- open telemetry formatted metrics will be coming soon\n\nn8n can emit [opentelemetry](https://opentelemetry.io/) traces for workflow and node executions. use these traces to monitor execution latency, debug failures, and track requests across services in your observability stack.\n\nfeature availability\n\nopentelemetry workflow tracing is only available on self-hosted n8n.\n\n## what you get\n\nwhen you turn on tracing, n8n exports two kinds of spans for each execution:\n\n- **`workflow.execute`**: one span per workflow execution. it records the workflow id, name, version, node count, execution mode, status, and any error type.\n- **`node.execute`**: one span per node execution, nested inside its workflow span. it records the node id, name, type, version, and the number of input and output items.\n\neach span includes resource attributes that identify the n8n instance:\n\n- `service.name` (default `n8n`)\n- `service.version` (the n8n version)\n- `n8n.instance.id`\n- `n8n.instance.role` (for example, `main`, `worker`, or `webhook`)\n\nn8n also handles trace context propagation:\n\n- **inbound**: if a webhook request includes a [w3c `traceparent` header](https://www.w3.org/tr/trace-context/), n8n uses it as the parent for the workflow span. this links the n8n workflow trace to the upstream caller.\n- **outbound**: http request nodes (and other nodes that use the n8n http helpers) can inject a `traceparent` header into outbound requests. downstream services that support w3c trace context can therefore continue the trace.\n- **sub-workflows**: a sub-workflow's span uses the parent workflow's span as its parent.\n- **resumed workflows**: when a workflow resumes after a wait, the new span links back to the previous span using a span link.\n\n## enable tracing\n\nset the following environment variables on each n8n instance you want workflow tracing enabled (main, workers, and webhook processors):\n\n```\nexport n8n_otel_enabled=true\nexport n8n_otel_exporter_otlp_endpoint=http://<your-collector-host>:4318\n```\n\nrestart n8n. the instance starts exporting spans over otlp http using the protobuf encoding.\n\nn8n appends `/v1/traces` to the endpoint by default. point `n8n_otel_exporter_otlp_endpoint` at the base url of your collector, not the traces path.\n\nif your collector needs authentication, set `n8n_otel_exporter_otlp_headers` to a comma-separated list of `key=value` pairs:\n\n```\nexport n8n_otel_exporter_otlp_headers=\"authorization=bearer <your-token>,x-tenant=acme\"\n\n// for added protection - it is recommended to use the `_file` postfix if you are putting a token in here:\nexport n8n_otel_exporter_otlp_headers_file=/mnt/otel-headers\n```\n\nfor the full list of supported variables, refer to [opentelemetry environment variables](../../configuration/environment-variables/opentelemetry/).\n\nqueue mode\n\nin [queue mode](../../scaling/queue-mode/), the opentelemetry variables must be set on all instances. trace context is propagated between instances.\n\n## sampling\n\nby default, n8n exports every trace. to reduce volume in busy instances, set `n8n_otel_traces_sample_rate` to a value between `0` and `1`:\n\n```\n# export 10% of traces\nexport n8n_otel_traces_sample_rate=0.1\n```\n\nn8n uses a trace id ratio sampler, so the same trace id is either fully sampled or fully dropped across all spans in the trace.\n\nn8n will output a trace for every workflow execution - this includes published workflows, unpublished workflows and test executions - in a future release a toggle will be available to track only published workflows\n\n## reduce span volume\n\neach node in a workflow produces its own span. for workflows with lots of nodes, this can produce more data than you need. to export only workflow-level spans, set:\n\n```\nexport n8n_otel_traces_include_node_spans=false\n```\n\nto stop n8n from injecting `traceparent` headers into outbound http requests, set:\n\n```\nexport n8n_otel_traces_inject_outbound=false\n```\n\n## add custom attributes to node spans\n\nif you're [building a custom node](../../../integrations/creating-nodes/overview/), you can attach custom key-value pairs to the node's span. call `setmetadata` from the node's `execute` method:\n\n```\nasync execute(this: iexecutefunctions): promise<inodeexecutiondata[][]> {\n\tthis.setmetadata({\n\t\ttracing: {\n\t\t\t'llm.model': 'gpt-4o',\n\t\t\t'llm.token.input': 1500,\n\t\t\t'llm.token.output': 340,\n\t\t},\n\t});\n\n\treturn [this.getinputdata()];\n}\n```\n\nn8n prefixes each key with `n8n.node.custom.` on the exported span. values must be strings, numbers, or boolean.\n\nthis api isn't available from the code node. it's intended for node authors who want to enrich spans with domain-specific data.\n\n## try it out with jaeger\n\nyou can send traces to a local [jaeger](https://www.jaegertracing.io/) instance to see them in action.\n\n1. save the following as `docker-compose.yml`:\n\n```\nservices:\n jaeger:\n image: jaegertracing/jaeger:latest\n ports:\n - \"16686:16686\" # ui\n - \"4317:4317\" # otlp grpc\n - \"4318:4318\" # otlp http\n```\n\n2. start jaeger:\n\n```\ndocker compose up -d\n```\n\n3. start n8n with tracing turned on and pointed at jaeger. information about [starting n8n](https://github.com/n8n-io/n8n/blob/master/contributing.md) can be found elsewhere in this documentation:\n\n```\nn8n_otel_enabled=true n8n_otel_exporter_otlp_endpoint=http://127.0.0.1:4318 n8n start\n```\n\n5. run a workflow, then open the jaeger ui at <http://localhost:16686> - select \"n8n\" as service\" and click \"find traces\" to see the opentelemetry traces emitted by n8n.\n\n## span attributes\n\nworkflow and node spans include the following n8n-specific attributes.\n\n### workflow span (`workflow.execute`)\n\n| attribute | description |\n| -------------------------- | ---------------------------------------------------------------------- |\n| `n8n.workflow.id` | workflow id. |\n| `n8n.workflow.name` | workflow name. |\n| `n8n.workflow.version_id` | workflow version id. |\n| `n8n.workflow.node_count` | number of nodes in the workflow. |\n| `n8n.execution.id` | execution id. |\n| `n8n.execution.mode` | execution mode (for example, `manual`, `webhook`, `trigger`, `retry`). |\n| `n8n.execution.status` | final execution status. |\n| `n8n.execution.is_retry` | `true` if the execution is a retry. |\n| `n8n.execution.retry_of` | the original execution id, when the execution is a retry. |\n| `n8n.execution.error_type` | error class name, set when the execution fails. |\n| `n8n.continuation.reason` | set on a span link when the workflow resumes after a wait. |\n\n### node span (`node.execute`)\n\n| attribute | description |\n| ----------------------------- | -------------------------------------------------------------------------------------- |\n| `n8n.node.id` | node id. |\n| `n8n.node.name` | node name. |\n| `n8n.node.type` | node type (for example, `n8n-nodes-base.httprequest`). |\n| `n8n.node.type_version` | node type version. |\n| `n8n.node.items.input` | number of input items the node received. |\n| `n8n.node.items.output` | number of output items the node produced. |\n| `n8n.node.termination_reason` | why a node span ended without a normal completion (for example, `workflow_cancelled`). |\n| `n8n.node.custom.<key>` | custom attributes set through `metadata.tracing` in the node output. |\n\nwhen a node fails, n8n records an `exception` event on the span with the standard opentelemetry exception attributes (`exception.type`, `exception.message`, `exception.stacktrace`).\n\n## troubleshooting\n\n### no traces appear in your backend\n\nif n8n can't reach the otlp endpoint at startup, it logs an error:\n\n```\nfailed to connect to opentelemetry otlp endpoint during startup\n```\n\ncheck that:\n\n- `n8n_otel_enabled` is set to `true`.\n- `n8n_otel_exporter_otlp_endpoint` points at the base url of the collector (not the `/v1/traces` path).\n- the collector is reachable from the n8n container or host.\n- any required `n8n_otel_exporter_otlp_headers` (such as authentication tokens) are set.\n\nn8n logs opentelemetry diagnostics at `warn` level by default. set `n8n_log_level=debug` to see more detail.\n\n### worker traces are missing parent context\n\nin queue mode, workers read the parent trace context from the database. if you only set the opentelemetry environment variables on the main instance, worker spans won't link to the parent workflow trace. set the same variables on every instance type.\n\n## related resources\n\n- [opentelemetry environment variables](../../configuration/environment-variables/opentelemetry/)\n- [w3c trace context specification](https://www.w3.org/tr/trace-context/)\n- [opentelemetry collector documentation](https://opentelemetry.io/docs/collector/)\n- [logging in n8n](../logging/)\n- [monitoring](../monitoring/)\n opentelemetry tracing export 10% of traces",
|
|
18613
18843
|
"importantTerms": [
|
|
18614
18844
|
"node",
|
|
18615
18845
|
"workflow",
|
|
@@ -18619,15 +18849,14 @@
|
|
|
18619
18849
|
"trace",
|
|
18620
18850
|
"traces",
|
|
18621
18851
|
"tracing",
|
|
18622
|
-
"variables",
|
|
18623
18852
|
"export",
|
|
18624
18853
|
"this",
|
|
18854
|
+
"variables",
|
|
18625
18855
|
"spans",
|
|
18626
18856
|
"name",
|
|
18627
18857
|
"instance",
|
|
18628
18858
|
"context",
|
|
18629
18859
|
"http",
|
|
18630
|
-
"environment",
|
|
18631
18860
|
"mode",
|
|
18632
18861
|
"type",
|
|
18633
18862
|
"collector",
|
|
@@ -18640,16 +18869,14 @@
|
|
|
18640
18869
|
"version",
|
|
18641
18870
|
"output",
|
|
18642
18871
|
"attributes",
|
|
18643
|
-
"webhook",
|
|
18644
18872
|
"parent",
|
|
18645
18873
|
"nodes",
|
|
18646
18874
|
"workflows",
|
|
18875
|
+
"environment",
|
|
18647
18876
|
"with",
|
|
18648
18877
|
"custom",
|
|
18649
18878
|
"each",
|
|
18650
18879
|
"items",
|
|
18651
|
-
"main",
|
|
18652
|
-
"worker",
|
|
18653
18880
|
"otlp",
|
|
18654
18881
|
"exception",
|
|
18655
18882
|
"available",
|
|
@@ -18659,8 +18886,11 @@
|
|
|
18659
18886
|
"that",
|
|
18660
18887
|
"default",
|
|
18661
18888
|
"example",
|
|
18889
|
+
"webhook",
|
|
18662
18890
|
"true",
|
|
18663
|
-
"token"
|
|
18891
|
+
"token",
|
|
18892
|
+
"queue",
|
|
18893
|
+
"will"
|
|
18664
18894
|
]
|
|
18665
18895
|
}
|
|
18666
18896
|
},
|
|
@@ -20532,13 +20762,13 @@
|
|
|
20532
20762
|
"nodeName": null,
|
|
20533
20763
|
"nodeType": null,
|
|
20534
20764
|
"content": {
|
|
20535
|
-
"markdown": "#
|
|
20536
|
-
"excerpt": "#
|
|
20765
|
+
"markdown": "# Handling API rate limits\n\n[API](../../../glossary/#api) rate limits are restrictions on request frequency. For example, an API may limit the number of requests you can make per minute, or per day.\n\nAPIs can also limits how much data you can send in one request, or how much data the API sends in a single response.\n\n## Identify rate limit issues\n\nWhen an n8n node hits a rate limit, it errors. n8n displays the error message in the node output panel. This includes the error message from the service.\n\nIf n8n received error 429 (too many requests) from the service, the error message is **The service is receiving too many requests from you**.\n\nTo check the rate limits for the service you're using, refer to the API documentation for the service.\n\n## Handle rate limits for integrations\n\nThere are two ways to handle rate limits in n8n's integrations: using the Retry On Fail setting, or using a combination of the [Loop Over Items](../core-nodes/n8n-nodes-base.splitinbatches/) and [Wait](../core-nodes/n8n-nodes-base.wait/) nodes:\n\n- Retry On Fail adds a pause between API request attempts.\n- With Loop Over Items and Wait you can break you request data into smaller chunks, as well as pausing between requests.\n\n### Enable Retry On Fail\n\nWhen you enable Retry On Fail, the node automatically tries the request again if it fails the first time.\n\n1. Open the node.\n1. Select **Settings**.\n1. Enable the **Retry On Fail** toggle.\n1. Configure the retry settings: if using this to work around rate limits, set **Wait Between Tries (ms)** to more than the rate limit. For example, if the API you're using allows one request per second, set **Wait Between Tries (ms)** to `1000` to allow a 1 second wait.\n\n### Use Loop Over Items and Wait\n\nUse the Loop Over Items node to batch the input items, and the Wait node to introduce a pause between each request.\n\n1. Add the Loop Over Items node before the node that calls the API. Refer to [Loop Over Items](../core-nodes/n8n-nodes-base.splitinbatches/) for information on how to configure the node.\n1. Add the Wait node after the node that calls the API, and connect it back to the Loop Over Items node. Refer to [Wait](../core-nodes/n8n-nodes-base.wait/) for information on how to configure the node.\n\nFor example, to handle rate limits when using OpenAI:\n\n## Handle rate limits in the HTTP Request node\n\nThe HTTP Request node has built-in settings for handling rate limits and large amounts of data.\n\n### Batch requests\n\nUse the Batching option to send more than one request, reducing the request size, and introducing a pause between requests. This is the equivalent of using Loop Over Items and Wait.\n\n1. In the HTTP Request node, select **Add Option** > **Batching**.\n1. Set **Items per Batch**: this is the number of input items to include in each request.\n1. Set **Batch Interval (ms)** to introduce a delay between requests. For example, if the API you're using allows one request per second, set **Wait Between Tries (ms)** to `1000` to allow a 1 second wait.\n\n### Paginate results\n\nAPIs paginate their results when they need to send more data than they can handle in a single response. For more information on pagination in the HTTP Request node, refer to [HTTP Request node | Pagination](../core-nodes/n8n-nodes-base.httprequest/#pagination).\n",
|
|
20766
|
+
"excerpt": "# Handling API rate limits [API](../../../glossary/#api) rate limits are restrictions on request frequency. For example, an API may limit the number of requests you can make per minute, or per day. APIs can also limits how much data you can send in one request, or how much data the API sends in a single response. ## Identify rate limit issues When an n8n node hits a rate limit, it errors. n8n displays the error message in the node output panel. This includes the error message from the servic...",
|
|
20537
20767
|
"sections": [
|
|
20538
20768
|
{
|
|
20539
|
-
"title": "
|
|
20769
|
+
"title": "Handling API rate limits",
|
|
20540
20770
|
"level": 1,
|
|
20541
|
-
"content": "
|
|
20771
|
+
"content": "[API](../../../glossary/#api) rate limits are restrictions on request frequency. For example, an API may limit the number of requests you can make per minute, or per day.\n\nAPIs can also limits how much data you can send in one request, or how much data the API sends in a single response."
|
|
20542
20772
|
}
|
|
20543
20773
|
]
|
|
20544
20774
|
},
|
|
@@ -20558,97 +20788,6 @@
|
|
|
20558
20788
|
"community"
|
|
20559
20789
|
],
|
|
20560
20790
|
"useCases": [],
|
|
20561
|
-
"operations": [
|
|
20562
|
-
"triggers",
|
|
20563
|
-
"actions",
|
|
20564
|
-
"n8n adds a trigger node to your workflow",
|
|
20565
|
-
"trigger operations have a bolt icon .",
|
|
20566
|
-
"node : triggers and"
|
|
20567
|
-
],
|
|
20568
|
-
"codeExamples": 0,
|
|
20569
|
-
"complexity": "beginner",
|
|
20570
|
-
"readingTime": "2 min",
|
|
20571
|
-
"contentLength": 2719,
|
|
20572
|
-
"relatedPages": []
|
|
20573
|
-
},
|
|
20574
|
-
"searchIndex": {
|
|
20575
|
-
"fullText": "node types # built-in integrations\n\nthis section contains the [node](../../../glossary/#node-n8n) library: reference documentation for every built-in node in n8n, and their credentials.\n\n## node operations: triggers and actions\n\nwhen you add a node to a workflow, n8n displays a list of available operations. an operation is something a node does, such as getting or sending data.\n\nthere are two types of operation:\n\n- triggers start a workflow in response to specific events or conditions in your services. when you select a trigger, n8n adds a trigger node to your workflow, with the trigger operation you chose pre-selected. when you search for a node in n8n, trigger operations have a bolt icon .\n- actions are operations that represent specific tasks within a workflow, which you can use to manipulate data, perform operations on external systems, and trigger events in other systems as part of your workflows. when you select an action, n8n adds a node to your workflow, with the action operation you chose pre-selected.\n\n## core nodes\n\ncore nodes can be actions or [triggers](../../../glossary/#trigger-node-n8n). whereas most nodes connect to a specific external service, core nodes provide functionality such as logic, scheduling, or generic api calls.\n\n## cluster nodes\n\n[cluster nodes](../../../glossary/#cluster-node-n8n) are node groups that work together to provide functionality in an n8n workflow. instead of using a single node, you use a [root node](../../../glossary/#root-node-n8n) and one or more [sub-nodes](../../../glossary/#sub-node-n8n) that extend the functionality of the node.\n\n## credentials\n\nexternal services need a way to identify and authenticate users. this data can range from an api key over an email/password combination to a long multi-line private key. you can save these in n8n as [credentials](../../../glossary/#credential-n8n).\n\nnodes in n8n can then request that credential information. as another layer of security, only node types with specific access rights can access the credentials.\n\nto make sure that the data is secure, it gets saved to the database encrypted. n8n uses a random personal encryption key, which it automatically generates on the first run of n8n and then saved under `~/.n8n/config`.\n\nto learn more about creating, managing, and sharing credentials, refer to [manage credentials](../../../credentials/).\n\n## community nodes\n\nn8n supports custom nodes built by the community. refer to [community nodes](../../community-nodes/installation/) for guidance on installing and using these nodes.\n\nfor help building your own custom nodes, and publish them to [npm](https://www.npmjs.com/), refer to [creating nodes](../../creating-nodes/overview/) for more information.\n built-in integrations",
|
|
20576
|
-
"importantTerms": [
|
|
20577
|
-
"node",
|
|
20578
|
-
"nodes",
|
|
20579
|
-
"credentials",
|
|
20580
|
-
"glossary",
|
|
20581
|
-
"workflow",
|
|
20582
|
-
"trigger",
|
|
20583
|
-
"operations",
|
|
20584
|
-
"your",
|
|
20585
|
-
"that",
|
|
20586
|
-
"built",
|
|
20587
|
-
"when",
|
|
20588
|
-
"operation",
|
|
20589
|
-
"data",
|
|
20590
|
-
"specific",
|
|
20591
|
-
"community",
|
|
20592
|
-
"types",
|
|
20593
|
-
"triggers",
|
|
20594
|
-
"actions",
|
|
20595
|
-
"with",
|
|
20596
|
-
"external",
|
|
20597
|
-
"core",
|
|
20598
|
-
"functionality",
|
|
20599
|
-
"cluster",
|
|
20600
|
-
"more",
|
|
20601
|
-
"creating",
|
|
20602
|
-
"refer"
|
|
20603
|
-
]
|
|
20604
|
-
}
|
|
20605
|
-
},
|
|
20606
|
-
{
|
|
20607
|
-
"id": "page-0240",
|
|
20608
|
-
"title": "Handle rate limits",
|
|
20609
|
-
"url": "https://docs.n8n.io/integrations/builtin/rate-limits/index.md",
|
|
20610
|
-
"urlPath": "integrations/builtin/rate-limits/index.md",
|
|
20611
|
-
"category": "other",
|
|
20612
|
-
"subcategory": null,
|
|
20613
|
-
"nodeName": null,
|
|
20614
|
-
"nodeType": null,
|
|
20615
|
-
"content": {
|
|
20616
|
-
"markdown": "# Handling API rate limits\n\n[API](../../../glossary/#api) rate limits are restrictions on request frequency. For example, an API may limit the number of requests you can make per minute, or per day.\n\nAPIs can also limits how much data you can send in one request, or how much data the API sends in a single response.\n\n## Identify rate limit issues\n\nWhen an n8n node hits a rate limit, it errors. n8n displays the error message in the node output panel. This includes the error message from the service.\n\nIf n8n received error 429 (too many requests) from the service, the error message is **The service is receiving too many requests from you**.\n\nTo check the rate limits for the service you're using, refer to the API documentation for the service.\n\n## Handle rate limits for integrations\n\nThere are two ways to handle rate limits in n8n's integrations: using the Retry On Fail setting, or using a combination of the [Loop Over Items](../core-nodes/n8n-nodes-base.splitinbatches/) and [Wait](../core-nodes/n8n-nodes-base.wait/) nodes:\n\n- Retry On Fail adds a pause between API request attempts.\n- With Loop Over Items and Wait you can break you request data into smaller chunks, as well as pausing between requests.\n\n### Enable Retry On Fail\n\nWhen you enable Retry On Fail, the node automatically tries the request again if it fails the first time.\n\n1. Open the node.\n1. Select **Settings**.\n1. Enable the **Retry On Fail** toggle.\n1. Configure the retry settings: if using this to work around rate limits, set **Wait Between Tries (ms)** to more than the rate limit. For example, if the API you're using allows one request per second, set **Wait Between Tries (ms)** to `1000` to allow a 1 second wait.\n\n### Use Loop Over Items and Wait\n\nUse the Loop Over Items node to batch the input items, and the Wait node to introduce a pause between each request.\n\n1. Add the Loop Over Items node before the node that calls the API. Refer to [Loop Over Items](../core-nodes/n8n-nodes-base.splitinbatches/) for information on how to configure the node.\n1. Add the Wait node after the node that calls the API, and connect it back to the Loop Over Items node. Refer to [Wait](../core-nodes/n8n-nodes-base.wait/) for information on how to configure the node.\n\nFor example, to handle rate limits when using OpenAI:\n\n## Handle rate limits in the HTTP Request node\n\nThe HTTP Request node has built-in settings for handling rate limits and large amounts of data.\n\n### Batch requests\n\nUse the Batching option to send more than one request, reducing the request size, and introducing a pause between requests. This is the equivalent of using Loop Over Items and Wait.\n\n1. In the HTTP Request node, select **Add Option** > **Batching**.\n1. Set **Items per Batch**: this is the number of input items to include in each request.\n1. Set **Batch Interval (ms)** to introduce a delay between requests. For example, if the API you're using allows one request per second, set **Wait Between Tries (ms)** to `1000` to allow a 1 second wait.\n\n### Paginate results\n\nAPIs paginate their results when they need to send more data than they can handle in a single response. For more information on pagination in the HTTP Request node, refer to [HTTP Request node | Pagination](../core-nodes/n8n-nodes-base.httprequest/#pagination).\n",
|
|
20617
|
-
"excerpt": "# Handling API rate limits [API](../../../glossary/#api) rate limits are restrictions on request frequency. For example, an API may limit the number of requests you can make per minute, or per day. APIs can also limits how much data you can send in one request, or how much data the API sends in a single response. ## Identify rate limit issues When an n8n node hits a rate limit, it errors. n8n displays the error message in the node output panel. This includes the error message from the servic...",
|
|
20618
|
-
"sections": [
|
|
20619
|
-
{
|
|
20620
|
-
"title": "Handling API rate limits",
|
|
20621
|
-
"level": 1,
|
|
20622
|
-
"content": "[API](../../../glossary/#api) rate limits are restrictions on request frequency. For example, an API may limit the number of requests you can make per minute, or per day.\n\nAPIs can also limits how much data you can send in one request, or how much data the API sends in a single response."
|
|
20623
|
-
}
|
|
20624
|
-
]
|
|
20625
|
-
},
|
|
20626
|
-
"metadata": {
|
|
20627
|
-
"keywords": [
|
|
20628
|
-
"handle",
|
|
20629
|
-
"rate",
|
|
20630
|
-
"limits",
|
|
20631
|
-
"handling",
|
|
20632
|
-
"identify",
|
|
20633
|
-
"limit",
|
|
20634
|
-
"issues",
|
|
20635
|
-
"integrations",
|
|
20636
|
-
"enable",
|
|
20637
|
-
"retry",
|
|
20638
|
-
"fail",
|
|
20639
|
-
"loop",
|
|
20640
|
-
"over",
|
|
20641
|
-
"items",
|
|
20642
|
-
"wait",
|
|
20643
|
-
"http",
|
|
20644
|
-
"request",
|
|
20645
|
-
"node",
|
|
20646
|
-
"batch",
|
|
20647
|
-
"requests",
|
|
20648
|
-
"paginate",
|
|
20649
|
-
"results"
|
|
20650
|
-
],
|
|
20651
|
-
"useCases": [],
|
|
20652
20791
|
"operations": [],
|
|
20653
20792
|
"codeExamples": 0,
|
|
20654
20793
|
"complexity": "beginner",
|
|
@@ -20657,12 +20796,12 @@
|
|
|
20657
20796
|
"relatedPages": []
|
|
20658
20797
|
},
|
|
20659
20798
|
"searchIndex": {
|
|
20660
|
-
"fullText": "
|
|
20799
|
+
"fullText": "node types # handling api rate limits\n\n[api](../../../glossary/#api) rate limits are restrictions on request frequency. for example, an api may limit the number of requests you can make per minute, or per day.\n\napis can also limits how much data you can send in one request, or how much data the api sends in a single response.\n\n## identify rate limit issues\n\nwhen an n8n node hits a rate limit, it errors. n8n displays the error message in the node output panel. this includes the error message from the service.\n\nif n8n received error 429 (too many requests) from the service, the error message is **the service is receiving too many requests from you**.\n\nto check the rate limits for the service you're using, refer to the api documentation for the service.\n\n## handle rate limits for integrations\n\nthere are two ways to handle rate limits in n8n's integrations: using the retry on fail setting, or using a combination of the [loop over items](../core-nodes/n8n-nodes-base.splitinbatches/) and [wait](../core-nodes/n8n-nodes-base.wait/) nodes:\n\n- retry on fail adds a pause between api request attempts.\n- with loop over items and wait you can break you request data into smaller chunks, as well as pausing between requests.\n\n### enable retry on fail\n\nwhen you enable retry on fail, the node automatically tries the request again if it fails the first time.\n\n1. open the node.\n1. select **settings**.\n1. enable the **retry on fail** toggle.\n1. configure the retry settings: if using this to work around rate limits, set **wait between tries (ms)** to more than the rate limit. for example, if the api you're using allows one request per second, set **wait between tries (ms)** to `1000` to allow a 1 second wait.\n\n### use loop over items and wait\n\nuse the loop over items node to batch the input items, and the wait node to introduce a pause between each request.\n\n1. add the loop over items node before the node that calls the api. refer to [loop over items](../core-nodes/n8n-nodes-base.splitinbatches/) for information on how to configure the node.\n1. add the wait node after the node that calls the api, and connect it back to the loop over items node. refer to [wait](../core-nodes/n8n-nodes-base.wait/) for information on how to configure the node.\n\nfor example, to handle rate limits when using openai:\n\n## handle rate limits in the http request node\n\nthe http request node has built-in settings for handling rate limits and large amounts of data.\n\n### batch requests\n\nuse the batching option to send more than one request, reducing the request size, and introducing a pause between requests. this is the equivalent of using loop over items and wait.\n\n1. in the http request node, select **add option** > **batching**.\n1. set **items per batch**: this is the number of input items to include in each request.\n1. set **batch interval (ms)** to introduce a delay between requests. for example, if the api you're using allows one request per second, set **wait between tries (ms)** to `1000` to allow a 1 second wait.\n\n### paginate results\n\napis paginate their results when they need to send more data than they can handle in a single response. for more information on pagination in the http request node, refer to [http request node | pagination](../core-nodes/n8n-nodes-base.httprequest/#pagination).\n handling api rate limits",
|
|
20661
20800
|
"importantTerms": [
|
|
20662
20801
|
"node",
|
|
20663
20802
|
"request",
|
|
20664
|
-
"rate",
|
|
20665
20803
|
"wait",
|
|
20804
|
+
"rate",
|
|
20666
20805
|
"limits",
|
|
20667
20806
|
"items",
|
|
20668
20807
|
"nodes",
|
|
@@ -20671,10 +20810,10 @@
|
|
|
20671
20810
|
"over",
|
|
20672
20811
|
"between",
|
|
20673
20812
|
"requests",
|
|
20674
|
-
"handle",
|
|
20675
20813
|
"retry",
|
|
20676
20814
|
"data",
|
|
20677
20815
|
"service",
|
|
20816
|
+
"handle",
|
|
20678
20817
|
"fail",
|
|
20679
20818
|
"core",
|
|
20680
20819
|
"base",
|
|
@@ -94034,7 +94173,7 @@
|
|
|
94034
94173
|
"page-0028",
|
|
94035
94174
|
"page-0029",
|
|
94036
94175
|
"page-0030",
|
|
94037
|
-
"page-
|
|
94176
|
+
"page-0038",
|
|
94038
94177
|
"page-0053",
|
|
94039
94178
|
"page-0147",
|
|
94040
94179
|
"page-0558",
|
|
@@ -94151,7 +94290,6 @@
|
|
|
94151
94290
|
"page-0218",
|
|
94152
94291
|
"page-0230",
|
|
94153
94292
|
"page-0239",
|
|
94154
|
-
"page-0240",
|
|
94155
94293
|
"page-0242",
|
|
94156
94294
|
"page-0243",
|
|
94157
94295
|
"page-0244",
|
|
@@ -95137,6 +95275,7 @@
|
|
|
95137
95275
|
"page-0003",
|
|
95138
95276
|
"page-0008",
|
|
95139
95277
|
"page-0013",
|
|
95278
|
+
"page-0040",
|
|
95140
95279
|
"page-0044",
|
|
95141
95280
|
"page-0051",
|
|
95142
95281
|
"page-0073",
|
|
@@ -95341,7 +95480,6 @@
|
|
|
95341
95480
|
"page-0070",
|
|
95342
95481
|
"page-0079",
|
|
95343
95482
|
"page-0080",
|
|
95344
|
-
"page-0240",
|
|
95345
95483
|
"page-0506",
|
|
95346
95484
|
"page-0540",
|
|
95347
95485
|
"page-0544",
|
|
@@ -95427,7 +95565,6 @@
|
|
|
95427
95565
|
"page-0012",
|
|
95428
95566
|
"page-0026",
|
|
95429
95567
|
"page-0102",
|
|
95430
|
-
"page-0240",
|
|
95431
95568
|
"page-0355",
|
|
95432
95569
|
"page-0381",
|
|
95433
95570
|
"page-0501",
|
|
@@ -95580,7 +95717,7 @@
|
|
|
95580
95717
|
"from": [
|
|
95581
95718
|
"page-0003",
|
|
95582
95719
|
"page-0015",
|
|
95583
|
-
"page-
|
|
95720
|
+
"page-0038",
|
|
95584
95721
|
"page-0043",
|
|
95585
95722
|
"page-0044",
|
|
95586
95723
|
"page-0050",
|
|
@@ -95964,7 +96101,6 @@
|
|
|
95964
96101
|
"page-0224",
|
|
95965
96102
|
"page-0226",
|
|
95966
96103
|
"page-0233",
|
|
95967
|
-
"page-0240",
|
|
95968
96104
|
"page-0577",
|
|
95969
96105
|
"page-0580",
|
|
95970
96106
|
"page-0883",
|
|
@@ -96024,6 +96160,7 @@
|
|
|
96024
96160
|
"page-0020",
|
|
96025
96161
|
"page-0026",
|
|
96026
96162
|
"page-0035",
|
|
96163
|
+
"page-0037",
|
|
96027
96164
|
"page-0541",
|
|
96028
96165
|
"page-0558",
|
|
96029
96166
|
"page-0559",
|
|
@@ -96484,6 +96621,7 @@
|
|
|
96484
96621
|
"page-0003",
|
|
96485
96622
|
"page-0006",
|
|
96486
96623
|
"page-0034",
|
|
96624
|
+
"page-0040",
|
|
96487
96625
|
"page-0209",
|
|
96488
96626
|
"page-0215",
|
|
96489
96627
|
"page-0220",
|
|
@@ -97500,7 +97638,7 @@
|
|
|
97500
97638
|
"page-0028",
|
|
97501
97639
|
"page-0029",
|
|
97502
97640
|
"page-0030",
|
|
97503
|
-
"page-
|
|
97641
|
+
"page-0038",
|
|
97504
97642
|
"page-0043",
|
|
97505
97643
|
"page-0047",
|
|
97506
97644
|
"page-0049",
|
|
@@ -98064,7 +98202,8 @@
|
|
|
98064
98202
|
"page-0006",
|
|
98065
98203
|
"page-0022",
|
|
98066
98204
|
"page-0036",
|
|
98067
|
-
"page-
|
|
98205
|
+
"page-0038",
|
|
98206
|
+
"page-0040",
|
|
98068
98207
|
"page-0528",
|
|
98069
98208
|
"page-0558",
|
|
98070
98209
|
"page-0559",
|
|
@@ -98093,6 +98232,7 @@
|
|
|
98093
98232
|
],
|
|
98094
98233
|
"cluster": [
|
|
98095
98234
|
"page-0006",
|
|
98235
|
+
"page-0040",
|
|
98096
98236
|
"page-0165",
|
|
98097
98237
|
"page-0201",
|
|
98098
98238
|
"page-0202",
|
|
@@ -98162,6 +98302,8 @@
|
|
|
98162
98302
|
],
|
|
98163
98303
|
"langchain": [
|
|
98164
98304
|
"page-0006",
|
|
98305
|
+
"page-0039",
|
|
98306
|
+
"page-0040",
|
|
98165
98307
|
"page-0042",
|
|
98166
98308
|
"page-0057",
|
|
98167
98309
|
"page-0554",
|
|
@@ -98174,6 +98316,7 @@
|
|
|
98174
98316
|
],
|
|
98175
98317
|
"language": [
|
|
98176
98318
|
"page-0006",
|
|
98319
|
+
"page-0040",
|
|
98177
98320
|
"page-0327",
|
|
98178
98321
|
"page-0556",
|
|
98179
98322
|
"page-0634",
|
|
@@ -98183,6 +98326,7 @@
|
|
|
98183
98326
|
"model": [
|
|
98184
98327
|
"page-0006",
|
|
98185
98328
|
"page-0018",
|
|
98329
|
+
"page-0037",
|
|
98186
98330
|
"page-0495",
|
|
98187
98331
|
"page-0498",
|
|
98188
98332
|
"page-0499",
|
|
@@ -98226,6 +98370,7 @@
|
|
|
98226
98370
|
],
|
|
98227
98371
|
"root": [
|
|
98228
98372
|
"page-0006",
|
|
98373
|
+
"page-0040",
|
|
98229
98374
|
"page-0114",
|
|
98230
98375
|
"page-0129",
|
|
98231
98376
|
"page-0204",
|
|
@@ -98249,6 +98394,7 @@
|
|
|
98249
98394
|
"page-0017",
|
|
98250
98395
|
"page-0021",
|
|
98251
98396
|
"page-0023",
|
|
98397
|
+
"page-0040",
|
|
98252
98398
|
"page-0043",
|
|
98253
98399
|
"page-0074",
|
|
98254
98400
|
"page-0085",
|
|
@@ -98641,7 +98787,8 @@
|
|
|
98641
98787
|
"page-1221"
|
|
98642
98788
|
],
|
|
98643
98789
|
"learning": [
|
|
98644
|
-
"page-0009"
|
|
98790
|
+
"page-0009",
|
|
98791
|
+
"page-0039"
|
|
98645
98792
|
],
|
|
98646
98793
|
"path": [
|
|
98647
98794
|
"page-0009",
|
|
@@ -98704,6 +98851,7 @@
|
|
|
98704
98851
|
"page-0009",
|
|
98705
98852
|
"page-0022",
|
|
98706
98853
|
"page-0036",
|
|
98854
|
+
"page-0040",
|
|
98707
98855
|
"page-0071",
|
|
98708
98856
|
"page-0325",
|
|
98709
98857
|
"page-0385",
|
|
@@ -99251,7 +99399,7 @@
|
|
|
99251
99399
|
"page-0029",
|
|
99252
99400
|
"page-0030",
|
|
99253
99401
|
"page-0036",
|
|
99254
|
-
"page-
|
|
99402
|
+
"page-0038",
|
|
99255
99403
|
"page-0052",
|
|
99256
99404
|
"page-0110",
|
|
99257
99405
|
"page-0111",
|
|
@@ -99834,7 +99982,6 @@
|
|
|
99834
99982
|
"page-0013",
|
|
99835
99983
|
"page-0020",
|
|
99836
99984
|
"page-0138",
|
|
99837
|
-
"page-0240",
|
|
99838
99985
|
"page-0699"
|
|
99839
99986
|
],
|
|
99840
99987
|
"calls": [
|
|
@@ -101193,6 +101340,7 @@
|
|
|
101193
101340
|
"resources": [
|
|
101194
101341
|
"page-0017",
|
|
101195
101342
|
"page-0020",
|
|
101343
|
+
"page-0039",
|
|
101196
101344
|
"page-0043",
|
|
101197
101345
|
"page-0051",
|
|
101198
101346
|
"page-0052",
|
|
@@ -101758,6 +101906,7 @@
|
|
|
101758
101906
|
],
|
|
101759
101907
|
"templates": [
|
|
101760
101908
|
"page-0017",
|
|
101909
|
+
"page-0037",
|
|
101761
101910
|
"page-0063",
|
|
101762
101911
|
"page-0161",
|
|
101763
101912
|
"page-0242",
|
|
@@ -102223,7 +102372,6 @@
|
|
|
102223
102372
|
"page-0018",
|
|
102224
102373
|
"page-0066",
|
|
102225
102374
|
"page-0136",
|
|
102226
|
-
"page-0240",
|
|
102227
102375
|
"page-0687",
|
|
102228
102376
|
"page-1156",
|
|
102229
102377
|
"page-1179",
|
|
@@ -102272,6 +102420,7 @@
|
|
|
102272
102420
|
"page-0022",
|
|
102273
102421
|
"page-0027",
|
|
102274
102422
|
"page-0032",
|
|
102423
|
+
"page-0040",
|
|
102275
102424
|
"page-0653"
|
|
102276
102425
|
],
|
|
102277
102426
|
"managing": [
|
|
@@ -102374,6 +102523,7 @@
|
|
|
102374
102523
|
"tools": [
|
|
102375
102524
|
"page-0020",
|
|
102376
102525
|
"page-0035",
|
|
102526
|
+
"page-0040",
|
|
102377
102527
|
"page-0043",
|
|
102378
102528
|
"page-0044",
|
|
102379
102529
|
"page-0205",
|
|
@@ -102521,6 +102671,7 @@
|
|
|
102521
102671
|
"concepts": [
|
|
102522
102672
|
"page-0021",
|
|
102523
102673
|
"page-0031",
|
|
102674
|
+
"page-0040",
|
|
102524
102675
|
"page-0053",
|
|
102525
102676
|
"page-0209",
|
|
102526
102677
|
"page-0714"
|
|
@@ -102730,7 +102881,6 @@
|
|
|
102730
102881
|
"results": [
|
|
102731
102882
|
"page-0024",
|
|
102732
102883
|
"page-0026",
|
|
102733
|
-
"page-0240",
|
|
102734
102884
|
"page-0558",
|
|
102735
102885
|
"page-0559",
|
|
102736
102886
|
"page-0560",
|
|
@@ -102802,7 +102952,8 @@
|
|
|
102802
102952
|
],
|
|
102803
102953
|
"chains": [
|
|
102804
102954
|
"page-0027",
|
|
102805
|
-
"page-0033"
|
|
102955
|
+
"page-0033",
|
|
102956
|
+
"page-0040"
|
|
102806
102957
|
],
|
|
102807
102958
|
"demonstration": [
|
|
102808
102959
|
"page-0027"
|
|
@@ -102923,6 +103074,7 @@
|
|
|
102923
103074
|
],
|
|
102924
103075
|
"examples": [
|
|
102925
103076
|
"page-0031",
|
|
103077
|
+
"page-0037",
|
|
102926
103078
|
"page-0043",
|
|
102927
103079
|
"page-0050",
|
|
102928
103080
|
"page-0060",
|
|
@@ -103416,25 +103568,211 @@
|
|
|
103416
103568
|
],
|
|
103417
103569
|
"document": [
|
|
103418
103570
|
"page-0036",
|
|
103571
|
+
"page-0040",
|
|
103419
103572
|
"page-0522",
|
|
103420
103573
|
"page-0523",
|
|
103421
103574
|
"page-0538",
|
|
103422
103575
|
"page-0583"
|
|
103423
103576
|
],
|
|
103424
103577
|
"loaders": [
|
|
103425
|
-
"page-0036"
|
|
103578
|
+
"page-0036",
|
|
103579
|
+
"page-0040"
|
|
103426
103580
|
],
|
|
103427
|
-
"
|
|
103581
|
+
"specify": [
|
|
103582
|
+
"page-0037",
|
|
103583
|
+
"page-0160",
|
|
103584
|
+
"page-0169",
|
|
103585
|
+
"page-0292",
|
|
103586
|
+
"page-0428",
|
|
103587
|
+
"page-0465"
|
|
103588
|
+
],
|
|
103589
|
+
"parameters": [
|
|
103590
|
+
"page-0037",
|
|
103591
|
+
"page-0044",
|
|
103592
|
+
"page-0070",
|
|
103593
|
+
"page-0074",
|
|
103594
|
+
"page-0161",
|
|
103595
|
+
"page-0309",
|
|
103596
|
+
"page-0364",
|
|
103597
|
+
"page-0392",
|
|
103598
|
+
"page-0483",
|
|
103599
|
+
"page-0506",
|
|
103600
|
+
"page-0524",
|
|
103601
|
+
"page-0528",
|
|
103602
|
+
"page-0529",
|
|
103603
|
+
"page-0530",
|
|
103604
|
+
"page-0538",
|
|
103605
|
+
"page-0540",
|
|
103606
|
+
"page-0544",
|
|
103607
|
+
"page-0552",
|
|
103608
|
+
"page-0553",
|
|
103609
|
+
"page-0554",
|
|
103610
|
+
"page-0555",
|
|
103611
|
+
"page-0556",
|
|
103612
|
+
"page-0557",
|
|
103613
|
+
"page-0558",
|
|
103614
|
+
"page-0559",
|
|
103615
|
+
"page-0560",
|
|
103616
|
+
"page-0561",
|
|
103617
|
+
"page-0562",
|
|
103618
|
+
"page-0563",
|
|
103619
|
+
"page-0564",
|
|
103620
|
+
"page-0565",
|
|
103621
|
+
"page-0566",
|
|
103622
|
+
"page-0567",
|
|
103623
|
+
"page-0568",
|
|
103624
|
+
"page-0569",
|
|
103625
|
+
"page-0572",
|
|
103626
|
+
"page-0573",
|
|
103627
|
+
"page-0574",
|
|
103628
|
+
"page-0575",
|
|
103629
|
+
"page-0576",
|
|
103630
|
+
"page-0577",
|
|
103631
|
+
"page-0578",
|
|
103632
|
+
"page-0582",
|
|
103633
|
+
"page-0583",
|
|
103634
|
+
"page-0584",
|
|
103635
|
+
"page-0586",
|
|
103636
|
+
"page-0587",
|
|
103637
|
+
"page-0588",
|
|
103638
|
+
"page-0589",
|
|
103639
|
+
"page-0590",
|
|
103640
|
+
"page-0591",
|
|
103641
|
+
"page-0592",
|
|
103642
|
+
"page-0593",
|
|
103643
|
+
"page-0596",
|
|
103644
|
+
"page-0597",
|
|
103645
|
+
"page-0598",
|
|
103646
|
+
"page-0599",
|
|
103647
|
+
"page-0600",
|
|
103648
|
+
"page-0601",
|
|
103649
|
+
"page-0602",
|
|
103650
|
+
"page-0603",
|
|
103651
|
+
"page-0604",
|
|
103652
|
+
"page-0605",
|
|
103653
|
+
"page-0606",
|
|
103654
|
+
"page-0608",
|
|
103655
|
+
"page-0609",
|
|
103656
|
+
"page-0610",
|
|
103657
|
+
"page-0612",
|
|
103658
|
+
"page-0613",
|
|
103659
|
+
"page-0614",
|
|
103660
|
+
"page-0615",
|
|
103661
|
+
"page-0616",
|
|
103662
|
+
"page-0617",
|
|
103663
|
+
"page-0618",
|
|
103664
|
+
"page-0619",
|
|
103665
|
+
"page-0620",
|
|
103666
|
+
"page-0621",
|
|
103667
|
+
"page-0624",
|
|
103668
|
+
"page-0627",
|
|
103669
|
+
"page-0628",
|
|
103670
|
+
"page-0629",
|
|
103671
|
+
"page-0630",
|
|
103672
|
+
"page-0631",
|
|
103673
|
+
"page-0632",
|
|
103674
|
+
"page-0634",
|
|
103675
|
+
"page-0636",
|
|
103676
|
+
"page-0640",
|
|
103677
|
+
"page-0643",
|
|
103678
|
+
"page-0644",
|
|
103679
|
+
"page-0645",
|
|
103680
|
+
"page-0646",
|
|
103681
|
+
"page-0647",
|
|
103682
|
+
"page-0648",
|
|
103683
|
+
"page-0649",
|
|
103684
|
+
"page-0650",
|
|
103685
|
+
"page-0652",
|
|
103686
|
+
"page-0653",
|
|
103687
|
+
"page-0655",
|
|
103688
|
+
"page-0656",
|
|
103689
|
+
"page-0657",
|
|
103690
|
+
"page-0658",
|
|
103691
|
+
"page-0659",
|
|
103692
|
+
"page-0661",
|
|
103693
|
+
"page-0663",
|
|
103694
|
+
"page-0664",
|
|
103695
|
+
"page-0665",
|
|
103696
|
+
"page-0668",
|
|
103697
|
+
"page-0669",
|
|
103698
|
+
"page-0672",
|
|
103699
|
+
"page-0673",
|
|
103700
|
+
"page-0674",
|
|
103701
|
+
"page-0675",
|
|
103702
|
+
"page-0678",
|
|
103703
|
+
"page-0681",
|
|
103704
|
+
"page-0683",
|
|
103705
|
+
"page-0684",
|
|
103706
|
+
"page-0686",
|
|
103707
|
+
"page-0687",
|
|
103708
|
+
"page-0689",
|
|
103709
|
+
"page-0692",
|
|
103710
|
+
"page-0693",
|
|
103711
|
+
"page-0694",
|
|
103712
|
+
"page-0695",
|
|
103713
|
+
"page-0696",
|
|
103714
|
+
"page-0697",
|
|
103715
|
+
"page-0698",
|
|
103716
|
+
"page-0699",
|
|
103717
|
+
"page-0700",
|
|
103718
|
+
"page-0701",
|
|
103719
|
+
"page-0703",
|
|
103720
|
+
"page-0704",
|
|
103721
|
+
"page-0705",
|
|
103722
|
+
"page-0706",
|
|
103723
|
+
"page-0708",
|
|
103724
|
+
"page-0709",
|
|
103725
|
+
"page-0710",
|
|
103726
|
+
"page-0711",
|
|
103727
|
+
"page-0712",
|
|
103728
|
+
"page-0713",
|
|
103729
|
+
"page-0720",
|
|
103730
|
+
"page-0722",
|
|
103731
|
+
"page-0723",
|
|
103732
|
+
"page-0724",
|
|
103733
|
+
"page-0726",
|
|
103734
|
+
"page-0728",
|
|
103735
|
+
"page-0731",
|
|
103736
|
+
"page-0750",
|
|
103737
|
+
"page-1058",
|
|
103738
|
+
"page-1121",
|
|
103739
|
+
"page-1152",
|
|
103740
|
+
"page-1178",
|
|
103741
|
+
"page-1189",
|
|
103742
|
+
"page-1191",
|
|
103743
|
+
"page-1192",
|
|
103744
|
+
"page-1266"
|
|
103745
|
+
],
|
|
103746
|
+
"fill": [
|
|
103747
|
+
"page-0037"
|
|
103748
|
+
],
|
|
103749
|
+
"parameter": [
|
|
103750
|
+
"page-0037",
|
|
103751
|
+
"page-0723",
|
|
103752
|
+
"page-1177",
|
|
103753
|
+
"page-1185",
|
|
103754
|
+
"page-1186",
|
|
103755
|
+
"page-1245"
|
|
103756
|
+
],
|
|
103757
|
+
"`$fromai()`": [
|
|
103428
103758
|
"page-0037",
|
|
103759
|
+
"page-0577",
|
|
103760
|
+
"page-0632"
|
|
103761
|
+
],
|
|
103762
|
+
"function": [
|
|
103763
|
+
"page-0037"
|
|
103764
|
+
],
|
|
103765
|
+
"populate": [
|
|
103766
|
+
"page-0038",
|
|
103429
103767
|
"page-0530"
|
|
103430
103768
|
],
|
|
103431
103769
|
"pinecone": [
|
|
103432
|
-
"page-
|
|
103770
|
+
"page-0038",
|
|
103433
103771
|
"page-0564",
|
|
103434
103772
|
"page-0934"
|
|
103435
103773
|
],
|
|
103436
103774
|
"database": [
|
|
103437
|
-
"page-
|
|
103775
|
+
"page-0038",
|
|
103438
103776
|
"page-0148",
|
|
103439
103777
|
"page-0154",
|
|
103440
103778
|
"page-0175",
|
|
@@ -103457,9 +103795,73 @@
|
|
|
103457
103795
|
"page-0996"
|
|
103458
103796
|
],
|
|
103459
103797
|
"website": [
|
|
103460
|
-
"page-
|
|
103798
|
+
"page-0038",
|
|
103461
103799
|
"page-0732"
|
|
103462
103800
|
],
|
|
103801
|
+
"stores": [
|
|
103802
|
+
"page-0040",
|
|
103803
|
+
"page-0209"
|
|
103804
|
+
],
|
|
103805
|
+
"miscellaneous": [
|
|
103806
|
+
"page-0040"
|
|
103807
|
+
],
|
|
103808
|
+
"models": [
|
|
103809
|
+
"page-0040"
|
|
103810
|
+
],
|
|
103811
|
+
"output": [
|
|
103812
|
+
"page-0040",
|
|
103813
|
+
"page-0044",
|
|
103814
|
+
"page-0050",
|
|
103815
|
+
"page-0061",
|
|
103816
|
+
"page-0066",
|
|
103817
|
+
"page-0099",
|
|
103818
|
+
"page-0108",
|
|
103819
|
+
"page-0210",
|
|
103820
|
+
"page-0552",
|
|
103821
|
+
"page-0572",
|
|
103822
|
+
"page-0573",
|
|
103823
|
+
"page-0574",
|
|
103824
|
+
"page-0575",
|
|
103825
|
+
"page-0577",
|
|
103826
|
+
"page-0622",
|
|
103827
|
+
"page-0623",
|
|
103828
|
+
"page-0646",
|
|
103829
|
+
"page-0652",
|
|
103830
|
+
"page-0653",
|
|
103831
|
+
"page-0658",
|
|
103832
|
+
"page-0672",
|
|
103833
|
+
"page-0693",
|
|
103834
|
+
"page-0697",
|
|
103835
|
+
"page-0704",
|
|
103836
|
+
"page-1186",
|
|
103837
|
+
"page-1221",
|
|
103838
|
+
"page-1235"
|
|
103839
|
+
],
|
|
103840
|
+
"parsers": [
|
|
103841
|
+
"page-0040",
|
|
103842
|
+
"page-0686"
|
|
103843
|
+
],
|
|
103844
|
+
"retrievers": [
|
|
103845
|
+
"page-0040"
|
|
103846
|
+
],
|
|
103847
|
+
"splitters": [
|
|
103848
|
+
"page-0040"
|
|
103849
|
+
],
|
|
103850
|
+
"embeddings": [
|
|
103851
|
+
"page-0040",
|
|
103852
|
+
"page-0584",
|
|
103853
|
+
"page-0585",
|
|
103854
|
+
"page-0586",
|
|
103855
|
+
"page-0587",
|
|
103856
|
+
"page-0588",
|
|
103857
|
+
"page-0589",
|
|
103858
|
+
"page-0590",
|
|
103859
|
+
"page-0591",
|
|
103860
|
+
"page-0592",
|
|
103861
|
+
"page-0593",
|
|
103862
|
+
"page-0594",
|
|
103863
|
+
"page-1221"
|
|
103864
|
+
],
|
|
103463
103865
|
"langsmith": [
|
|
103464
103866
|
"page-0041"
|
|
103465
103867
|
],
|
|
@@ -103767,190 +104169,6 @@
|
|
|
103767
104169
|
"page-1238",
|
|
103768
104170
|
"page-1239"
|
|
103769
104171
|
],
|
|
103770
|
-
"parameters": [
|
|
103771
|
-
"page-0044",
|
|
103772
|
-
"page-0070",
|
|
103773
|
-
"page-0074",
|
|
103774
|
-
"page-0161",
|
|
103775
|
-
"page-0309",
|
|
103776
|
-
"page-0364",
|
|
103777
|
-
"page-0392",
|
|
103778
|
-
"page-0483",
|
|
103779
|
-
"page-0506",
|
|
103780
|
-
"page-0524",
|
|
103781
|
-
"page-0528",
|
|
103782
|
-
"page-0529",
|
|
103783
|
-
"page-0530",
|
|
103784
|
-
"page-0538",
|
|
103785
|
-
"page-0540",
|
|
103786
|
-
"page-0544",
|
|
103787
|
-
"page-0552",
|
|
103788
|
-
"page-0553",
|
|
103789
|
-
"page-0554",
|
|
103790
|
-
"page-0555",
|
|
103791
|
-
"page-0556",
|
|
103792
|
-
"page-0557",
|
|
103793
|
-
"page-0558",
|
|
103794
|
-
"page-0559",
|
|
103795
|
-
"page-0560",
|
|
103796
|
-
"page-0561",
|
|
103797
|
-
"page-0562",
|
|
103798
|
-
"page-0563",
|
|
103799
|
-
"page-0564",
|
|
103800
|
-
"page-0565",
|
|
103801
|
-
"page-0566",
|
|
103802
|
-
"page-0567",
|
|
103803
|
-
"page-0568",
|
|
103804
|
-
"page-0569",
|
|
103805
|
-
"page-0572",
|
|
103806
|
-
"page-0573",
|
|
103807
|
-
"page-0574",
|
|
103808
|
-
"page-0575",
|
|
103809
|
-
"page-0576",
|
|
103810
|
-
"page-0577",
|
|
103811
|
-
"page-0578",
|
|
103812
|
-
"page-0582",
|
|
103813
|
-
"page-0583",
|
|
103814
|
-
"page-0584",
|
|
103815
|
-
"page-0586",
|
|
103816
|
-
"page-0587",
|
|
103817
|
-
"page-0588",
|
|
103818
|
-
"page-0589",
|
|
103819
|
-
"page-0590",
|
|
103820
|
-
"page-0591",
|
|
103821
|
-
"page-0592",
|
|
103822
|
-
"page-0593",
|
|
103823
|
-
"page-0596",
|
|
103824
|
-
"page-0597",
|
|
103825
|
-
"page-0598",
|
|
103826
|
-
"page-0599",
|
|
103827
|
-
"page-0600",
|
|
103828
|
-
"page-0601",
|
|
103829
|
-
"page-0602",
|
|
103830
|
-
"page-0603",
|
|
103831
|
-
"page-0604",
|
|
103832
|
-
"page-0605",
|
|
103833
|
-
"page-0606",
|
|
103834
|
-
"page-0608",
|
|
103835
|
-
"page-0609",
|
|
103836
|
-
"page-0610",
|
|
103837
|
-
"page-0612",
|
|
103838
|
-
"page-0613",
|
|
103839
|
-
"page-0614",
|
|
103840
|
-
"page-0615",
|
|
103841
|
-
"page-0616",
|
|
103842
|
-
"page-0617",
|
|
103843
|
-
"page-0618",
|
|
103844
|
-
"page-0619",
|
|
103845
|
-
"page-0620",
|
|
103846
|
-
"page-0621",
|
|
103847
|
-
"page-0624",
|
|
103848
|
-
"page-0627",
|
|
103849
|
-
"page-0628",
|
|
103850
|
-
"page-0629",
|
|
103851
|
-
"page-0630",
|
|
103852
|
-
"page-0631",
|
|
103853
|
-
"page-0632",
|
|
103854
|
-
"page-0634",
|
|
103855
|
-
"page-0636",
|
|
103856
|
-
"page-0640",
|
|
103857
|
-
"page-0643",
|
|
103858
|
-
"page-0644",
|
|
103859
|
-
"page-0645",
|
|
103860
|
-
"page-0646",
|
|
103861
|
-
"page-0647",
|
|
103862
|
-
"page-0648",
|
|
103863
|
-
"page-0649",
|
|
103864
|
-
"page-0650",
|
|
103865
|
-
"page-0652",
|
|
103866
|
-
"page-0653",
|
|
103867
|
-
"page-0655",
|
|
103868
|
-
"page-0656",
|
|
103869
|
-
"page-0657",
|
|
103870
|
-
"page-0658",
|
|
103871
|
-
"page-0659",
|
|
103872
|
-
"page-0661",
|
|
103873
|
-
"page-0663",
|
|
103874
|
-
"page-0664",
|
|
103875
|
-
"page-0665",
|
|
103876
|
-
"page-0668",
|
|
103877
|
-
"page-0669",
|
|
103878
|
-
"page-0672",
|
|
103879
|
-
"page-0673",
|
|
103880
|
-
"page-0674",
|
|
103881
|
-
"page-0675",
|
|
103882
|
-
"page-0678",
|
|
103883
|
-
"page-0681",
|
|
103884
|
-
"page-0683",
|
|
103885
|
-
"page-0684",
|
|
103886
|
-
"page-0686",
|
|
103887
|
-
"page-0687",
|
|
103888
|
-
"page-0689",
|
|
103889
|
-
"page-0692",
|
|
103890
|
-
"page-0693",
|
|
103891
|
-
"page-0694",
|
|
103892
|
-
"page-0695",
|
|
103893
|
-
"page-0696",
|
|
103894
|
-
"page-0697",
|
|
103895
|
-
"page-0698",
|
|
103896
|
-
"page-0699",
|
|
103897
|
-
"page-0700",
|
|
103898
|
-
"page-0701",
|
|
103899
|
-
"page-0703",
|
|
103900
|
-
"page-0704",
|
|
103901
|
-
"page-0705",
|
|
103902
|
-
"page-0706",
|
|
103903
|
-
"page-0708",
|
|
103904
|
-
"page-0709",
|
|
103905
|
-
"page-0710",
|
|
103906
|
-
"page-0711",
|
|
103907
|
-
"page-0712",
|
|
103908
|
-
"page-0713",
|
|
103909
|
-
"page-0720",
|
|
103910
|
-
"page-0722",
|
|
103911
|
-
"page-0723",
|
|
103912
|
-
"page-0724",
|
|
103913
|
-
"page-0726",
|
|
103914
|
-
"page-0728",
|
|
103915
|
-
"page-0731",
|
|
103916
|
-
"page-0750",
|
|
103917
|
-
"page-1058",
|
|
103918
|
-
"page-1121",
|
|
103919
|
-
"page-1152",
|
|
103920
|
-
"page-1178",
|
|
103921
|
-
"page-1189",
|
|
103922
|
-
"page-1191",
|
|
103923
|
-
"page-1192",
|
|
103924
|
-
"page-1266"
|
|
103925
|
-
],
|
|
103926
|
-
"output": [
|
|
103927
|
-
"page-0044",
|
|
103928
|
-
"page-0050",
|
|
103929
|
-
"page-0061",
|
|
103930
|
-
"page-0066",
|
|
103931
|
-
"page-0099",
|
|
103932
|
-
"page-0108",
|
|
103933
|
-
"page-0210",
|
|
103934
|
-
"page-0552",
|
|
103935
|
-
"page-0572",
|
|
103936
|
-
"page-0573",
|
|
103937
|
-
"page-0574",
|
|
103938
|
-
"page-0575",
|
|
103939
|
-
"page-0577",
|
|
103940
|
-
"page-0622",
|
|
103941
|
-
"page-0623",
|
|
103942
|
-
"page-0646",
|
|
103943
|
-
"page-0652",
|
|
103944
|
-
"page-0653",
|
|
103945
|
-
"page-0658",
|
|
103946
|
-
"page-0672",
|
|
103947
|
-
"page-0693",
|
|
103948
|
-
"page-0697",
|
|
103949
|
-
"page-0704",
|
|
103950
|
-
"page-1186",
|
|
103951
|
-
"page-1221",
|
|
103952
|
-
"page-1235"
|
|
103953
|
-
],
|
|
103954
104172
|
"details": [
|
|
103955
104173
|
"page-0044",
|
|
103956
104174
|
"page-0144",
|
|
@@ -104320,7 +104538,6 @@
|
|
|
104320
104538
|
],
|
|
104321
104539
|
"limits": [
|
|
104322
104540
|
"page-0052",
|
|
104323
|
-
"page-0240",
|
|
104324
104541
|
"page-1006",
|
|
104325
104542
|
"page-1208",
|
|
104326
104543
|
"page-1211"
|
|
@@ -105212,7 +105429,6 @@
|
|
|
105212
105429
|
"page-0070",
|
|
105213
105430
|
"page-0079",
|
|
105214
105431
|
"page-0080",
|
|
105215
|
-
"page-0240",
|
|
105216
105432
|
"page-0635",
|
|
105217
105433
|
"page-0678",
|
|
105218
105434
|
"page-0707",
|
|
@@ -105227,7 +105443,6 @@
|
|
|
105227
105443
|
],
|
|
105228
105444
|
"requests": [
|
|
105229
105445
|
"page-0053",
|
|
105230
|
-
"page-0240",
|
|
105231
105446
|
"page-0422",
|
|
105232
105447
|
"page-0502",
|
|
105233
105448
|
"page-0544",
|
|
@@ -105312,7 +105527,6 @@
|
|
|
105312
105527
|
"page-0111",
|
|
105313
105528
|
"page-0112",
|
|
105314
105529
|
"page-0138",
|
|
105315
|
-
"page-0240",
|
|
105316
105530
|
"page-0683",
|
|
105317
105531
|
"page-0687",
|
|
105318
105532
|
"page-0699",
|
|
@@ -107934,13 +108148,6 @@
|
|
|
107934
108148
|
"trust": [
|
|
107935
108149
|
"page-0159"
|
|
107936
108150
|
],
|
|
107937
|
-
"specify": [
|
|
107938
|
-
"page-0160",
|
|
107939
|
-
"page-0169",
|
|
107940
|
-
"page-0292",
|
|
107941
|
-
"page-0428",
|
|
107942
|
-
"page-0465"
|
|
107943
|
-
],
|
|
107944
108151
|
"location": [
|
|
107945
108152
|
"page-0160",
|
|
107946
108153
|
"page-0210",
|
|
@@ -108705,9 +108912,6 @@
|
|
|
108705
108912
|
"database,": [
|
|
108706
108913
|
"page-0209"
|
|
108707
108914
|
],
|
|
108708
|
-
"stores": [
|
|
108709
|
-
"page-0209"
|
|
108710
|
-
],
|
|
108711
108915
|
"openshift:": [
|
|
108712
108916
|
"page-0209"
|
|
108713
108917
|
],
|
|
@@ -109409,7 +109613,6 @@
|
|
|
109409
109613
|
"integrations": [
|
|
109410
109614
|
"page-0236",
|
|
109411
109615
|
"page-0239",
|
|
109412
|
-
"page-0240",
|
|
109413
109616
|
"page-0891",
|
|
109414
109617
|
"page-0914"
|
|
109415
109618
|
],
|
|
@@ -109766,54 +109969,6 @@
|
|
|
109766
109969
|
"page-0239",
|
|
109767
109970
|
"page-1270"
|
|
109768
109971
|
],
|
|
109769
|
-
"handle": [
|
|
109770
|
-
"page-0240",
|
|
109771
|
-
"page-0527"
|
|
109772
|
-
],
|
|
109773
|
-
"rate": [
|
|
109774
|
-
"page-0240",
|
|
109775
|
-
"page-1006"
|
|
109776
|
-
],
|
|
109777
|
-
"identify": [
|
|
109778
|
-
"page-0240"
|
|
109779
|
-
],
|
|
109780
|
-
"limit": [
|
|
109781
|
-
"page-0240",
|
|
109782
|
-
"page-0568",
|
|
109783
|
-
"page-0576",
|
|
109784
|
-
"page-0640",
|
|
109785
|
-
"page-0683",
|
|
109786
|
-
"page-0707",
|
|
109787
|
-
"page-0813",
|
|
109788
|
-
"page-1221"
|
|
109789
|
-
],
|
|
109790
|
-
"retry": [
|
|
109791
|
-
"page-0240",
|
|
109792
|
-
"page-0723",
|
|
109793
|
-
"page-1273",
|
|
109794
|
-
"page-1279"
|
|
109795
|
-
],
|
|
109796
|
-
"fail": [
|
|
109797
|
-
"page-0240",
|
|
109798
|
-
"page-0723"
|
|
109799
|
-
],
|
|
109800
|
-
"over": [
|
|
109801
|
-
"page-0240",
|
|
109802
|
-
"page-0699"
|
|
109803
|
-
],
|
|
109804
|
-
"wait": [
|
|
109805
|
-
"page-0240",
|
|
109806
|
-
"page-0509",
|
|
109807
|
-
"page-0538",
|
|
109808
|
-
"page-0707"
|
|
109809
|
-
],
|
|
109810
|
-
"batch": [
|
|
109811
|
-
"page-0240",
|
|
109812
|
-
"page-0699"
|
|
109813
|
-
],
|
|
109814
|
-
"paginate": [
|
|
109815
|
-
"page-0240"
|
|
109816
|
-
],
|
|
109817
109972
|
"action": [
|
|
109818
109973
|
"page-0242",
|
|
109819
109974
|
"page-0538",
|
|
@@ -111291,6 +111446,11 @@
|
|
|
111291
111446
|
"page-0538",
|
|
111292
111447
|
"page-0696"
|
|
111293
111448
|
],
|
|
111449
|
+
"wait": [
|
|
111450
|
+
"page-0509",
|
|
111451
|
+
"page-0538",
|
|
111452
|
+
"page-0707"
|
|
111453
|
+
],
|
|
111294
111454
|
"thread": [
|
|
111295
111455
|
"page-0510"
|
|
111296
111456
|
],
|
|
@@ -111425,6 +111585,9 @@
|
|
|
111425
111585
|
"page-0527",
|
|
111426
111586
|
"page-1271"
|
|
111427
111587
|
],
|
|
111588
|
+
"handle": [
|
|
111589
|
+
"page-0527"
|
|
111590
|
+
],
|
|
111428
111591
|
"null": [
|
|
111429
111592
|
"page-0527"
|
|
111430
111593
|
],
|
|
@@ -111967,6 +112130,15 @@
|
|
|
111967
112130
|
"fusion": [
|
|
111968
112131
|
"page-0568"
|
|
111969
112132
|
],
|
|
112133
|
+
"limit": [
|
|
112134
|
+
"page-0568",
|
|
112135
|
+
"page-0576",
|
|
112136
|
+
"page-0640",
|
|
112137
|
+
"page-0683",
|
|
112138
|
+
"page-0707",
|
|
112139
|
+
"page-0813",
|
|
112140
|
+
"page-1221"
|
|
112141
|
+
],
|
|
111970
112142
|
"alpha": [
|
|
111971
112143
|
"page-0568",
|
|
111972
112144
|
"page-1221"
|
|
@@ -112064,10 +112236,6 @@
|
|
|
112064
112236
|
"page-0577",
|
|
112065
112237
|
"page-1271"
|
|
112066
112238
|
],
|
|
112067
|
-
"`$fromai()`": [
|
|
112068
|
-
"page-0577",
|
|
112069
|
-
"page-0632"
|
|
112070
|
-
],
|
|
112071
112239
|
"produce": [
|
|
112072
112240
|
"page-0579"
|
|
112073
112241
|
],
|
|
@@ -112087,20 +112255,6 @@
|
|
|
112087
112255
|
"page-0582",
|
|
112088
112256
|
"page-0583"
|
|
112089
112257
|
],
|
|
112090
|
-
"embeddings": [
|
|
112091
|
-
"page-0584",
|
|
112092
|
-
"page-0585",
|
|
112093
|
-
"page-0586",
|
|
112094
|
-
"page-0587",
|
|
112095
|
-
"page-0588",
|
|
112096
|
-
"page-0589",
|
|
112097
|
-
"page-0590",
|
|
112098
|
-
"page-0591",
|
|
112099
|
-
"page-0592",
|
|
112100
|
-
"page-0593",
|
|
112101
|
-
"page-0594",
|
|
112102
|
-
"page-1221"
|
|
112103
|
-
],
|
|
112104
112258
|
"bedrock": [
|
|
112105
112259
|
"page-0584",
|
|
112106
112260
|
"page-0597"
|
|
@@ -112594,9 +112748,6 @@
|
|
|
112594
112748
|
"page-1220",
|
|
112595
112749
|
"page-1271"
|
|
112596
112750
|
],
|
|
112597
|
-
"parsers": [
|
|
112598
|
-
"page-0686"
|
|
112599
|
-
],
|
|
112600
112751
|
"position": [
|
|
112601
112752
|
"page-0687"
|
|
112602
112753
|
],
|
|
@@ -112687,12 +112838,18 @@
|
|
|
112687
112838
|
"arrays": [
|
|
112688
112839
|
"page-0697"
|
|
112689
112840
|
],
|
|
112841
|
+
"over": [
|
|
112842
|
+
"page-0699"
|
|
112843
|
+
],
|
|
112690
112844
|
"(split": [
|
|
112691
112845
|
"page-0699"
|
|
112692
112846
|
],
|
|
112693
112847
|
"batches)": [
|
|
112694
112848
|
"page-0699"
|
|
112695
112849
|
],
|
|
112850
|
+
"batch": [
|
|
112851
|
+
"page-0699"
|
|
112852
|
+
],
|
|
112696
112853
|
"reset": [
|
|
112697
112854
|
"page-0699"
|
|
112698
112855
|
],
|
|
@@ -112845,12 +113002,13 @@
|
|
|
112845
113002
|
"could": [
|
|
112846
113003
|
"page-0723"
|
|
112847
113004
|
],
|
|
112848
|
-
"
|
|
113005
|
+
"retry": [
|
|
112849
113006
|
"page-0723",
|
|
112850
|
-
"page-
|
|
112851
|
-
"page-
|
|
112852
|
-
|
|
112853
|
-
|
|
113007
|
+
"page-1273",
|
|
113008
|
+
"page-1279"
|
|
113009
|
+
],
|
|
113010
|
+
"fail": [
|
|
113011
|
+
"page-0723"
|
|
112854
113012
|
],
|
|
112855
113013
|
"duplicates": [
|
|
112856
113014
|
"page-0724",
|
|
@@ -113295,6 +113453,9 @@
|
|
|
113295
113453
|
"trellix": [
|
|
113296
113454
|
"page-1001"
|
|
113297
113455
|
],
|
|
113456
|
+
"rate": [
|
|
113457
|
+
"page-1006"
|
|
113458
|
+
],
|
|
113298
113459
|
"typeform": [
|
|
113299
113460
|
"page-1007",
|
|
113300
113461
|
"page-1131"
|
|
@@ -114429,7 +114590,6 @@
|
|
|
114429
114590
|
"page-0237",
|
|
114430
114591
|
"page-0238",
|
|
114431
114592
|
"page-0239",
|
|
114432
|
-
"page-0240",
|
|
114433
114593
|
"page-0654",
|
|
114434
114594
|
"page-0655",
|
|
114435
114595
|
"page-0656",
|
|
@@ -114974,6 +115134,9 @@
|
|
|
114974
115134
|
"page-0035",
|
|
114975
115135
|
"page-0036",
|
|
114976
115136
|
"page-0037",
|
|
115137
|
+
"page-0038",
|
|
115138
|
+
"page-0039",
|
|
115139
|
+
"page-0040",
|
|
114977
115140
|
"page-0041",
|
|
114978
115141
|
"page-0042",
|
|
114979
115142
|
"page-0043",
|