@n8n-as-code/skills 1.8.0-next.31 → 1.8.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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "generatedAt": "2026-04-09T10:58:53.569Z",
2
+ "generatedAt": "2026-04-09T13:50:19.318Z",
3
3
  "version": "1.0.0",
4
4
  "sourceUrl": "https://docs.n8n.io/llms.txt",
5
5
  "totalPages": 1262,
@@ -43619,35 +43619,34 @@
43619
43619
  },
43620
43620
  {
43621
43621
  "id": "page-0556",
43622
- "title": "Supabase Vector Store",
43623
- "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoresupabase/index.md",
43624
- "urlPath": "integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoresupabase/index.md",
43622
+ "title": "Weaviate Vector Store",
43623
+ "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreweaviate/index.md",
43624
+ "urlPath": "integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreweaviate/index.md",
43625
43625
  "category": "cluster-nodes",
43626
43626
  "subcategory": null,
43627
43627
  "nodeName": null,
43628
43628
  "nodeType": null,
43629
43629
  "content": {
43630
- "markdown": "# Supabase Vector Store node\n\nUse the Supabase Vector Store to interact with your Supabase database as vector store. You can insert documents into a vector database, get many documents from a vector database, and retrieve documents to provide them to a retriever connected to a chain.\n\nUse the Supabase Vector Store to interact with your Supabase database as [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into a vector database, get documents from a vector database, retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain), or connect it directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). You can also update an item in a vector store by its ID.\n\nOn this page, you'll find the node parameters for the Supabase node, and links to more resources.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/supabase/).\n\nParameter resolution in sub-nodes\n\nSub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nMost nodes, including root nodes, take any number of items as input, process these items, and output the results. You can use expressions to refer to input items, and the node resolves the expression for each item in turn. For example, given an input of five `name` values, the expression `{{ $json.name }}` resolves to each name in turn.\n\nIn sub-nodes, the expression always resolves to the first item. For example, given an input of five `name` values, the expression `{{ $json.name }}` always resolves to the first name.\n\nSupabase provides a [quickstart for setting up your vector store](https://supabase.com/docs/guides/ai/langchain?database-method=sql). If you use settings other than the defaults in the quickstart, this may affect parameter settings in n8n. Make sure you understand what you're doing.\n\n## Node usage patterns\n\nYou can use the Supabase Vector Store node in the following patterns.\n\n### Use as a regular node to insert, update, and retrieve documents\n\nYou can use the Supabase Vector Store as a regular node to insert, update, or get documents. This pattern places the Supabase Vector Store in the regular connection flow without using an agent.\n\nYou can see an example of this in scenario 1 of [this template](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/).\n\n### Connect directly to an AI agent as a tool\n\nYou can connect the Supabase Vector Store node directly to the tool connector of an [AI agent](../n8n-nodes-langchain.agent/) to use a vector store as a resource when answering queries.\n\nHere, the connection would be: AI agent (tools connector) -> Supabase Vector Store node.\n\n### Use a retriever to fetch documents\n\nYou can use the [Vector Store Retriever](../../sub-nodes/n8n-nodes-langchain.retrievervectorstore/) node with the Supabase Vector Store node to fetch documents from the Supabase Vector Store node. This is often used with the [Question and Answer Chain](../n8n-nodes-langchain.chainretrievalqa/) node to fetch documents from the vector store that match the given chat input.\n\nAn [example of the connection flow](https://n8n.io/workflows/1960-ask-questions-about-a-pdf-using-ai/) (the example uses Pinecone, but the pattern in the same) would be: Question and Answer Chain (Retriever connector) -> Vector Store Retriever (Vector Store connector) -> Supabase Vector Store.\n\n### Use the Vector Store Question Answer Tool to answer questions\n\nAnother pattern uses the [Vector Store Question Answer Tool](../../sub-nodes/n8n-nodes-langchain.toolvectorstore/) to summarize results and answer questions from the Supabase Vector Store node. Rather than connecting the Supabase Vector Store directly as a tool, this pattern uses a tool specifically designed to summarizes data in the vector store.\n\nThe [connections flow](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/) in this case would look like this: AI agent (tools connector) -> Vector Store Question Answer Tool (Vector Store connector) -> Supabase Vector store.\n\n## Node parameters\n\n### Operation Mode\n\nThis Vector Store node has five modes: **Get Many**, **Insert Documents**, **Retrieve Documents (As Vector Store for Chain/Tool)**, **Retrieve Documents (As Tool for AI Agent)**, and **Update Documents**. The mode you select determines the operations you can perform with the node and what inputs and outputs are available.\n\n#### Get Many\n\nIn this mode, you can retrieve multiple documents from your vector database by providing a prompt. The prompt will be embedded and used for similarity search. The node will return the documents that are most similar to the prompt with their similarity score. This is useful if you want to retrieve a list of similar documents and pass them to an agent as additional context.\n\n#### Insert Documents\n\nUse Insert Documents mode to insert new documents into your vector database.\n\n#### Retrieve Documents (As Vector Store for Chain/Tool)\n\nUse Retrieve Documents (As Vector Store for Chain/Tool) mode with a vector-store retriever to retrieve documents from a vector database and provide them to the retriever connected to a chain. In this mode you must connect the node to a retriever node or root node.\n\n#### Retrieve Documents (As Tool for AI Agent)\n\nUse Retrieve Documents (As Tool for AI Agent) mode to use the vector store as a tool resource when answering queries. When formulating responses, the agent uses the vector store when the vector store name and description match the question details.\n\n#### Update Documents\n\nUse Update Documents mode to update documents in a vector database by ID. Fill in the **ID** with the ID of the embedding entry to update.\n\n### Rerank Results\n\nEnables [reranking](../../../../../glossary/#ai-reranking). If you enable this option, you must connect a reranking node to the vector store. That node will then rerank the results for queries. You can use this option with the `Get Many`, `Retrieve Documents (As Vector Store for Chain/Tool)` and `Retrieve Documents (As Tool for AI Agent)` modes.\n\n### Get Many parameters\n\n- **Table Name**: Enter the Supabase table to use.\n- **Prompt**: Enter the search query.\n- **Limit**: Enter how many results to retrieve from the vector store. For example, set this to `10` to get the ten best results.\n\n### Insert Documents parameters\n\n- **Table Name**: Enter the Supabase table to use.\n\n### Retrieve Documents (As Vector Store for Chain/Tool) parameters\n\n- **Table Name**: Enter the Supabase table to use.\n\n### Retrieve Documents (As Tool for AI Agent) parameters\n\n- **Name**: The name of the vector store.\n- **Description**: Explain to the LLM what this tool does. A good, specific description allows LLMs to produce expected results more often.\n- **Table Name**: Enter the Supabase table to use.\n- **Limit**: Enter how many results to retrieve from the vector store. For example, set this to `10` to get the ten best results.\n\n### Update Documents\n\n- **Table Name**: Enter the Supabase table to use.\n- **ID**: The ID of an embedding entry.\n\nParameters for **Update Documents**\n\n- ID\n\n## Node options\n\n### Query Name\n\nThe name of the matching function you set up in Supabase. If you follow the [Supabase quickstart](https://supabase.com/docs/guides/ai/langchain?database-method=sql), this will be `match_documents`.\n\n### Metadata Filter\n\nAvailable in **Get Many** mode. When searching for data, use this to match with metadata associated with the document.\n\nThis is an `AND` query. If you specify more than one metadata filter field, all of them must match.\n\nWhen inserting data, the metadata is set using the document loader. Refer to [Default Data Loader](../../sub-nodes/n8n-nodes-langchain.documentdefaultdataloader/) for more information on loading documents.\n\n## Templates and examples\n\n**AI Agent To Chat With Files In Supabase Storage**\n\nby Mark Shcherbakov\n\n[View template details](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/)\n\n**Automate sales cold calling pipeline with Apify, GPT-4o, and WhatsApp**\n\nby Khairul Muhtadin\n\n[View template details](https://n8n.io/workflows/5449-automate-sales-cold-calling-pipeline-with-apify-gpt-4o-and-whatsapp/)\n\n**🤖 Create a Documentation Expert Bot with RAG, Gemini, and Supabase**\n\nby Lucas Peyrin\n\n[View template details](https://n8n.io/workflows/5993-create-a-documentation-expert-bot-with-rag-gemini-and-supabase/)\n\n[Browse Supabase Vector Store integration templates](https://n8n.io/integrations/supabase-vector-store/), or [search all templates](https://n8n.io/workflows/)\n\n## Related resources\n\nRefer to [LangChain's Supabase documentation](https://js.langchain.com/docs/integrations/vectorstores/supabase/) for more information about the service.\n\nView n8n's [Advanced AI](../../../../../advanced-ai/) documentation.\n",
43631
- "excerpt": "# Supabase Vector Store node Use the Supabase Vector Store to interact with your Supabase database as vector store. You can insert documents into a vector database, get many documents from a vector database, and retrieve documents to provide them to a retriever connected to a chain. Use the Supabase Vector Store to interact with your Supabase database as [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into a vector database, get documents from a vector databa...",
43630
+ "markdown": "# Weaviate Vector Store node\n\nUse the Weaviate node to interact with your Weaviate collection as a [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into or retrieve documents from a vector database. You can also retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain) or connect this node directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). On this page, you'll find the node parameters for the Weaviate node, and links to more resources.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/weaviate/).\n\nParameter resolution in sub-nodes\n\nSub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nMost nodes, including root nodes, take any number of items as input, process these items, and output the results. You can use expressions to refer to input items, and the node resolves the expression for each item in turn. For example, given an input of five `name` values, the expression `{{ $json.name }}` resolves to each name in turn.\n\nIn sub-nodes, the expression always resolves to the first item. For example, given an input of five `name` values, the expression `{{ $json.name }}` always resolves to the first name.\n\n## Node usage patterns\n\nYou can use the Weaviate Vector Store node in the following patterns.\n\n### Use as a regular node to insert and retrieve documents\n\nYou can use the Weaviate Vector Store as a regular node to insert or get documents. This pattern places the Weaviate Vector Store in the regular connection flow without using an agent.\n\n### Connect directly to an AI agent as a tool\n\nYou can connect the Weaviate Vector Store node directly to the tool connector of an [AI agent](../n8n-nodes-langchain.agent/) to use a vector store as a resource when answering queries.\n\nHere, the connection would be: AI agent (tools connector) -> Weaviate Vector Store node.\n\n### Use a retriever to fetch documents\n\nYou can use the [Vector Store Retriever](../../sub-nodes/n8n-nodes-langchain.retrievervectorstore/) node with the Weaviate Vector Store node to fetch documents from the Weaviate Vector Store node. This is often used with the [Question and Answer Chain](../n8n-nodes-langchain.chainretrievalqa/) node to fetch documents from the vector store that match the given chat input.\n\n### Use the Vector Store Question Answer Tool to answer questions\n\nAnother pattern uses the [Vector Store Question Answer Tool](../../sub-nodes/n8n-nodes-langchain.toolvectorstore/) to summarize results and answer questions from the Weaviate Vector Store node. Rather than connecting the Weaviate Vector Store directly as a tool, this pattern uses a tool specifically designed to summarizes data in the vector store.\n\n## Node parameters\n\nMultitenancy\n\nYou can separate your data into isolated tenants for the same collection (for example, for different customers). For that, you must always provide a [Tenant Name](#tenant-name) both when inserting and retrieving objects. [Read more about multi tenancy in Weaviate docs](https://docs.weaviate.io/weaviate/manage-collections/multi-tenancy).\n\n### Operation Mode\n\nThis Vector Store node has four modes: **Get Many**, **Insert Documents**, **Retrieve Documents (As Vector Store for Chain/Tool)**, and **Retrieve Documents (As Tool for AI Agent)**. The mode you select determines the operations you can perform with the node and what inputs and outputs are available.\n\n#### Get Many\n\nIn this mode, you can retrieve multiple documents from your vector database by providing a prompt. The prompt is embedded and used for similarity search. The node returns the documents that are most similar to the prompt with their similarity score. This is useful if you want to retrieve a list of similar documents and pass them to an agent as additional context.\n\n#### Insert Documents\n\nUse insert documents mode to insert new documents into your vector database.\n\n#### Retrieve Documents (as Vector Store for Chain/Tool)\n\nUse Retrieve Documents (As Vector Store for Chain/Tool) mode with a vector-store retriever to retrieve documents from a vector database and provide them to the retriever connected to a chain. In this mode you must connect the node to a retriever node or root node.\n\n#### Retrieve Documents (as Tool for AI Agent)\n\nUse Retrieve Documents (As Tool for AI Agent) mode to use the vector store as a tool resource when answering queries. When formulating responses, the agent uses the vector store when the vector store name and description match the question details.\n\n### Get Many parameters\n\n- **Weaviate Collection**: Enter the name of the Weaviate collection to use.\n- **Prompt**: Enter the search query.\n- **Limit**: Enter how many results to retrieve from the vector store. For example, set this to `10` to get the ten best results.\n\n### Insert Documents parameters\n\n- **Weaviate Collection**: Enter the name of the Weaviate collection to use.\n- **Embedding Batch Size**: The number of documents to embed in a single batch. The default is 200 documents.\n\n### Retrieve Documents (As Vector Store for Chain/Tool) parameters\n\n- **Weaviate Collection**: Enter the name of the Weaviate collection to use.\n\n### Retrieve Documents (As Tool for AI Agent) parameters\n\n- **Weaviate Collection**: The name of the vector store.\n- **Description**: Explain to the LLM what this tool does. A good, specific description allows LLMs to produce expected results more often.\n- **Weaviate Collection**: Enter the name of the Weaviate collection to use.\n- **Limit**: Enter how many results to retrieve from the vector store. For example, set this to `10` to get the ten best results.\n\n### Include Metadata\n\nWhether to include document metadata.\n\nYou can use this with the [Get Many](#get-many) and [Retrieve Documents (As Tool for AI Agent)](#retrieve-documents-as-tool-for-ai-agent-parameters) modes.\n\n### Rerank Results\n\nEnables [reranking](../../../../../glossary/#ai-reranking). If you enable this option, you must connect a reranking node to the vector store. That node will then rerank the results for queries. You can use this option with the `Get Many`, `Retrieve Documents (As Vector Store for Chain/Tool)` and `Retrieve Documents (As Tool for AI Agent)` modes.\n\n## Node options\n\n### Search Filters\n\nAvailable for the [Get Many](#get-many), [Retrieve Documents (As Vector Store for Chain/Tool)](#retrieve-documents-as-vector-store-for-chaintool), and [Retrieve Documents (As Tool for AI Agent)](#retrieve-documents-as-tool-for-ai-agent) operation modes.\n\nWhen searching for data, use this to match metadata associated with documents. You can learn more about the operators and query structure in [Weaviate's conditional filters documentation](https://docs.weaviate.io/weaviate/api/graphql/filters).\n\nYou can use both `AND` and `OR` with different operators. Operators are case insensitive:\n\n```\n{\n \"OR\": [\n {\n \"path\": [\"source\"],\n \"operator\": \"Equal\",\n \"valueString\": \"source1\"\n },\n {\n \"path\": [\"source\"],\n \"operator\": \"Equal\",\n \"valueString\": \"source1\"\n }\n ]\n}\n```\n\nSupported operators:\n\n| Operator | Required Field(s) | Description |\n| ------------------ | ---------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `'equal'` | `valueString` or `valueNumber` | Checks if the property is equal to the given string or number. |\n| `'like'` | `valueString` | Checks if the string property matches a pattern (for example, sub-string match). |\n| `'containsAny'` | `valueTextArray` (string[]) | Checks if the property contains **any** of the given values. |\n| `'containsAll'` | `valueTextArray` (string[]) | Checks if the property contains **all** of the given values. |\n| `'greaterThan'` | `valueNumber` | Checks if the property value is greater than the given number. |\n| `'lessThan'` | `valueNumber` | Checks if the property value is less than the given number. |\n| `'isNull'` | `valueBoolean` (true/false) | Checks if the property is null or not. ([must enable before ingestion](https://docs.weaviate.io/weaviate/manage-collections/collection-operations#set-inverted-index-parameters)) |\n| `'withinGeoRange'` | `valueGeoCoordinates` (object with geolocation data) | Filters by proximity to geographic coordinates. |\n\nWhen inserting data, the document loader sets the metadata. Refer to [Default Data Loader](../../sub-nodes/n8n-nodes-langchain.documentdefaultdataloader/) for more information on loading documents.\n\n### Metadata Keys\n\nYou can define which metadata keys you want Weaviate to return on your queries. This can reduce network load, as you will only get properties you have defined. Returns all properties from the server by default.\n\nAvailable for the [Get Many](#get-many), [Retrieve Documents (As Vector Store for Chain/Tool)](#retrieve-documents-as-vector-store-for-chaintool), and [Retrieve Documents (As Tool for AI Agent)](#retrieve-documents-as-tool-for-ai-agent) operation modes.\n\n### Hybrid: Query Text\n\nProvide a query text to combine vector search with a keyword/text search.\n\n### Hybrid: Explain Score\n\nWhether to show the score fused between hybrid and vector search explanation.\n\n### Hybrid: Fusion Type\n\nSelect the fusion type for combining vector and keyword search results. [Learn more about fusion algorithms](https://weaviate.io/learn/knowledgecards/fusion-algorithm).\n\nOptions:\n\n- **Relative Score**: Uses relative score fusion\n- **Ranked**: Uses ranked fusion\n\n### Hybrid: Auto Cut Limit\n\nLimit result groups by detecting sudden jumps in score. [Learn more about autocut](https://docs.weaviate.io/weaviate/api/graphql/additional-operators#autocut).\n\n### Hybrid: Alpha\n\nChange the relative weights of the keyword and vector components. 1.0 = pure vector, 0.0 = pure keyword. Default is 0.5. [Learn more about the alpha parameter](https://weaviate.io/learn/knowledgecards/alpha-parameter).\n\n### Hybrid: Query Properties\n\nComma-separated list of properties to include in the query with optionally weighted values, e.g., \"question^2,answer\". [Learn more about setting weights on property values](https://docs.weaviate.io/weaviate/search/hybrid#set-weights-on-property-values).\n\n### Hybrid: Max Vector Distance\n\nSet the maximum allowable distance for the vector search component.\n\n### Tenant Name\n\nThe specific tenant to store or retrieve documents for. [Learn more about multi-tenancy](https://weaviate.io/learn/knowledgecards/multi-tenancy).\n\nMust enable at creation\n\nYou must pass a tenant name at first ingestion to enable multitenancy for a collection. You can't enable or disable multitenancy after creation.\n\n### Text Key\n\nThe key in the document that contains the embedded text.\n\n### Skip Init Checks\n\nWhether to [skip initialization checks](https://docs.weaviate.io/weaviate/client-libraries/typescript/notes-best-practices#initial-connection-checks) when instantiating the client.\n\n### Init Timeout\n\nNumber of seconds to wait before [timing out](https://docs.weaviate.io/weaviate/client-libraries/typescript/notes-best-practices#timeout-values) during initial checks.\n\n### Insert Timeout\n\nNumber of seconds to wait before [timing out](https://docs.weaviate.io/weaviate/client-libraries/typescript/notes-best-practices#timeout-values) during inserts.\n\n### Query Timeout\n\nNumber of seconds to wait before [timing out](https://docs.weaviate.io/weaviate/client-libraries/typescript/notes-best-practices#timeout-values) during queries.\n\n### GRPC Proxy\n\nA proxy to use for gRPC requests.\n\n### Clear Data\n\nAvailable for the [Insert Documents](#insert-documents) operation mode.\n\nWhether to clear the collection or tenant before inserting new data.\n\n## Templates and examples\n\n**Build a Weekly AI Trend Alerter with arXiv and Weaviate**\n\nby Mary Newhauser\n\n[View template details](https://n8n.io/workflows/5817-build-a-weekly-ai-trend-alerter-with-arxiv-and-weaviate/)\n\n**Build person OSINT profiles using Humantic AI, Hunter, CourtListener and GPT-5**\n\nby Open Paws\n\n[View template details](https://n8n.io/workflows/12507-build-person-osint-profiles-using-humantic-ai-hunter-courtlistener-and-gpt-5/)\n\n**Research organizations with GPT‑5, Gemini, CourtListener, LegiScan and OSINT web sources**\n\nby Open Paws\n\n[View template details](https://n8n.io/workflows/12506-research-organizations-with-gpt5-gemini-courtlistener-legiscan-and-osint-web-sources/)\n\n[Browse Weaviate Vector Store integration templates](https://n8n.io/integrations/weaviate-vector-store/), or [search all templates](https://n8n.io/workflows/)\n\n## Related resources\n\nRefer to [LangChain's Weaviate documentation](https://js.langchain.com/docs/integrations/vectorstores/weaviate/) for more information about the service.\n\nRefer to [Weaviate Installation](https://docs.weaviate.io/deploy) for a self hosted Weaviate Cluster.\n\nView n8n's [Advanced AI](../../../../../advanced-ai/) documentation.\n",
43631
+ "excerpt": "# Weaviate Vector Store node Use the Weaviate node to interact with your Weaviate collection as a [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into or retrieve documents from a vector database. You can also retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain) or connect this node directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). On this page,...",
43632
43632
  "sections": [
43633
43633
  {
43634
- "title": "Supabase Vector Store node",
43634
+ "title": "Weaviate Vector Store node",
43635
43635
  "level": 1,
43636
- "content": "Use the Supabase Vector Store to interact with your Supabase database as vector store. You can insert documents into a vector database, get many documents from a vector database, and retrieve documents to provide them to a retriever connected to a chain.\n\nUse the Supabase Vector Store to interact with your Supabase database as [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into a vector database, get documents from a vector database, retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain), or connect it directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). You can also update an item in a vector store by its ID.\n\nOn this page, you'll find the node parameters for the Supabase node, and links to more resources.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/supabase/).\n\nParameter resolution in su"
43636
+ "content": "Use the Weaviate node to interact with your Weaviate collection as a [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into or retrieve documents from a vector database. You can also retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain) or connect this node directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). On this page, you'll find the node parameters for the Weaviate node, and links to more resources.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/weaviate/).\n\nParameter resolution in sub-nodes\n\nSub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nMost nodes, including root nodes, take any number of items as input, process these items, and output the results. You can use expressions to refer to input items, and the node resolves the expression for "
43637
43637
  }
43638
43638
  ]
43639
43639
  },
43640
43640
  "metadata": {
43641
43641
  "keywords": [
43642
- "supabase",
43642
+ "weaviate",
43643
43643
  "vector",
43644
43644
  "store",
43645
43645
  "node",
43646
43646
  "usage",
43647
43647
  "patterns",
43648
43648
  "regular",
43649
- "insert,",
43650
- "update,",
43649
+ "insert",
43651
43650
  "retrieve",
43652
43651
  "documents",
43653
43652
  "connect",
@@ -43663,17 +43662,38 @@
43663
43662
  "operation",
43664
43663
  "mode",
43665
43664
  "many",
43666
- "insert",
43667
43665
  "chain/tool)",
43668
43666
  "agent)",
43669
- "update",
43667
+ "include",
43668
+ "metadata",
43670
43669
  "rerank",
43671
43670
  "results",
43672
43671
  "options",
43672
+ "search",
43673
+ "filters",
43674
+ "keys",
43675
+ "hybrid:",
43673
43676
  "query",
43677
+ "text",
43678
+ "explain",
43679
+ "score",
43680
+ "fusion",
43681
+ "type",
43682
+ "auto",
43683
+ "limit",
43684
+ "alpha",
43685
+ "properties",
43686
+ "distance",
43687
+ "tenant",
43674
43688
  "name",
43675
- "metadata",
43676
- "filter",
43689
+ "skip",
43690
+ "init",
43691
+ "checks",
43692
+ "timeout",
43693
+ "grpc",
43694
+ "proxy",
43695
+ "clear",
43696
+ "data",
43677
43697
  "templates",
43678
43698
  "examples",
43679
43699
  "related",
@@ -43683,98 +43703,99 @@
43683
43703
  "operations": [
43684
43704
  "mode"
43685
43705
  ],
43686
- "codeExamples": 0,
43706
+ "codeExamples": 1,
43687
43707
  "complexity": "intermediate",
43688
- "readingTime": "7 min",
43689
- "contentLength": 8921,
43708
+ "readingTime": "9 min",
43709
+ "contentLength": 14378,
43690
43710
  "relatedPages": []
43691
43711
  },
43692
43712
  "searchIndex": {
43693
- "fullText": "supabase vector store # supabase vector store node\n\nuse the supabase vector store to interact with your supabase database as vector store. you can insert documents into a vector database, get many documents from a vector database, and retrieve documents to provide them to a retriever connected to a chain.\n\nuse the supabase vector store to interact with your supabase database as [vector store](../../../../../glossary/#ai-vector-store). you can insert documents into a vector database, get documents from a vector database, retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain), or connect it directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). you can also update an item in a vector store by its id.\n\non this page, you'll find the node parameters for the supabase node, and links to more resources.\n\ncredentials\n\nyou can find authentication information for this node [here](../../../credentials/supabase/).\n\nparameter resolution in sub-nodes\n\nsub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nmost nodes, including root nodes, take any number of items as input, process these items, and output the results. you can use expressions to refer to input items, and the node resolves the expression for each item in turn. for example, given an input of five `name` values, the expression `{{ $json.name }}` resolves to each name in turn.\n\nin sub-nodes, the expression always resolves to the first item. for example, given an input of five `name` values, the expression `{{ $json.name }}` always resolves to the first name.\n\nsupabase provides a [quickstart for setting up your vector store](https://supabase.com/docs/guides/ai/langchain?database-method=sql). if you use settings other than the defaults in the quickstart, this may affect parameter settings in n8n. make sure you understand what you're doing.\n\n## node usage patterns\n\nyou can use the supabase vector store node in the following patterns.\n\n### use as a regular node to insert, update, and retrieve documents\n\nyou can use the supabase vector store as a regular node to insert, update, or get documents. this pattern places the supabase vector store in the regular connection flow without using an agent.\n\nyou can see an example of this in scenario 1 of [this template](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/).\n\n### connect directly to an ai agent as a tool\n\nyou can connect the supabase vector store node directly to the tool connector of an [ai agent](../n8n-nodes-langchain.agent/) to use a vector store as a resource when answering queries.\n\nhere, the connection would be: ai agent (tools connector) -> supabase vector store node.\n\n### use a retriever to fetch documents\n\nyou can use the [vector store retriever](../../sub-nodes/n8n-nodes-langchain.retrievervectorstore/) node with the supabase vector store node to fetch documents from the supabase vector store node. this is often used with the [question and answer chain](../n8n-nodes-langchain.chainretrievalqa/) node to fetch documents from the vector store that match the given chat input.\n\nan [example of the connection flow](https://n8n.io/workflows/1960-ask-questions-about-a-pdf-using-ai/) (the example uses pinecone, but the pattern in the same) would be: question and answer chain (retriever connector) -> vector store retriever (vector store connector) -> supabase vector store.\n\n### use the vector store question answer tool to answer questions\n\nanother pattern uses the [vector store question answer tool](../../sub-nodes/n8n-nodes-langchain.toolvectorstore/) to summarize results and answer questions from the supabase vector store node. rather than connecting the supabase vector store directly as a tool, this pattern uses a tool specifically designed to summarizes data in the vector store.\n\nthe [connections flow](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/) in this case would look like this: ai agent (tools connector) -> vector store question answer tool (vector store connector) -> supabase vector store.\n\n## node parameters\n\n### operation mode\n\nthis vector store node has five modes: **get many**, **insert documents**, **retrieve documents (as vector store for chain/tool)**, **retrieve documents (as tool for ai agent)**, and **update documents**. the mode you select determines the operations you can perform with the node and what inputs and outputs are available.\n\n#### get many\n\nin this mode, you can retrieve multiple documents from your vector database by providing a prompt. the prompt will be embedded and used for similarity search. the node will return the documents that are most similar to the prompt with their similarity score. this is useful if you want to retrieve a list of similar documents and pass them to an agent as additional context.\n\n#### insert documents\n\nuse insert documents mode to insert new documents into your vector database.\n\n#### retrieve documents (as vector store for chain/tool)\n\nuse retrieve documents (as vector store for chain/tool) mode with a vector-store retriever to retrieve documents from a vector database and provide them to the retriever connected to a chain. in this mode you must connect the node to a retriever node or root node.\n\n#### retrieve documents (as tool for ai agent)\n\nuse retrieve documents (as tool for ai agent) mode to use the vector store as a tool resource when answering queries. when formulating responses, the agent uses the vector store when the vector store name and description match the question details.\n\n#### update documents\n\nuse update documents mode to update documents in a vector database by id. fill in the **id** with the id of the embedding entry to update.\n\n### rerank results\n\nenables [reranking](../../../../../glossary/#ai-reranking). if you enable this option, you must connect a reranking node to the vector store. that node will then rerank the results for queries. you can use this option with the `get many`, `retrieve documents (as vector store for chain/tool)` and `retrieve documents (as tool for ai agent)` modes.\n\n### get many parameters\n\n- **table name**: enter the supabase table to use.\n- **prompt**: enter the search query.\n- **limit**: enter how many results to retrieve from the vector store. for example, set this to `10` to get the ten best results.\n\n### insert documents parameters\n\n- **table name**: enter the supabase table to use.\n\n### retrieve documents (as vector store for chain/tool) parameters\n\n- **table name**: enter the supabase table to use.\n\n### retrieve documents (as tool for ai agent) parameters\n\n- **name**: the name of the vector store.\n- **description**: explain to the llm what this tool does. a good, specific description allows llms to produce expected results more often.\n- **table name**: enter the supabase table to use.\n- **limit**: enter how many results to retrieve from the vector store. for example, set this to `10` to get the ten best results.\n\n### update documents\n\n- **table name**: enter the supabase table to use.\n- **id**: the id of an embedding entry.\n\nparameters for **update documents**\n\n- id\n\n## node options\n\n### query name\n\nthe name of the matching function you set up in supabase. if you follow the [supabase quickstart](https://supabase.com/docs/guides/ai/langchain?database-method=sql), this will be `match_documents`.\n\n### metadata filter\n\navailable in **get many** mode. when searching for data, use this to match with metadata associated with the document.\n\nthis is an `and` query. if you specify more than one metadata filter field, all of them must match.\n\nwhen inserting data, the metadata is set using the document loader. refer to [default data loader](../../sub-nodes/n8n-nodes-langchain.documentdefaultdataloader/) for more information on loading documents.\n\n## templates and examples\n\n**ai agent to chat with files in supabase storage**\n\nby mark shcherbakov\n\n[view template details](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/)\n\n**automate sales cold calling pipeline with apify, gpt-4o, and whatsapp**\n\nby khairul muhtadin\n\n[view template details](https://n8n.io/workflows/5449-automate-sales-cold-calling-pipeline-with-apify-gpt-4o-and-whatsapp/)\n\n**🤖 create a documentation expert bot with rag, gemini, and supabase**\n\nby lucas peyrin\n\n[view template details](https://n8n.io/workflows/5993-create-a-documentation-expert-bot-with-rag-gemini-and-supabase/)\n\n[browse supabase vector store integration templates](https://n8n.io/integrations/supabase-vector-store/), or [search all templates](https://n8n.io/workflows/)\n\n## related resources\n\nrefer to [langchain's supabase documentation](https://js.langchain.com/docs/integrations/vectorstores/supabase/) for more information about the service.\n\nview n8n's [advanced ai](../../../../../advanced-ai/) documentation.\n supabase vector store node",
43713
+ "fullText": "weaviate vector store # weaviate vector store node\n\nuse the weaviate node to interact with your weaviate collection as a [vector store](../../../../../glossary/#ai-vector-store). you can insert documents into or retrieve documents from a vector database. you can also retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain) or connect this node directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). on this page, you'll find the node parameters for the weaviate node, and links to more resources.\n\ncredentials\n\nyou can find authentication information for this node [here](../../../credentials/weaviate/).\n\nparameter resolution in sub-nodes\n\nsub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nmost nodes, including root nodes, take any number of items as input, process these items, and output the results. you can use expressions to refer to input items, and the node resolves the expression for each item in turn. for example, given an input of five `name` values, the expression `{{ $json.name }}` resolves to each name in turn.\n\nin sub-nodes, the expression always resolves to the first item. for example, given an input of five `name` values, the expression `{{ $json.name }}` always resolves to the first name.\n\n## node usage patterns\n\nyou can use the weaviate vector store node in the following patterns.\n\n### use as a regular node to insert and retrieve documents\n\nyou can use the weaviate vector store as a regular node to insert or get documents. this pattern places the weaviate vector store in the regular connection flow without using an agent.\n\n### connect directly to an ai agent as a tool\n\nyou can connect the weaviate vector store node directly to the tool connector of an [ai agent](../n8n-nodes-langchain.agent/) to use a vector store as a resource when answering queries.\n\nhere, the connection would be: ai agent (tools connector) -> weaviate vector store node.\n\n### use a retriever to fetch documents\n\nyou can use the [vector store retriever](../../sub-nodes/n8n-nodes-langchain.retrievervectorstore/) node with the weaviate vector store node to fetch documents from the weaviate vector store node. this is often used with the [question and answer chain](../n8n-nodes-langchain.chainretrievalqa/) node to fetch documents from the vector store that match the given chat input.\n\n### use the vector store question answer tool to answer questions\n\nanother pattern uses the [vector store question answer tool](../../sub-nodes/n8n-nodes-langchain.toolvectorstore/) to summarize results and answer questions from the weaviate vector store node. rather than connecting the weaviate vector store directly as a tool, this pattern uses a tool specifically designed to summarizes data in the vector store.\n\n## node parameters\n\nmultitenancy\n\nyou can separate your data into isolated tenants for the same collection (for example, for different customers). for that, you must always provide a [tenant name](#tenant-name) both when inserting and retrieving objects. [read more about multi tenancy in weaviate docs](https://docs.weaviate.io/weaviate/manage-collections/multi-tenancy).\n\n### operation mode\n\nthis vector store node has four modes: **get many**, **insert documents**, **retrieve documents (as vector store for chain/tool)**, and **retrieve documents (as tool for ai agent)**. the mode you select determines the operations you can perform with the node and what inputs and outputs are available.\n\n#### get many\n\nin this mode, you can retrieve multiple documents from your vector database by providing a prompt. the prompt is embedded and used for similarity search. the node returns the documents that are most similar to the prompt with their similarity score. this is useful if you want to retrieve a list of similar documents and pass them to an agent as additional context.\n\n#### insert documents\n\nuse insert documents mode to insert new documents into your vector database.\n\n#### retrieve documents (as vector store for chain/tool)\n\nuse retrieve documents (as vector store for chain/tool) mode with a vector-store retriever to retrieve documents from a vector database and provide them to the retriever connected to a chain. in this mode you must connect the node to a retriever node or root node.\n\n#### retrieve documents (as tool for ai agent)\n\nuse retrieve documents (as tool for ai agent) mode to use the vector store as a tool resource when answering queries. when formulating responses, the agent uses the vector store when the vector store name and description match the question details.\n\n### get many parameters\n\n- **weaviate collection**: enter the name of the weaviate collection to use.\n- **prompt**: enter the search query.\n- **limit**: enter how many results to retrieve from the vector store. for example, set this to `10` to get the ten best results.\n\n### insert documents parameters\n\n- **weaviate collection**: enter the name of the weaviate collection to use.\n- **embedding batch size**: the number of documents to embed in a single batch. the default is 200 documents.\n\n### retrieve documents (as vector store for chain/tool) parameters\n\n- **weaviate collection**: enter the name of the weaviate collection to use.\n\n### retrieve documents (as tool for ai agent) parameters\n\n- **weaviate collection**: the name of the vector store.\n- **description**: explain to the llm what this tool does. a good, specific description allows llms to produce expected results more often.\n- **weaviate collection**: enter the name of the weaviate collection to use.\n- **limit**: enter how many results to retrieve from the vector store. for example, set this to `10` to get the ten best results.\n\n### include metadata\n\nwhether to include document metadata.\n\nyou can use this with the [get many](#get-many) and [retrieve documents (as tool for ai agent)](#retrieve-documents-as-tool-for-ai-agent-parameters) modes.\n\n### rerank results\n\nenables [reranking](../../../../../glossary/#ai-reranking). if you enable this option, you must connect a reranking node to the vector store. that node will then rerank the results for queries. you can use this option with the `get many`, `retrieve documents (as vector store for chain/tool)` and `retrieve documents (as tool for ai agent)` modes.\n\n## node options\n\n### search filters\n\navailable for the [get many](#get-many), [retrieve documents (as vector store for chain/tool)](#retrieve-documents-as-vector-store-for-chaintool), and [retrieve documents (as tool for ai agent)](#retrieve-documents-as-tool-for-ai-agent) operation modes.\n\nwhen searching for data, use this to match metadata associated with documents. you can learn more about the operators and query structure in [weaviate's conditional filters documentation](https://docs.weaviate.io/weaviate/api/graphql/filters).\n\nyou can use both `and` and `or` with different operators. operators are case insensitive:\n\n```\n{\n \"or\": [\n {\n \"path\": [\"source\"],\n \"operator\": \"equal\",\n \"valuestring\": \"source1\"\n },\n {\n \"path\": [\"source\"],\n \"operator\": \"equal\",\n \"valuestring\": \"source1\"\n }\n ]\n}\n```\n\nsupported operators:\n\n| operator | required field(s) | description |\n| ------------------ | ---------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `'equal'` | `valuestring` or `valuenumber` | checks if the property is equal to the given string or number. |\n| `'like'` | `valuestring` | checks if the string property matches a pattern (for example, sub-string match). |\n| `'containsany'` | `valuetextarray` (string[]) | checks if the property contains **any** of the given values. |\n| `'containsall'` | `valuetextarray` (string[]) | checks if the property contains **all** of the given values. |\n| `'greaterthan'` | `valuenumber` | checks if the property value is greater than the given number. |\n| `'lessthan'` | `valuenumber` | checks if the property value is less than the given number. |\n| `'isnull'` | `valueboolean` (true/false) | checks if the property is null or not. ([must enable before ingestion](https://docs.weaviate.io/weaviate/manage-collections/collection-operations#set-inverted-index-parameters)) |\n| `'withingeorange'` | `valuegeocoordinates` (object with geolocation data) | filters by proximity to geographic coordinates. |\n\nwhen inserting data, the document loader sets the metadata. refer to [default data loader](../../sub-nodes/n8n-nodes-langchain.documentdefaultdataloader/) for more information ",
43694
43714
  "importantTerms": [
43715
+ "weaviate",
43695
43716
  "vector",
43696
- "store",
43697
- "supabase",
43698
43717
  "documents",
43718
+ "store",
43699
43719
  "node",
43700
- "this",
43720
+ "retrieve",
43701
43721
  "tool",
43702
- "with",
43703
43722
  "agent",
43704
- "retrieve",
43723
+ "https",
43724
+ "this",
43725
+ "with",
43705
43726
  "name",
43727
+ "collection",
43706
43728
  "nodes",
43707
- "database",
43708
- "chain",
43709
- "https",
43710
- "update",
43711
- "table",
43729
+ "docs",
43730
+ "many",
43712
43731
  "insert",
43713
- "from",
43714
- "retriever",
43732
+ "chain",
43733
+ "more",
43734
+ "checks",
43715
43735
  "results",
43716
- "langchain",
43736
+ "values",
43737
+ "search",
43738
+ "from",
43739
+ "when",
43740
+ "learn",
43741
+ "property",
43742
+ "hybrid",
43743
+ "parameters",
43744
+ "number",
43745
+ "given",
43746
+ "data",
43747
+ "about",
43717
43748
  "mode",
43718
- "many",
43749
+ "langchain",
43719
43750
  "enter",
43720
- "parameters",
43721
- "when",
43751
+ "query",
43752
+ "retriever",
43722
43753
  "example",
43723
- "workflows",
43724
43754
  "answer",
43725
- "connector",
43726
- "question",
43755
+ "must",
43756
+ "tenant",
43757
+ "score",
43758
+ "best",
43759
+ "metadata",
43760
+ "fusion",
43761
+ "timeout",
43727
43762
  "your",
43728
- "them",
43729
43763
  "glossary",
43730
- "connect",
43731
- "more",
43732
- "expression",
43733
- "input",
43734
- "chat",
43735
- "directly",
43736
- "items",
43737
- "using",
43738
- "resolves",
43739
- "pattern",
43740
- "template",
43741
- "files",
43742
- "storage",
43743
- "match",
43744
- "uses"
43764
+ "connect"
43745
43765
  ]
43746
43766
  }
43747
43767
  },
43748
43768
  {
43749
43769
  "id": "page-0557",
43750
- "title": "Weaviate Vector Store",
43751
- "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreweaviate/index.md",
43752
- "urlPath": "integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoreweaviate/index.md",
43770
+ "title": "Supabase Vector Store",
43771
+ "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoresupabase/index.md",
43772
+ "urlPath": "integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.vectorstoresupabase/index.md",
43753
43773
  "category": "cluster-nodes",
43754
43774
  "subcategory": null,
43755
43775
  "nodeName": null,
43756
43776
  "nodeType": null,
43757
43777
  "content": {
43758
- "markdown": "# Weaviate Vector Store node\n\nUse the Weaviate node to interact with your Weaviate collection as a [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into or retrieve documents from a vector database. You can also retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain) or connect this node directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). On this page, you'll find the node parameters for the Weaviate node, and links to more resources.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/weaviate/).\n\nParameter resolution in sub-nodes\n\nSub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nMost nodes, including root nodes, take any number of items as input, process these items, and output the results. You can use expressions to refer to input items, and the node resolves the expression for each item in turn. For example, given an input of five `name` values, the expression `{{ $json.name }}` resolves to each name in turn.\n\nIn sub-nodes, the expression always resolves to the first item. For example, given an input of five `name` values, the expression `{{ $json.name }}` always resolves to the first name.\n\n## Node usage patterns\n\nYou can use the Weaviate Vector Store node in the following patterns.\n\n### Use as a regular node to insert and retrieve documents\n\nYou can use the Weaviate Vector Store as a regular node to insert or get documents. This pattern places the Weaviate Vector Store in the regular connection flow without using an agent.\n\n### Connect directly to an AI agent as a tool\n\nYou can connect the Weaviate Vector Store node directly to the tool connector of an [AI agent](../n8n-nodes-langchain.agent/) to use a vector store as a resource when answering queries.\n\nHere, the connection would be: AI agent (tools connector) -> Weaviate Vector Store node.\n\n### Use a retriever to fetch documents\n\nYou can use the [Vector Store Retriever](../../sub-nodes/n8n-nodes-langchain.retrievervectorstore/) node with the Weaviate Vector Store node to fetch documents from the Weaviate Vector Store node. This is often used with the [Question and Answer Chain](../n8n-nodes-langchain.chainretrievalqa/) node to fetch documents from the vector store that match the given chat input.\n\n### Use the Vector Store Question Answer Tool to answer questions\n\nAnother pattern uses the [Vector Store Question Answer Tool](../../sub-nodes/n8n-nodes-langchain.toolvectorstore/) to summarize results and answer questions from the Weaviate Vector Store node. Rather than connecting the Weaviate Vector Store directly as a tool, this pattern uses a tool specifically designed to summarizes data in the vector store.\n\n## Node parameters\n\nMultitenancy\n\nYou can separate your data into isolated tenants for the same collection (for example, for different customers). For that, you must always provide a [Tenant Name](#tenant-name) both when inserting and retrieving objects. [Read more about multi tenancy in Weaviate docs](https://docs.weaviate.io/weaviate/manage-collections/multi-tenancy).\n\n### Operation Mode\n\nThis Vector Store node has four modes: **Get Many**, **Insert Documents**, **Retrieve Documents (As Vector Store for Chain/Tool)**, and **Retrieve Documents (As Tool for AI Agent)**. The mode you select determines the operations you can perform with the node and what inputs and outputs are available.\n\n#### Get Many\n\nIn this mode, you can retrieve multiple documents from your vector database by providing a prompt. The prompt is embedded and used for similarity search. The node returns the documents that are most similar to the prompt with their similarity score. This is useful if you want to retrieve a list of similar documents and pass them to an agent as additional context.\n\n#### Insert Documents\n\nUse insert documents mode to insert new documents into your vector database.\n\n#### Retrieve Documents (as Vector Store for Chain/Tool)\n\nUse Retrieve Documents (As Vector Store for Chain/Tool) mode with a vector-store retriever to retrieve documents from a vector database and provide them to the retriever connected to a chain. In this mode you must connect the node to a retriever node or root node.\n\n#### Retrieve Documents (as Tool for AI Agent)\n\nUse Retrieve Documents (As Tool for AI Agent) mode to use the vector store as a tool resource when answering queries. When formulating responses, the agent uses the vector store when the vector store name and description match the question details.\n\n### Get Many parameters\n\n- **Weaviate Collection**: Enter the name of the Weaviate collection to use.\n- **Prompt**: Enter the search query.\n- **Limit**: Enter how many results to retrieve from the vector store. For example, set this to `10` to get the ten best results.\n\n### Insert Documents parameters\n\n- **Weaviate Collection**: Enter the name of the Weaviate collection to use.\n- **Embedding Batch Size**: The number of documents to embed in a single batch. The default is 200 documents.\n\n### Retrieve Documents (As Vector Store for Chain/Tool) parameters\n\n- **Weaviate Collection**: Enter the name of the Weaviate collection to use.\n\n### Retrieve Documents (As Tool for AI Agent) parameters\n\n- **Weaviate Collection**: The name of the vector store.\n- **Description**: Explain to the LLM what this tool does. A good, specific description allows LLMs to produce expected results more often.\n- **Weaviate Collection**: Enter the name of the Weaviate collection to use.\n- **Limit**: Enter how many results to retrieve from the vector store. For example, set this to `10` to get the ten best results.\n\n### Include Metadata\n\nWhether to include document metadata.\n\nYou can use this with the [Get Many](#get-many) and [Retrieve Documents (As Tool for AI Agent)](#retrieve-documents-as-tool-for-ai-agent-parameters) modes.\n\n### Rerank Results\n\nEnables [reranking](../../../../../glossary/#ai-reranking). If you enable this option, you must connect a reranking node to the vector store. That node will then rerank the results for queries. You can use this option with the `Get Many`, `Retrieve Documents (As Vector Store for Chain/Tool)` and `Retrieve Documents (As Tool for AI Agent)` modes.\n\n## Node options\n\n### Search Filters\n\nAvailable for the [Get Many](#get-many), [Retrieve Documents (As Vector Store for Chain/Tool)](#retrieve-documents-as-vector-store-for-chaintool), and [Retrieve Documents (As Tool for AI Agent)](#retrieve-documents-as-tool-for-ai-agent) operation modes.\n\nWhen searching for data, use this to match metadata associated with documents. You can learn more about the operators and query structure in [Weaviate's conditional filters documentation](https://docs.weaviate.io/weaviate/api/graphql/filters).\n\nYou can use both `AND` and `OR` with different operators. Operators are case insensitive:\n\n```\n{\n \"OR\": [\n {\n \"path\": [\"source\"],\n \"operator\": \"Equal\",\n \"valueString\": \"source1\"\n },\n {\n \"path\": [\"source\"],\n \"operator\": \"Equal\",\n \"valueString\": \"source1\"\n }\n ]\n}\n```\n\nSupported operators:\n\n| Operator | Required Field(s) | Description |\n| ------------------ | ---------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `'equal'` | `valueString` or `valueNumber` | Checks if the property is equal to the given string or number. |\n| `'like'` | `valueString` | Checks if the string property matches a pattern (for example, sub-string match). |\n| `'containsAny'` | `valueTextArray` (string[]) | Checks if the property contains **any** of the given values. |\n| `'containsAll'` | `valueTextArray` (string[]) | Checks if the property contains **all** of the given values. |\n| `'greaterThan'` | `valueNumber` | Checks if the property value is greater than the given number. |\n| `'lessThan'` | `valueNumber` | Checks if the property value is less than the given number. |\n| `'isNull'` | `valueBoolean` (true/false) | Checks if the property is null or not. ([must enable before ingestion](https://docs.weaviate.io/weaviate/manage-collections/collection-operations#set-inverted-index-parameters)) |\n| `'withinGeoRange'` | `valueGeoCoordinates` (object with geolocation data) | Filters by proximity to geographic coordinates. |\n\nWhen inserting data, the document loader sets the metadata. Refer to [Default Data Loader](../../sub-nodes/n8n-nodes-langchain.documentdefaultdataloader/) for more information on loading documents.\n\n### Metadata Keys\n\nYou can define which metadata keys you want Weaviate to return on your queries. This can reduce network load, as you will only get properties you have defined. Returns all properties from the server by default.\n\nAvailable for the [Get Many](#get-many), [Retrieve Documents (As Vector Store for Chain/Tool)](#retrieve-documents-as-vector-store-for-chaintool), and [Retrieve Documents (As Tool for AI Agent)](#retrieve-documents-as-tool-for-ai-agent) operation modes.\n\n### Hybrid: Query Text\n\nProvide a query text to combine vector search with a keyword/text search.\n\n### Hybrid: Explain Score\n\nWhether to show the score fused between hybrid and vector search explanation.\n\n### Hybrid: Fusion Type\n\nSelect the fusion type for combining vector and keyword search results. [Learn more about fusion algorithms](https://weaviate.io/learn/knowledgecards/fusion-algorithm).\n\nOptions:\n\n- **Relative Score**: Uses relative score fusion\n- **Ranked**: Uses ranked fusion\n\n### Hybrid: Auto Cut Limit\n\nLimit result groups by detecting sudden jumps in score. [Learn more about autocut](https://docs.weaviate.io/weaviate/api/graphql/additional-operators#autocut).\n\n### Hybrid: Alpha\n\nChange the relative weights of the keyword and vector components. 1.0 = pure vector, 0.0 = pure keyword. Default is 0.5. [Learn more about the alpha parameter](https://weaviate.io/learn/knowledgecards/alpha-parameter).\n\n### Hybrid: Query Properties\n\nComma-separated list of properties to include in the query with optionally weighted values, e.g., \"question^2,answer\". [Learn more about setting weights on property values](https://docs.weaviate.io/weaviate/search/hybrid#set-weights-on-property-values).\n\n### Hybrid: Max Vector Distance\n\nSet the maximum allowable distance for the vector search component.\n\n### Tenant Name\n\nThe specific tenant to store or retrieve documents for. [Learn more about multi-tenancy](https://weaviate.io/learn/knowledgecards/multi-tenancy).\n\nMust enable at creation\n\nYou must pass a tenant name at first ingestion to enable multitenancy for a collection. You can't enable or disable multitenancy after creation.\n\n### Text Key\n\nThe key in the document that contains the embedded text.\n\n### Skip Init Checks\n\nWhether to [skip initialization checks](https://docs.weaviate.io/weaviate/client-libraries/typescript/notes-best-practices#initial-connection-checks) when instantiating the client.\n\n### Init Timeout\n\nNumber of seconds to wait before [timing out](https://docs.weaviate.io/weaviate/client-libraries/typescript/notes-best-practices#timeout-values) during initial checks.\n\n### Insert Timeout\n\nNumber of seconds to wait before [timing out](https://docs.weaviate.io/weaviate/client-libraries/typescript/notes-best-practices#timeout-values) during inserts.\n\n### Query Timeout\n\nNumber of seconds to wait before [timing out](https://docs.weaviate.io/weaviate/client-libraries/typescript/notes-best-practices#timeout-values) during queries.\n\n### GRPC Proxy\n\nA proxy to use for gRPC requests.\n\n### Clear Data\n\nAvailable for the [Insert Documents](#insert-documents) operation mode.\n\nWhether to clear the collection or tenant before inserting new data.\n\n## Templates and examples\n\n**Build a Weekly AI Trend Alerter with arXiv and Weaviate**\n\nby Mary Newhauser\n\n[View template details](https://n8n.io/workflows/5817-build-a-weekly-ai-trend-alerter-with-arxiv-and-weaviate/)\n\n**Build person OSINT profiles using Humantic AI, Hunter, CourtListener and GPT-5**\n\nby Open Paws\n\n[View template details](https://n8n.io/workflows/12507-build-person-osint-profiles-using-humantic-ai-hunter-courtlistener-and-gpt-5/)\n\n**Research organizations with GPT‑5, Gemini, CourtListener, LegiScan and OSINT web sources**\n\nby Open Paws\n\n[View template details](https://n8n.io/workflows/12506-research-organizations-with-gpt5-gemini-courtlistener-legiscan-and-osint-web-sources/)\n\n[Browse Weaviate Vector Store integration templates](https://n8n.io/integrations/weaviate-vector-store/), or [search all templates](https://n8n.io/workflows/)\n\n## Related resources\n\nRefer to [LangChain's Weaviate documentation](https://js.langchain.com/docs/integrations/vectorstores/weaviate/) for more information about the service.\n\nRefer to [Weaviate Installation](https://docs.weaviate.io/deploy) for a self hosted Weaviate Cluster.\n\nView n8n's [Advanced AI](../../../../../advanced-ai/) documentation.\n",
43759
- "excerpt": "# Weaviate Vector Store node Use the Weaviate node to interact with your Weaviate collection as a [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into or retrieve documents from a vector database. You can also retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain) or connect this node directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). On this page,...",
43778
+ "markdown": "# Supabase Vector Store node\n\nUse the Supabase Vector Store to interact with your Supabase database as vector store. You can insert documents into a vector database, get many documents from a vector database, and retrieve documents to provide them to a retriever connected to a chain.\n\nUse the Supabase Vector Store to interact with your Supabase database as [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into a vector database, get documents from a vector database, retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain), or connect it directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). You can also update an item in a vector store by its ID.\n\nOn this page, you'll find the node parameters for the Supabase node, and links to more resources.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/supabase/).\n\nParameter resolution in sub-nodes\n\nSub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nMost nodes, including root nodes, take any number of items as input, process these items, and output the results. You can use expressions to refer to input items, and the node resolves the expression for each item in turn. For example, given an input of five `name` values, the expression `{{ $json.name }}` resolves to each name in turn.\n\nIn sub-nodes, the expression always resolves to the first item. For example, given an input of five `name` values, the expression `{{ $json.name }}` always resolves to the first name.\n\nSupabase provides a [quickstart for setting up your vector store](https://supabase.com/docs/guides/ai/langchain?database-method=sql). If you use settings other than the defaults in the quickstart, this may affect parameter settings in n8n. Make sure you understand what you're doing.\n\n## Node usage patterns\n\nYou can use the Supabase Vector Store node in the following patterns.\n\n### Use as a regular node to insert, update, and retrieve documents\n\nYou can use the Supabase Vector Store as a regular node to insert, update, or get documents. This pattern places the Supabase Vector Store in the regular connection flow without using an agent.\n\nYou can see an example of this in scenario 1 of [this template](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/).\n\n### Connect directly to an AI agent as a tool\n\nYou can connect the Supabase Vector Store node directly to the tool connector of an [AI agent](../n8n-nodes-langchain.agent/) to use a vector store as a resource when answering queries.\n\nHere, the connection would be: AI agent (tools connector) -> Supabase Vector Store node.\n\n### Use a retriever to fetch documents\n\nYou can use the [Vector Store Retriever](../../sub-nodes/n8n-nodes-langchain.retrievervectorstore/) node with the Supabase Vector Store node to fetch documents from the Supabase Vector Store node. This is often used with the [Question and Answer Chain](../n8n-nodes-langchain.chainretrievalqa/) node to fetch documents from the vector store that match the given chat input.\n\nAn [example of the connection flow](https://n8n.io/workflows/1960-ask-questions-about-a-pdf-using-ai/) (the example uses Pinecone, but the pattern in the same) would be: Question and Answer Chain (Retriever connector) -> Vector Store Retriever (Vector Store connector) -> Supabase Vector Store.\n\n### Use the Vector Store Question Answer Tool to answer questions\n\nAnother pattern uses the [Vector Store Question Answer Tool](../../sub-nodes/n8n-nodes-langchain.toolvectorstore/) to summarize results and answer questions from the Supabase Vector Store node. Rather than connecting the Supabase Vector Store directly as a tool, this pattern uses a tool specifically designed to summarizes data in the vector store.\n\nThe [connections flow](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/) in this case would look like this: AI agent (tools connector) -> Vector Store Question Answer Tool (Vector Store connector) -> Supabase Vector store.\n\n## Node parameters\n\n### Operation Mode\n\nThis Vector Store node has five modes: **Get Many**, **Insert Documents**, **Retrieve Documents (As Vector Store for Chain/Tool)**, **Retrieve Documents (As Tool for AI Agent)**, and **Update Documents**. The mode you select determines the operations you can perform with the node and what inputs and outputs are available.\n\n#### Get Many\n\nIn this mode, you can retrieve multiple documents from your vector database by providing a prompt. The prompt will be embedded and used for similarity search. The node will return the documents that are most similar to the prompt with their similarity score. This is useful if you want to retrieve a list of similar documents and pass them to an agent as additional context.\n\n#### Insert Documents\n\nUse Insert Documents mode to insert new documents into your vector database.\n\n#### Retrieve Documents (As Vector Store for Chain/Tool)\n\nUse Retrieve Documents (As Vector Store for Chain/Tool) mode with a vector-store retriever to retrieve documents from a vector database and provide them to the retriever connected to a chain. In this mode you must connect the node to a retriever node or root node.\n\n#### Retrieve Documents (As Tool for AI Agent)\n\nUse Retrieve Documents (As Tool for AI Agent) mode to use the vector store as a tool resource when answering queries. When formulating responses, the agent uses the vector store when the vector store name and description match the question details.\n\n#### Update Documents\n\nUse Update Documents mode to update documents in a vector database by ID. Fill in the **ID** with the ID of the embedding entry to update.\n\n### Rerank Results\n\nEnables [reranking](../../../../../glossary/#ai-reranking). If you enable this option, you must connect a reranking node to the vector store. That node will then rerank the results for queries. You can use this option with the `Get Many`, `Retrieve Documents (As Vector Store for Chain/Tool)` and `Retrieve Documents (As Tool for AI Agent)` modes.\n\n### Get Many parameters\n\n- **Table Name**: Enter the Supabase table to use.\n- **Prompt**: Enter the search query.\n- **Limit**: Enter how many results to retrieve from the vector store. For example, set this to `10` to get the ten best results.\n\n### Insert Documents parameters\n\n- **Table Name**: Enter the Supabase table to use.\n\n### Retrieve Documents (As Vector Store for Chain/Tool) parameters\n\n- **Table Name**: Enter the Supabase table to use.\n\n### Retrieve Documents (As Tool for AI Agent) parameters\n\n- **Name**: The name of the vector store.\n- **Description**: Explain to the LLM what this tool does. A good, specific description allows LLMs to produce expected results more often.\n- **Table Name**: Enter the Supabase table to use.\n- **Limit**: Enter how many results to retrieve from the vector store. For example, set this to `10` to get the ten best results.\n\n### Update Documents\n\n- **Table Name**: Enter the Supabase table to use.\n- **ID**: The ID of an embedding entry.\n\nParameters for **Update Documents**\n\n- ID\n\n## Node options\n\n### Query Name\n\nThe name of the matching function you set up in Supabase. If you follow the [Supabase quickstart](https://supabase.com/docs/guides/ai/langchain?database-method=sql), this will be `match_documents`.\n\n### Metadata Filter\n\nAvailable in **Get Many** mode. When searching for data, use this to match with metadata associated with the document.\n\nThis is an `AND` query. If you specify more than one metadata filter field, all of them must match.\n\nWhen inserting data, the metadata is set using the document loader. Refer to [Default Data Loader](../../sub-nodes/n8n-nodes-langchain.documentdefaultdataloader/) for more information on loading documents.\n\n## Templates and examples\n\n**AI Agent To Chat With Files In Supabase Storage**\n\nby Mark Shcherbakov\n\n[View template details](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/)\n\n**Automate sales cold calling pipeline with Apify, GPT-4o, and WhatsApp**\n\nby Khairul Muhtadin\n\n[View template details](https://n8n.io/workflows/5449-automate-sales-cold-calling-pipeline-with-apify-gpt-4o-and-whatsapp/)\n\n**🤖 Create a Documentation Expert Bot with RAG, Gemini, and Supabase**\n\nby Lucas Peyrin\n\n[View template details](https://n8n.io/workflows/5993-create-a-documentation-expert-bot-with-rag-gemini-and-supabase/)\n\n[Browse Supabase Vector Store integration templates](https://n8n.io/integrations/supabase-vector-store/), or [search all templates](https://n8n.io/workflows/)\n\n## Related resources\n\nRefer to [LangChain's Supabase documentation](https://js.langchain.com/docs/integrations/vectorstores/supabase/) for more information about the service.\n\nView n8n's [Advanced AI](../../../../../advanced-ai/) documentation.\n",
43779
+ "excerpt": "# Supabase Vector Store node Use the Supabase Vector Store to interact with your Supabase database as vector store. You can insert documents into a vector database, get many documents from a vector database, and retrieve documents to provide them to a retriever connected to a chain. Use the Supabase Vector Store to interact with your Supabase database as [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into a vector database, get documents from a vector databa...",
43760
43780
  "sections": [
43761
43781
  {
43762
- "title": "Weaviate Vector Store node",
43782
+ "title": "Supabase Vector Store node",
43763
43783
  "level": 1,
43764
- "content": "Use the Weaviate node to interact with your Weaviate collection as a [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into or retrieve documents from a vector database. You can also retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain) or connect this node directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). On this page, you'll find the node parameters for the Weaviate node, and links to more resources.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/weaviate/).\n\nParameter resolution in sub-nodes\n\nSub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nMost nodes, including root nodes, take any number of items as input, process these items, and output the results. You can use expressions to refer to input items, and the node resolves the expression for "
43784
+ "content": "Use the Supabase Vector Store to interact with your Supabase database as vector store. You can insert documents into a vector database, get many documents from a vector database, and retrieve documents to provide them to a retriever connected to a chain.\n\nUse the Supabase Vector Store to interact with your Supabase database as [vector store](../../../../../glossary/#ai-vector-store). You can insert documents into a vector database, get documents from a vector database, retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain), or connect it directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). You can also update an item in a vector store by its ID.\n\nOn this page, you'll find the node parameters for the Supabase node, and links to more resources.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/supabase/).\n\nParameter resolution in su"
43765
43785
  }
43766
43786
  ]
43767
43787
  },
43768
43788
  "metadata": {
43769
43789
  "keywords": [
43770
- "weaviate",
43790
+ "supabase",
43771
43791
  "vector",
43772
43792
  "store",
43773
43793
  "node",
43774
43794
  "usage",
43775
43795
  "patterns",
43776
43796
  "regular",
43777
- "insert",
43797
+ "insert,",
43798
+ "update,",
43778
43799
  "retrieve",
43779
43800
  "documents",
43780
43801
  "connect",
@@ -43790,38 +43811,17 @@
43790
43811
  "operation",
43791
43812
  "mode",
43792
43813
  "many",
43814
+ "insert",
43793
43815
  "chain/tool)",
43794
43816
  "agent)",
43795
- "include",
43796
- "metadata",
43817
+ "update",
43797
43818
  "rerank",
43798
43819
  "results",
43799
43820
  "options",
43800
- "search",
43801
- "filters",
43802
- "keys",
43803
- "hybrid:",
43804
43821
  "query",
43805
- "text",
43806
- "explain",
43807
- "score",
43808
- "fusion",
43809
- "type",
43810
- "auto",
43811
- "limit",
43812
- "alpha",
43813
- "properties",
43814
- "distance",
43815
- "tenant",
43816
43822
  "name",
43817
- "skip",
43818
- "init",
43819
- "checks",
43820
- "timeout",
43821
- "grpc",
43822
- "proxy",
43823
- "clear",
43824
- "data",
43823
+ "metadata",
43824
+ "filter",
43825
43825
  "templates",
43826
43826
  "examples",
43827
43827
  "related",
@@ -43831,65 +43831,65 @@
43831
43831
  "operations": [
43832
43832
  "mode"
43833
43833
  ],
43834
- "codeExamples": 1,
43834
+ "codeExamples": 0,
43835
43835
  "complexity": "intermediate",
43836
- "readingTime": "9 min",
43837
- "contentLength": 14378,
43836
+ "readingTime": "7 min",
43837
+ "contentLength": 8921,
43838
43838
  "relatedPages": []
43839
43839
  },
43840
43840
  "searchIndex": {
43841
- "fullText": "weaviate vector store # weaviate vector store node\n\nuse the weaviate node to interact with your weaviate collection as a [vector store](../../../../../glossary/#ai-vector-store). you can insert documents into or retrieve documents from a vector database. you can also retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain) or connect this node directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). on this page, you'll find the node parameters for the weaviate node, and links to more resources.\n\ncredentials\n\nyou can find authentication information for this node [here](../../../credentials/weaviate/).\n\nparameter resolution in sub-nodes\n\nsub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nmost nodes, including root nodes, take any number of items as input, process these items, and output the results. you can use expressions to refer to input items, and the node resolves the expression for each item in turn. for example, given an input of five `name` values, the expression `{{ $json.name }}` resolves to each name in turn.\n\nin sub-nodes, the expression always resolves to the first item. for example, given an input of five `name` values, the expression `{{ $json.name }}` always resolves to the first name.\n\n## node usage patterns\n\nyou can use the weaviate vector store node in the following patterns.\n\n### use as a regular node to insert and retrieve documents\n\nyou can use the weaviate vector store as a regular node to insert or get documents. this pattern places the weaviate vector store in the regular connection flow without using an agent.\n\n### connect directly to an ai agent as a tool\n\nyou can connect the weaviate vector store node directly to the tool connector of an [ai agent](../n8n-nodes-langchain.agent/) to use a vector store as a resource when answering queries.\n\nhere, the connection would be: ai agent (tools connector) -> weaviate vector store node.\n\n### use a retriever to fetch documents\n\nyou can use the [vector store retriever](../../sub-nodes/n8n-nodes-langchain.retrievervectorstore/) node with the weaviate vector store node to fetch documents from the weaviate vector store node. this is often used with the [question and answer chain](../n8n-nodes-langchain.chainretrievalqa/) node to fetch documents from the vector store that match the given chat input.\n\n### use the vector store question answer tool to answer questions\n\nanother pattern uses the [vector store question answer tool](../../sub-nodes/n8n-nodes-langchain.toolvectorstore/) to summarize results and answer questions from the weaviate vector store node. rather than connecting the weaviate vector store directly as a tool, this pattern uses a tool specifically designed to summarizes data in the vector store.\n\n## node parameters\n\nmultitenancy\n\nyou can separate your data into isolated tenants for the same collection (for example, for different customers). for that, you must always provide a [tenant name](#tenant-name) both when inserting and retrieving objects. [read more about multi tenancy in weaviate docs](https://docs.weaviate.io/weaviate/manage-collections/multi-tenancy).\n\n### operation mode\n\nthis vector store node has four modes: **get many**, **insert documents**, **retrieve documents (as vector store for chain/tool)**, and **retrieve documents (as tool for ai agent)**. the mode you select determines the operations you can perform with the node and what inputs and outputs are available.\n\n#### get many\n\nin this mode, you can retrieve multiple documents from your vector database by providing a prompt. the prompt is embedded and used for similarity search. the node returns the documents that are most similar to the prompt with their similarity score. this is useful if you want to retrieve a list of similar documents and pass them to an agent as additional context.\n\n#### insert documents\n\nuse insert documents mode to insert new documents into your vector database.\n\n#### retrieve documents (as vector store for chain/tool)\n\nuse retrieve documents (as vector store for chain/tool) mode with a vector-store retriever to retrieve documents from a vector database and provide them to the retriever connected to a chain. in this mode you must connect the node to a retriever node or root node.\n\n#### retrieve documents (as tool for ai agent)\n\nuse retrieve documents (as tool for ai agent) mode to use the vector store as a tool resource when answering queries. when formulating responses, the agent uses the vector store when the vector store name and description match the question details.\n\n### get many parameters\n\n- **weaviate collection**: enter the name of the weaviate collection to use.\n- **prompt**: enter the search query.\n- **limit**: enter how many results to retrieve from the vector store. for example, set this to `10` to get the ten best results.\n\n### insert documents parameters\n\n- **weaviate collection**: enter the name of the weaviate collection to use.\n- **embedding batch size**: the number of documents to embed in a single batch. the default is 200 documents.\n\n### retrieve documents (as vector store for chain/tool) parameters\n\n- **weaviate collection**: enter the name of the weaviate collection to use.\n\n### retrieve documents (as tool for ai agent) parameters\n\n- **weaviate collection**: the name of the vector store.\n- **description**: explain to the llm what this tool does. a good, specific description allows llms to produce expected results more often.\n- **weaviate collection**: enter the name of the weaviate collection to use.\n- **limit**: enter how many results to retrieve from the vector store. for example, set this to `10` to get the ten best results.\n\n### include metadata\n\nwhether to include document metadata.\n\nyou can use this with the [get many](#get-many) and [retrieve documents (as tool for ai agent)](#retrieve-documents-as-tool-for-ai-agent-parameters) modes.\n\n### rerank results\n\nenables [reranking](../../../../../glossary/#ai-reranking). if you enable this option, you must connect a reranking node to the vector store. that node will then rerank the results for queries. you can use this option with the `get many`, `retrieve documents (as vector store for chain/tool)` and `retrieve documents (as tool for ai agent)` modes.\n\n## node options\n\n### search filters\n\navailable for the [get many](#get-many), [retrieve documents (as vector store for chain/tool)](#retrieve-documents-as-vector-store-for-chaintool), and [retrieve documents (as tool for ai agent)](#retrieve-documents-as-tool-for-ai-agent) operation modes.\n\nwhen searching for data, use this to match metadata associated with documents. you can learn more about the operators and query structure in [weaviate's conditional filters documentation](https://docs.weaviate.io/weaviate/api/graphql/filters).\n\nyou can use both `and` and `or` with different operators. operators are case insensitive:\n\n```\n{\n \"or\": [\n {\n \"path\": [\"source\"],\n \"operator\": \"equal\",\n \"valuestring\": \"source1\"\n },\n {\n \"path\": [\"source\"],\n \"operator\": \"equal\",\n \"valuestring\": \"source1\"\n }\n ]\n}\n```\n\nsupported operators:\n\n| operator | required field(s) | description |\n| ------------------ | ---------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| `'equal'` | `valuestring` or `valuenumber` | checks if the property is equal to the given string or number. |\n| `'like'` | `valuestring` | checks if the string property matches a pattern (for example, sub-string match). |\n| `'containsany'` | `valuetextarray` (string[]) | checks if the property contains **any** of the given values. |\n| `'containsall'` | `valuetextarray` (string[]) | checks if the property contains **all** of the given values. |\n| `'greaterthan'` | `valuenumber` | checks if the property value is greater than the given number. |\n| `'lessthan'` | `valuenumber` | checks if the property value is less than the given number. |\n| `'isnull'` | `valueboolean` (true/false) | checks if the property is null or not. ([must enable before ingestion](https://docs.weaviate.io/weaviate/manage-collections/collection-operations#set-inverted-index-parameters)) |\n| `'withingeorange'` | `valuegeocoordinates` (object with geolocation data) | filters by proximity to geographic coordinates. |\n\nwhen inserting data, the document loader sets the metadata. refer to [default data loader](../../sub-nodes/n8n-nodes-langchain.documentdefaultdataloader/) for more information ",
43841
+ "fullText": "supabase vector store # supabase vector store node\n\nuse the supabase vector store to interact with your supabase database as vector store. you can insert documents into a vector database, get many documents from a vector database, and retrieve documents to provide them to a retriever connected to a chain.\n\nuse the supabase vector store to interact with your supabase database as [vector store](../../../../../glossary/#ai-vector-store). you can insert documents into a vector database, get documents from a vector database, retrieve documents to provide them to a retriever connected to a [chain](../../../../../glossary/#ai-chain), or connect it directly to an [agent](../../../../../glossary/#ai-agent) to use as a [tool](../../../../../glossary/#ai-tool). you can also update an item in a vector store by its id.\n\non this page, you'll find the node parameters for the supabase node, and links to more resources.\n\ncredentials\n\nyou can find authentication information for this node [here](../../../credentials/supabase/).\n\nparameter resolution in sub-nodes\n\nsub-nodes behave differently to other nodes when processing multiple items using an expression.\n\nmost nodes, including root nodes, take any number of items as input, process these items, and output the results. you can use expressions to refer to input items, and the node resolves the expression for each item in turn. for example, given an input of five `name` values, the expression `{{ $json.name }}` resolves to each name in turn.\n\nin sub-nodes, the expression always resolves to the first item. for example, given an input of five `name` values, the expression `{{ $json.name }}` always resolves to the first name.\n\nsupabase provides a [quickstart for setting up your vector store](https://supabase.com/docs/guides/ai/langchain?database-method=sql). if you use settings other than the defaults in the quickstart, this may affect parameter settings in n8n. make sure you understand what you're doing.\n\n## node usage patterns\n\nyou can use the supabase vector store node in the following patterns.\n\n### use as a regular node to insert, update, and retrieve documents\n\nyou can use the supabase vector store as a regular node to insert, update, or get documents. this pattern places the supabase vector store in the regular connection flow without using an agent.\n\nyou can see an example of this in scenario 1 of [this template](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/).\n\n### connect directly to an ai agent as a tool\n\nyou can connect the supabase vector store node directly to the tool connector of an [ai agent](../n8n-nodes-langchain.agent/) to use a vector store as a resource when answering queries.\n\nhere, the connection would be: ai agent (tools connector) -> supabase vector store node.\n\n### use a retriever to fetch documents\n\nyou can use the [vector store retriever](../../sub-nodes/n8n-nodes-langchain.retrievervectorstore/) node with the supabase vector store node to fetch documents from the supabase vector store node. this is often used with the [question and answer chain](../n8n-nodes-langchain.chainretrievalqa/) node to fetch documents from the vector store that match the given chat input.\n\nan [example of the connection flow](https://n8n.io/workflows/1960-ask-questions-about-a-pdf-using-ai/) (the example uses pinecone, but the pattern in the same) would be: question and answer chain (retriever connector) -> vector store retriever (vector store connector) -> supabase vector store.\n\n### use the vector store question answer tool to answer questions\n\nanother pattern uses the [vector store question answer tool](../../sub-nodes/n8n-nodes-langchain.toolvectorstore/) to summarize results and answer questions from the supabase vector store node. rather than connecting the supabase vector store directly as a tool, this pattern uses a tool specifically designed to summarizes data in the vector store.\n\nthe [connections flow](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/) in this case would look like this: ai agent (tools connector) -> vector store question answer tool (vector store connector) -> supabase vector store.\n\n## node parameters\n\n### operation mode\n\nthis vector store node has five modes: **get many**, **insert documents**, **retrieve documents (as vector store for chain/tool)**, **retrieve documents (as tool for ai agent)**, and **update documents**. the mode you select determines the operations you can perform with the node and what inputs and outputs are available.\n\n#### get many\n\nin this mode, you can retrieve multiple documents from your vector database by providing a prompt. the prompt will be embedded and used for similarity search. the node will return the documents that are most similar to the prompt with their similarity score. this is useful if you want to retrieve a list of similar documents and pass them to an agent as additional context.\n\n#### insert documents\n\nuse insert documents mode to insert new documents into your vector database.\n\n#### retrieve documents (as vector store for chain/tool)\n\nuse retrieve documents (as vector store for chain/tool) mode with a vector-store retriever to retrieve documents from a vector database and provide them to the retriever connected to a chain. in this mode you must connect the node to a retriever node or root node.\n\n#### retrieve documents (as tool for ai agent)\n\nuse retrieve documents (as tool for ai agent) mode to use the vector store as a tool resource when answering queries. when formulating responses, the agent uses the vector store when the vector store name and description match the question details.\n\n#### update documents\n\nuse update documents mode to update documents in a vector database by id. fill in the **id** with the id of the embedding entry to update.\n\n### rerank results\n\nenables [reranking](../../../../../glossary/#ai-reranking). if you enable this option, you must connect a reranking node to the vector store. that node will then rerank the results for queries. you can use this option with the `get many`, `retrieve documents (as vector store for chain/tool)` and `retrieve documents (as tool for ai agent)` modes.\n\n### get many parameters\n\n- **table name**: enter the supabase table to use.\n- **prompt**: enter the search query.\n- **limit**: enter how many results to retrieve from the vector store. for example, set this to `10` to get the ten best results.\n\n### insert documents parameters\n\n- **table name**: enter the supabase table to use.\n\n### retrieve documents (as vector store for chain/tool) parameters\n\n- **table name**: enter the supabase table to use.\n\n### retrieve documents (as tool for ai agent) parameters\n\n- **name**: the name of the vector store.\n- **description**: explain to the llm what this tool does. a good, specific description allows llms to produce expected results more often.\n- **table name**: enter the supabase table to use.\n- **limit**: enter how many results to retrieve from the vector store. for example, set this to `10` to get the ten best results.\n\n### update documents\n\n- **table name**: enter the supabase table to use.\n- **id**: the id of an embedding entry.\n\nparameters for **update documents**\n\n- id\n\n## node options\n\n### query name\n\nthe name of the matching function you set up in supabase. if you follow the [supabase quickstart](https://supabase.com/docs/guides/ai/langchain?database-method=sql), this will be `match_documents`.\n\n### metadata filter\n\navailable in **get many** mode. when searching for data, use this to match with metadata associated with the document.\n\nthis is an `and` query. if you specify more than one metadata filter field, all of them must match.\n\nwhen inserting data, the metadata is set using the document loader. refer to [default data loader](../../sub-nodes/n8n-nodes-langchain.documentdefaultdataloader/) for more information on loading documents.\n\n## templates and examples\n\n**ai agent to chat with files in supabase storage**\n\nby mark shcherbakov\n\n[view template details](https://n8n.io/workflows/2621-ai-agent-to-chat-with-files-in-supabase-storage/)\n\n**automate sales cold calling pipeline with apify, gpt-4o, and whatsapp**\n\nby khairul muhtadin\n\n[view template details](https://n8n.io/workflows/5449-automate-sales-cold-calling-pipeline-with-apify-gpt-4o-and-whatsapp/)\n\n**🤖 create a documentation expert bot with rag, gemini, and supabase**\n\nby lucas peyrin\n\n[view template details](https://n8n.io/workflows/5993-create-a-documentation-expert-bot-with-rag-gemini-and-supabase/)\n\n[browse supabase vector store integration templates](https://n8n.io/integrations/supabase-vector-store/), or [search all templates](https://n8n.io/workflows/)\n\n## related resources\n\nrefer to [langchain's supabase documentation](https://js.langchain.com/docs/integrations/vectorstores/supabase/) for more information about the service.\n\nview n8n's [advanced ai](../../../../../advanced-ai/) documentation.\n supabase vector store node",
43842
43842
  "importantTerms": [
43843
- "weaviate",
43844
43843
  "vector",
43845
- "documents",
43846
43844
  "store",
43845
+ "supabase",
43846
+ "documents",
43847
43847
  "node",
43848
- "retrieve",
43849
- "tool",
43850
- "agent",
43851
- "https",
43852
43848
  "this",
43849
+ "tool",
43853
43850
  "with",
43851
+ "agent",
43852
+ "retrieve",
43854
43853
  "name",
43855
- "collection",
43856
43854
  "nodes",
43857
- "docs",
43858
- "many",
43859
- "insert",
43855
+ "database",
43860
43856
  "chain",
43861
- "more",
43862
- "checks",
43863
- "results",
43864
- "values",
43865
- "search",
43857
+ "https",
43858
+ "update",
43859
+ "table",
43860
+ "insert",
43866
43861
  "from",
43867
- "when",
43868
- "learn",
43869
- "property",
43870
- "hybrid",
43871
- "parameters",
43872
- "number",
43873
- "given",
43874
- "data",
43875
- "about",
43876
- "mode",
43862
+ "retriever",
43863
+ "results",
43877
43864
  "langchain",
43865
+ "mode",
43866
+ "many",
43878
43867
  "enter",
43879
- "query",
43880
- "retriever",
43868
+ "parameters",
43869
+ "when",
43881
43870
  "example",
43871
+ "workflows",
43882
43872
  "answer",
43883
- "must",
43884
- "tenant",
43885
- "score",
43886
- "best",
43887
- "metadata",
43888
- "fusion",
43889
- "timeout",
43873
+ "connector",
43874
+ "question",
43890
43875
  "your",
43876
+ "them",
43891
43877
  "glossary",
43892
- "connect"
43878
+ "connect",
43879
+ "more",
43880
+ "expression",
43881
+ "input",
43882
+ "chat",
43883
+ "directly",
43884
+ "items",
43885
+ "using",
43886
+ "resolves",
43887
+ "pattern",
43888
+ "template",
43889
+ "files",
43890
+ "storage",
43891
+ "match",
43892
+ "uses"
43893
43893
  ]
43894
43894
  }
43895
43895
  },
@@ -60254,56 +60254,6 @@
60254
60254
  },
60255
60255
  {
60256
60256
  "id": "page-0763",
60257
- "title": "Clockify credentials",
60258
- "url": "https://docs.n8n.io/integrations/builtin/credentials/clockify/index.md",
60259
- "urlPath": "integrations/builtin/credentials/clockify/index.md",
60260
- "category": "other",
60261
- "subcategory": null,
60262
- "nodeName": null,
60263
- "nodeType": null,
60264
- "content": {
60265
- "markdown": "# Clockify credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Clockify](../../app-nodes/n8n-nodes-base.clockify/)\n- [Clockify Trigger](../../trigger-nodes/n8n-nodes-base.clockifytrigger/)\n\n## Prerequisites\n\nCreate a [Clockify](https://www.clockify.com/) account.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Clockify's API documentation](https://docs.developer.clockify.me/) for more information about the service.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- An **API Key**: Access your API key from your [Clockify Profile Settings](https://clockify.me/help/users/profile-settings).\n",
60266
- "excerpt": "# Clockify credentials You can use these credentials to authenticate the following nodes: - [Clockify](../../app-nodes/n8n-nodes-base.clockify/) - [Clockify Trigger](../../trigger-nodes/n8n-nodes-base.clockifytrigger/) ## Prerequisites Create a [Clockify](https://www.clockify.com/) account. ## Supported authentication methods - API key ## Related resources Refer to [Clockify's API documentation](https://docs.developer.clockify.me/) for more information about the service. ## Using API ke...",
60267
- "sections": [
60268
- {
60269
- "title": "Clockify credentials",
60270
- "level": 1,
60271
- "content": "You can use these credentials to authenticate the following nodes:\n\n- [Clockify](../../app-nodes/n8n-nodes-base.clockify/)\n- [Clockify Trigger](../../trigger-nodes/n8n-nodes-base.clockifytrigger/)"
60272
- }
60273
- ]
60274
- },
60275
- "metadata": {
60276
- "keywords": [
60277
- "clockify",
60278
- "credentials",
60279
- "prerequisites",
60280
- "supported",
60281
- "authentication",
60282
- "methods",
60283
- "related",
60284
- "resources",
60285
- "using"
60286
- ],
60287
- "useCases": [],
60288
- "operations": [],
60289
- "codeExamples": 0,
60290
- "complexity": "beginner",
60291
- "readingTime": "1 min",
60292
- "contentLength": 673,
60293
- "relatedPages": []
60294
- },
60295
- "searchIndex": {
60296
- "fullText": "clockify credentials # clockify credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [clockify](../../app-nodes/n8n-nodes-base.clockify/)\n- [clockify trigger](../../trigger-nodes/n8n-nodes-base.clockifytrigger/)\n\n## prerequisites\n\ncreate a [clockify](https://www.clockify.com/) account.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [clockify's api documentation](https://docs.developer.clockify.me/) for more information about the service.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- an **api key**: access your api key from your [clockify profile settings](https://clockify.me/help/users/profile-settings).\n clockify credentials",
60297
- "importantTerms": [
60298
- "clockify",
60299
- "nodes",
60300
- "credentials",
60301
- "https"
60302
- ]
60303
- }
60304
- },
60305
- {
60306
- "id": "page-0764",
60307
60257
  "title": "Cloudflare credentials",
60308
60258
  "url": "https://docs.n8n.io/integrations/builtin/credentials/cloudflare/index.md",
60309
60259
  "urlPath": "integrations/builtin/credentials/cloudflare/index.md",
@@ -60358,7 +60308,7 @@
60358
60308
  }
60359
60309
  },
60360
60310
  {
60361
- "id": "page-0765",
60311
+ "id": "page-0764",
60362
60312
  "title": "Cockpit credentials",
60363
60313
  "url": "https://docs.n8n.io/integrations/builtin/credentials/cockpit/index.md",
60364
60314
  "urlPath": "integrations/builtin/credentials/cockpit/index.md",
@@ -60415,7 +60365,7 @@
60415
60365
  }
60416
60366
  },
60417
60367
  {
60418
- "id": "page-0766",
60368
+ "id": "page-0765",
60419
60369
  "title": "Coda credentials",
60420
60370
  "url": "https://docs.n8n.io/integrations/builtin/credentials/coda/index.md",
60421
60371
  "urlPath": "integrations/builtin/credentials/coda/index.md",
@@ -60469,7 +60419,7 @@
60469
60419
  }
60470
60420
  },
60471
60421
  {
60472
- "id": "page-0767",
60422
+ "id": "page-0766",
60473
60423
  "title": "Cohere credentials",
60474
60424
  "url": "https://docs.n8n.io/integrations/builtin/credentials/cohere/index.md",
60475
60425
  "urlPath": "integrations/builtin/credentials/cohere/index.md",
@@ -60522,6 +60472,56 @@
60522
60472
  ]
60523
60473
  }
60524
60474
  },
60475
+ {
60476
+ "id": "page-0767",
60477
+ "title": "Clockify credentials",
60478
+ "url": "https://docs.n8n.io/integrations/builtin/credentials/clockify/index.md",
60479
+ "urlPath": "integrations/builtin/credentials/clockify/index.md",
60480
+ "category": "other",
60481
+ "subcategory": null,
60482
+ "nodeName": null,
60483
+ "nodeType": null,
60484
+ "content": {
60485
+ "markdown": "# Clockify credentials\n\nYou can use these credentials to authenticate the following nodes:\n\n- [Clockify](../../app-nodes/n8n-nodes-base.clockify/)\n- [Clockify Trigger](../../trigger-nodes/n8n-nodes-base.clockifytrigger/)\n\n## Prerequisites\n\nCreate a [Clockify](https://www.clockify.com/) account.\n\n## Supported authentication methods\n\n- API key\n\n## Related resources\n\nRefer to [Clockify's API documentation](https://docs.developer.clockify.me/) for more information about the service.\n\n## Using API key\n\nTo configure this credential, you'll need:\n\n- An **API Key**: Access your API key from your [Clockify Profile Settings](https://clockify.me/help/users/profile-settings).\n",
60486
+ "excerpt": "# Clockify credentials You can use these credentials to authenticate the following nodes: - [Clockify](../../app-nodes/n8n-nodes-base.clockify/) - [Clockify Trigger](../../trigger-nodes/n8n-nodes-base.clockifytrigger/) ## Prerequisites Create a [Clockify](https://www.clockify.com/) account. ## Supported authentication methods - API key ## Related resources Refer to [Clockify's API documentation](https://docs.developer.clockify.me/) for more information about the service. ## Using API ke...",
60487
+ "sections": [
60488
+ {
60489
+ "title": "Clockify credentials",
60490
+ "level": 1,
60491
+ "content": "You can use these credentials to authenticate the following nodes:\n\n- [Clockify](../../app-nodes/n8n-nodes-base.clockify/)\n- [Clockify Trigger](../../trigger-nodes/n8n-nodes-base.clockifytrigger/)"
60492
+ }
60493
+ ]
60494
+ },
60495
+ "metadata": {
60496
+ "keywords": [
60497
+ "clockify",
60498
+ "credentials",
60499
+ "prerequisites",
60500
+ "supported",
60501
+ "authentication",
60502
+ "methods",
60503
+ "related",
60504
+ "resources",
60505
+ "using"
60506
+ ],
60507
+ "useCases": [],
60508
+ "operations": [],
60509
+ "codeExamples": 0,
60510
+ "complexity": "beginner",
60511
+ "readingTime": "1 min",
60512
+ "contentLength": 673,
60513
+ "relatedPages": []
60514
+ },
60515
+ "searchIndex": {
60516
+ "fullText": "clockify credentials # clockify credentials\n\nyou can use these credentials to authenticate the following nodes:\n\n- [clockify](../../app-nodes/n8n-nodes-base.clockify/)\n- [clockify trigger](../../trigger-nodes/n8n-nodes-base.clockifytrigger/)\n\n## prerequisites\n\ncreate a [clockify](https://www.clockify.com/) account.\n\n## supported authentication methods\n\n- api key\n\n## related resources\n\nrefer to [clockify's api documentation](https://docs.developer.clockify.me/) for more information about the service.\n\n## using api key\n\nto configure this credential, you'll need:\n\n- an **api key**: access your api key from your [clockify profile settings](https://clockify.me/help/users/profile-settings).\n clockify credentials",
60517
+ "importantTerms": [
60518
+ "clockify",
60519
+ "nodes",
60520
+ "credentials",
60521
+ "https"
60522
+ ]
60523
+ }
60524
+ },
60525
60525
  {
60526
60526
  "id": "page-0768",
60527
60527
  "title": "Contentful credentials",
@@ -93773,7 +93773,7 @@
93773
93773
  "page-0420",
93774
93774
  "page-0457",
93775
93775
  "page-0549",
93776
- "page-0557",
93776
+ "page-0556",
93777
93777
  "page-0565",
93778
93778
  "page-0571",
93779
93779
  "page-0626",
@@ -94301,8 +94301,8 @@
94301
94301
  "page-0744",
94302
94302
  "page-0752",
94303
94303
  "page-0762",
94304
+ "page-0764",
94304
94305
  "page-0765",
94305
- "page-0766",
94306
94306
  "page-0768",
94307
94307
  "page-0777",
94308
94308
  "page-0786",
@@ -97149,7 +97149,7 @@
97149
97149
  "page-0529",
97150
97150
  "page-0537",
97151
97151
  "page-0546",
97152
- "page-0557",
97152
+ "page-0556",
97153
97153
  "page-0615",
97154
97154
  "page-0616",
97155
97155
  "page-0646",
@@ -97537,7 +97537,7 @@
97537
97537
  "page-0534",
97538
97538
  "page-0547",
97539
97539
  "page-0553",
97540
- "page-0556",
97540
+ "page-0557",
97541
97541
  "page-0668",
97542
97542
  "page-0674",
97543
97543
  "page-0704",
@@ -100445,9 +100445,9 @@
100445
100445
  "page-0752",
100446
100446
  "page-0756",
100447
100447
  "page-0762",
100448
+ "page-0763",
100448
100449
  "page-0764",
100449
100450
  "page-0765",
100450
- "page-0766",
100451
100451
  "page-0768",
100452
100452
  "page-0769",
100453
100453
  "page-0777",
@@ -101932,7 +101932,7 @@
101932
101932
  "page-0037",
101933
101933
  "page-0505",
101934
101934
  "page-0547",
101935
- "page-0557",
101935
+ "page-0556",
101936
101936
  "page-0668",
101937
101937
  "page-0702",
101938
101938
  "page-0736",
@@ -104388,7 +104388,7 @@
104388
104388
  "page-0553",
104389
104389
  "page-0554",
104390
104390
  "page-0555",
104391
- "page-0556",
104391
+ "page-0557",
104392
104392
  "page-0558",
104393
104393
  "page-0659",
104394
104394
  "page-1168",
@@ -105608,7 +105608,7 @@
105608
105608
  "include": [
105609
105609
  "page-0142",
105610
105610
  "page-0555",
105611
- "page-0557",
105611
+ "page-0556",
105612
105612
  "page-0565",
105613
105613
  "page-0683",
105614
105614
  "page-0686",
@@ -105668,7 +105668,7 @@
105668
105668
  "page-0512",
105669
105669
  "page-0550",
105670
105670
  "page-0553",
105671
- "page-0557",
105671
+ "page-0556",
105672
105672
  "page-0710"
105673
105673
  ],
105674
105674
  "info": [
@@ -105860,7 +105860,7 @@
105860
105860
  "page-0457",
105861
105861
  "page-0492",
105862
105862
  "page-0528",
105863
- "page-0557",
105863
+ "page-0556",
105864
105864
  "page-0659",
105865
105865
  "page-0666",
105866
105866
  "page-0682",
@@ -106062,7 +106062,7 @@
106062
106062
  ],
106063
106063
  "timeout": [
106064
106064
  "page-0160",
106065
- "page-0557",
106065
+ "page-0556",
106066
106066
  "page-0588",
106067
106067
  "page-0594",
106068
106068
  "page-0595",
@@ -106296,7 +106296,7 @@
106296
106296
  "proxy": [
106297
106297
  "page-0167",
106298
106298
  "page-0224",
106299
- "page-0557",
106299
+ "page-0556",
106300
106300
  "page-0585",
106301
106301
  "page-0586",
106302
106302
  "page-0589",
@@ -107319,7 +107319,7 @@
107319
107319
  ],
107320
107320
  "checks": [
107321
107321
  "page-0206",
107322
- "page-0557"
107322
+ "page-0556"
107323
107323
  ],
107324
107324
  "obtain": [
107325
107325
  "page-0208"
@@ -107946,7 +107946,7 @@
107946
107946
  ],
107947
107947
  "limit": [
107948
107948
  "page-0232",
107949
- "page-0557",
107949
+ "page-0556",
107950
107950
  "page-0565",
107951
107951
  "page-0626",
107952
107952
  "page-0669",
@@ -108345,21 +108345,21 @@
108345
108345
  ],
108346
108346
  "clockify": [
108347
108347
  "page-0275",
108348
- "page-0763",
108348
+ "page-0767",
108349
108349
  "page-1054"
108350
108350
  ],
108351
108351
  "cloudflare": [
108352
108352
  "page-0276",
108353
- "page-0764",
108353
+ "page-0763",
108354
108354
  "page-1203"
108355
108355
  ],
108356
108356
  "cockpit": [
108357
108357
  "page-0277",
108358
- "page-0765"
108358
+ "page-0764"
108359
108359
  ],
108360
108360
  "coda": [
108361
108361
  "page-0278",
108362
- "page-0766"
108362
+ "page-0765"
108363
108363
  ],
108364
108364
  "coingecko": [
108365
108365
  "page-0279"
@@ -108794,7 +108794,7 @@
108794
108794
  ],
108795
108795
  "auto": [
108796
108796
  "page-0373",
108797
- "page-0557",
108797
+ "page-0556",
108798
108798
  "page-0558",
108799
108799
  "page-0608",
108800
108800
  "page-1215"
@@ -109429,7 +109429,7 @@
109429
109429
  "page-0498",
109430
109430
  "page-0499",
109431
109431
  "page-0547",
109432
- "page-0557",
109432
+ "page-0556",
109433
109433
  "page-0674",
109434
109434
  "page-1135"
109435
109435
  ],
@@ -109620,7 +109620,7 @@
109620
109620
  "supabase": [
109621
109621
  "page-0520",
109622
109622
  "page-0521",
109623
- "page-0556",
109623
+ "page-0557",
109624
109624
  "page-0970"
109625
109625
  ],
109626
109626
  "accessible": [
@@ -110094,12 +110094,12 @@
110094
110094
  ],
110095
110095
  "insert,": [
110096
110096
  "page-0553",
110097
- "page-0556",
110097
+ "page-0557",
110098
110098
  "page-0558"
110099
110099
  ],
110100
110100
  "update,": [
110101
110101
  "page-0553",
110102
- "page-0556",
110102
+ "page-0557",
110103
110103
  "page-0558"
110104
110104
  ],
110105
110105
  "**update": [
@@ -110114,53 +110114,53 @@
110114
110114
  "page-1204"
110115
110115
  ],
110116
110116
  "weaviate": [
110117
- "page-0557",
110117
+ "page-0556",
110118
110118
  "page-1002"
110119
110119
  ],
110120
110120
  "keys": [
110121
- "page-0557",
110121
+ "page-0556",
110122
110122
  "page-0678",
110123
110123
  "page-1168",
110124
110124
  "page-1183",
110125
110125
  "page-1204"
110126
110126
  ],
110127
110127
  "hybrid:": [
110128
- "page-0557"
110128
+ "page-0556"
110129
110129
  ],
110130
110130
  "explain": [
110131
- "page-0557"
110131
+ "page-0556"
110132
110132
  ],
110133
110133
  "score": [
110134
- "page-0557"
110134
+ "page-0556"
110135
110135
  ],
110136
110136
  "fusion": [
110137
- "page-0557"
110137
+ "page-0556"
110138
110138
  ],
110139
110139
  "alpha": [
110140
- "page-0557",
110140
+ "page-0556",
110141
110141
  "page-1204"
110142
110142
  ],
110143
110143
  "properties": [
110144
- "page-0557",
110144
+ "page-0556",
110145
110145
  "page-1183",
110146
110146
  "page-1187"
110147
110147
  ],
110148
110148
  "distance": [
110149
- "page-0557"
110149
+ "page-0556"
110150
110150
  ],
110151
110151
  "tenant": [
110152
- "page-0557"
110152
+ "page-0556"
110153
110153
  ],
110154
110154
  "skip": [
110155
- "page-0557",
110155
+ "page-0556",
110156
110156
  "page-0644"
110157
110157
  ],
110158
110158
  "init": [
110159
- "page-0557",
110159
+ "page-0556",
110160
110160
  "page-1187"
110161
110161
  ],
110162
110162
  "grpc": [
110163
- "page-0557"
110163
+ "page-0556"
110164
110164
  ],
110165
110165
  "dimensions": [
110166
110166
  "page-0558"
@@ -110271,7 +110271,7 @@
110271
110271
  "page-0587",
110272
110272
  "page-0597",
110273
110273
  "page-0610",
110274
- "page-0767"
110274
+ "page-0766"
110275
110275
  ],
110276
110276
  "palm": [
110277
110277
  "page-0577"