@n8n-as-code/skills 2.2.1-next.151 → 2.2.1

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-05-21T21:20:28.554Z",
2
+ "generatedAt": "2026-05-21T21:34:02.863Z",
3
3
  "version": "1.0.0",
4
4
  "sourceUrl": "https://docs.n8n.io/llms.txt",
5
5
  "totalPages": 1284,
@@ -17906,7 +17906,7 @@
17906
17906
  "nodeName": null,
17907
17907
  "nodeType": null,
17908
17908
  "content": {
17909
- "markdown": "# Hosting n8n on Google Kubernetes Engine\n\nGoogle Cloud offers several options suitable for hosting n8n, including Cloud Run (optimized for running containers), Compute Engine (VMs), and Kubernetes Engine (containers running with Kubernetes).\n\nThis guide uses the Google Kubernetes Engine (GKE) as the hosting option. If you want to use Cloud Run, refer to [these instructions](../google-cloud-run/).\n\nMost of the steps in this guide use the Google Cloud UI, but you can also use the [gcloud command line tool](https://cloud.google.com/sdk/gcloud/) instead to undertake all the steps.\n\n## Prerequisites\n\n- The [gcloud command line tool](https://cloud.google.com/sdk/gcloud/)\n- The [gke-gcloud-auth-plugin](https://cloud.google.com/blog/products/containers-kubernetes/kubectl-auth-changes-in-gke) (install the gcloud CLI first)\n\nSelf-hosting knowledge prerequisites\n\nSelf-hosting n8n requires technical knowledge, including:\n\n- Setting up and configuring servers and containers\n- Managing application resources and scaling\n- Securing servers and applications\n- Configuring n8n\n\nn8n recommends self-hosting for expert users. Mistakes can lead to data loss, security issues, and downtime. If you aren't experienced at managing servers, n8n recommends [n8n Cloud](https://n8n.io/cloud/).\n\nStable and Beta versions\n\nn8n releases a new minor version most weeks. The `stable` version is for production use. `beta` is the most recent release. The `beta` version may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12).\n\nCurrent `stable`: 2.21.5 Current `beta`: 2.22.0\n\n## Create project\n\nGCP encourages you to create projects to logically organize resources and configuration. Create a new project for your n8n deployment from your Google Cloud Console: select the project dropdown menu and then the **NEW PROJECT** button. Then select the newly created project. As you follow the other steps in this guide, make sure you have the correct project selected.\n\n## Enable the Kubernetes Engine API\n\nGKE isn't enabled by default. Search for \"Kubernetes\" in the top search bar and select \"Kubernetes Engine\" from the results.\n\nSelect **ENABLE** to enable the Kubernetes Engine API for this project.\n\n## Create a cluster\n\nFrom the [GKE service page](https://console.cloud.google.com/kubernetes/list/overview), select **Clusters** > **CREATE**. Make sure you select the \"Standard\" cluster option, n8n doesn't work with an \"Autopilot\" cluster. You can leave the cluster configuration on defaults unless there's anything specifically you need to change, such as location.\n\n## Set Kubectl context\n\nThe rest of the steps in this guide require you to set the GCP instance as the Kubectl context. You can find the connection details for a cluster instance by opening its details page and selecting **CONNECT**. The displayed code snippet shows a connection string for the gcloud CLI tool. Paste and run the code snippet in the gcloud CLI to change your local Kubernetes settings to use the new gcloud cluster.\n\n## Clone configuration repository\n\nKubernetes and n8n require a series of configuration files. You can clone these from [this repository](https://github.com/n8n-io/n8n-hosting) locally. The following steps explain the file configuration and how to add your information.\n\nClone the repository with the following command:\n\n```\ngit clone https://github.com/n8n-io/n8n-hosting.git\n```\n\nAnd change directory:\n\n```\ncd n8n-hosting/kubernetes\n```\n\n## Configure Postgres\n\nFor larger scale n8n deployments, Postgres provides a more robust database backend than SQLite.\n\n### Create a volume for persistent storage\n\nTo maintain data between pod restarts, the Postgres deployment needs a persistent volume. Running Postgres on GCP requires a specific Kubernetes Storage Class. You can read [this guide](https://cloud.google.com/architecture/deploying-highly-available-postgresql-with-gke) for specifics, but the `storage.yaml` manifest creates it for you. You may want to change the regions to create the storage in under the `allowedTopologies` > `matchedLabelExpressions` > `values` key. By default, they're set to `us-central`.\n\n```\n…\nallowedTopologies:\n - matchLabelExpressions:\n - key: failure-domain.beta.kubernetes.io/zone\n values:\n - us-central1-b\n - us-central1-c\n```\n\n### Postgres environment variables\n\nPostgres needs some environment variables set to pass to the application running in the containers.\n\nThe example `postgres-secret.yaml` file contains placeholders you need to replace with your own values. Postgres will use these details when creating the database..\n\nThe `postgres-deployment.yaml` manifest then uses the values from this manifest file to send to the application pods.\n\n## Configure n8n\n\n### Create a volume for file storage\n\nWhile not essential for running n8n, using persistent volumes is required for:\n\n- Using nodes that interact with files, such as the binary data node.\n- If you want to persist [manual n8n encryption keys](../../../configuration/environment-variables/deployment/) between restarts. This saves a file containing the key into file storage during startup.\n\nThe `n8n-claim0-persistentvolumeclaim.yaml` manifest creates this, and the n8n Deployment mounts that claim in the `volumes` section of the `n8n-deployment.yaml` manifest.\n\n```\n…\nvolumes:\n - name: n8n-claim0\n persistentVolumeClaim:\n claimName: n8n-claim0\n…\n```\n\n### Pod resources\n\n[Kubernetes lets you](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) optionally specify the minimum resources application containers need and the limits they can run to. The example YAML files cloned above contain the following in the `resources` section of the `n8n-deployment.yaml` and `postgres-deployment.yaml` files:\n\n```\n��\nresources:\n requests:\n memory: \"250Mi\"\n limits:\n memory: \"500Mi\"\n…\n```\n\nThis defines a minimum of 250mb per container, a maximum of 500mb, and lets Kubernetes handle CPU. You can change these values to match your own needs. As a guide, here are the resources values for the n8n cloud offerings:\n\n- **Start**: 320mb RAM, 10 millicore CPU burstable\n- **Pro (10k executions)**: 640mb RAM, 20 millicore CPU burstable\n- **Pro (50k executions)**: 1280mb RAM, 80 millicore CPU burstable\n\n### Optional: Environment variables\n\nYou can configure n8n settings and behaviors using environment variables.\n\nCreate an `n8n-secret.yaml` file. Refer to [Environment variables](../../../configuration/environment-variables/) for n8n environment variables details.\n\n## Deployments\n\nThe two deployment manifests (`n8n-deployment.yaml` and `postgres-deployment.yaml`) define the n8n and Postgres applications to Kubernetes.\n\nThe manifests define the following:\n\n- Send the environment variables defined to each application pod\n- Define the container image to use\n- Set resource consumption limits with the `resources` object\n- The `volumes` defined earlier and `volumeMounts` to define the path in the container to mount volumes.\n- Scaling and restart policies. The example manifests define one instance of each pod. You should change this to meet your needs.\n\n## Services\n\nThe two service manifests (`postgres-service.yaml` and `n8n-service.yaml`) expose the services to the outside world using the Kubernetes load balancer using ports 5432 and 5678 respectively.\n\n## Send to Kubernetes cluster\n\nSend all the manifests to the cluster with the following command:\n\n```\nkubectl apply -f .\n```\n\nNamespace error\n\nYou may see an error message about not finding an \"n8n\" namespace as that resources isn't ready yet. You can run the same command again, or apply the namespace manifest first with the following command:\n\n```\nkubectl apply -f namespace.yaml\n```\n\n## Set up DNS\n\nn8n typically operates on a subdomain. Create a DNS record with your provider for the subdomain and point it to the IP address of the n8n service. Find the IP address of the n8n service from the **Services & Ingress** menu item of the cluster you want to use under the **Endpoints** column.\n\nGKE and IP addresses\n\n[Read this GKE tutorial](https://cloud.google.com/kubernetes-engine/docs/tutorials/configuring-domain-name-static-ip#configuring_your_domain_name_records) for more details on how reserved IP addresses work with GKE and Kubernetes resources.\n\n## Delete resources\n\nRemove the resources created by the manifests with the following command:\n\n```\nkubectl delete -f .\n```\n\n## Next steps\n\n- Learn more about [configuring](../../../configuration/environment-variables/) and [scaling](../../../scaling/overview/) n8n.\n- Or explore using n8n: try the [Quickstarts](../../../../try-it-out/).\n",
17909
+ "markdown": "# Hosting n8n on Google Kubernetes Engine\n\nGoogle Cloud offers several options suitable for hosting n8n, including Cloud Run (optimized for running containers), Compute Engine (VMs), and Kubernetes Engine (containers running with Kubernetes).\n\nThis guide uses the Google Kubernetes Engine (GKE) as the hosting option. If you want to use Cloud Run, refer to [these instructions](../google-cloud-run/).\n\nMost of the steps in this guide use the Google Cloud UI, but you can also use the [gcloud command line tool](https://cloud.google.com/sdk/gcloud/) instead to undertake all the steps.\n\n## Prerequisites\n\n- The [gcloud command line tool](https://cloud.google.com/sdk/gcloud/)\n- The [gke-gcloud-auth-plugin](https://cloud.google.com/blog/products/containers-kubernetes/kubectl-auth-changes-in-gke) (install the gcloud CLI first)\n\nSelf-hosting knowledge prerequisites\n\nSelf-hosting n8n requires technical knowledge, including:\n\n- Setting up and configuring servers and containers\n- Managing application resources and scaling\n- Securing servers and applications\n- Configuring n8n\n\nn8n recommends self-hosting for expert users. Mistakes can lead to data loss, security issues, and downtime. If you aren't experienced at managing servers, n8n recommends [n8n Cloud](https://n8n.io/cloud/).\n\nStable and Beta versions\n\nn8n releases a new minor version most weeks. The `stable` version is for production use. `beta` is the most recent release. The `beta` version may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12).\n\nCurrent `stable`: 2.21.5 Current `beta`: 2.22.0\n\n## Create project\n\nGCP encourages you to create projects to logically organize resources and configuration. Create a new project for your n8n deployment from your Google Cloud Console: select the project dropdown menu and then the **NEW PROJECT** button. Then select the newly created project. As you follow the other steps in this guide, make sure you have the correct project selected.\n\n## Enable the Kubernetes Engine API\n\nGKE isn't enabled by default. Search for \"Kubernetes\" in the top search bar and select \"Kubernetes Engine\" from the results.\n\nSelect **ENABLE** to enable the Kubernetes Engine API for this project.\n\n## Create a cluster\n\nFrom the [GKE service page](https://console.cloud.google.com/kubernetes/list/overview), select **Clusters** > **CREATE**. Make sure you select the \"Standard\" cluster option, n8n doesn't work with an \"Autopilot\" cluster. You can leave the cluster configuration on defaults unless there's anything specifically you need to change, such as location.\n\n## Set Kubectl context\n\nThe rest of the steps in this guide require you to set the GCP instance as the Kubectl context. You can find the connection details for a cluster instance by opening its details page and selecting **CONNECT**. The displayed code snippet shows a connection string for the gcloud CLI tool. Paste and run the code snippet in the gcloud CLI to change your local Kubernetes settings to use the new gcloud cluster.\n\n## Clone configuration repository\n\nKubernetes and n8n require a series of configuration files. You can clone these from [this repository](https://github.com/n8n-io/n8n-hosting) locally. The following steps explain the file configuration and how to add your information.\n\nClone the repository with the following command:\n\n```\ngit clone https://github.com/n8n-io/n8n-hosting.git\n```\n\nAnd change directory:\n\n```\ncd n8n-hosting/kubernetes\n```\n\n## Configure Postgres\n\nFor larger scale n8n deployments, Postgres provides a more robust database backend than SQLite.\n\n### Create a volume for persistent storage\n\nTo maintain data between pod restarts, the Postgres deployment needs a persistent volume. Running Postgres on GCP requires a specific Kubernetes Storage Class. You can read [this guide](https://cloud.google.com/architecture/deploying-highly-available-postgresql-with-gke) for specifics, but the `storage.yaml` manifest creates it for you. You may want to change the regions to create the storage in under the `allowedTopologies` > `matchedLabelExpressions` > `values` key. By default, they're set to `us-central`.\n\n```\n…\nallowedTopologies:\n - matchLabelExpressions:\n - key: failure-domain.beta.kubernetes.io/zone\n values:\n - us-central1-b\n - us-central1-c\n```\n\n### Postgres environment variables\n\nPostgres needs some environment variables set to pass to the application running in the containers.\n\nThe example `postgres-secret.yaml` file contains placeholders you need to replace with your own values. Postgres will use these details when creating the database..\n\nThe `postgres-deployment.yaml` manifest then uses the values from this manifest file to send to the application pods.\n\n## Configure n8n\n\n### Create a volume for file storage\n\nWhile not essential for running n8n, using persistent volumes is required for:\n\n- Using nodes that interact with files, such as the binary data node.\n- If you want to persist [manual n8n encryption keys](../../../configuration/environment-variables/deployment/) between restarts. This saves a file containing the key into file storage during startup.\n\nThe `n8n-claim0-persistentvolumeclaim.yaml` manifest creates this, and the n8n Deployment mounts that claim in the `volumes` section of the `n8n-deployment.yaml` manifest.\n\n```\n…\nvolumes:\n - name: n8n-claim0\n persistentVolumeClaim:\n claimName: n8n-claim0\n…\n```\n\n### Pod resources\n\n[Kubernetes lets you](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) optionally specify the minimum resources application containers need and the limits they can run to. The example YAML files cloned above contain the following in the `resources` section of the `n8n-deployment.yaml` and `postgres-deployment.yaml` files:\n\n```\n…\nresources:\n requests:\n memory: \"250Mi\"\n limits:\n memory: \"500Mi\"\n…\n```\n\nThis defines a minimum of 250mb per container, a maximum of 500mb, and lets Kubernetes handle CPU. You can change these values to match your own needs. As a guide, here are the resources values for the n8n cloud offerings:\n\n- **Start**: 320mb RAM, 10 millicore CPU burstable\n- **Pro (10k executions)**: 640mb RAM, 20 millicore CPU burstable\n- **Pro (50k executions)**: 1280mb RAM, 80 millicore CPU burstable\n\n### Optional: Environment variables\n\nYou can configure n8n settings and behaviors using environment variables.\n\nCreate an `n8n-secret.yaml` file. Refer to [Environment variables](../../../configuration/environment-variables/) for n8n environment variables details.\n\n## Deployments\n\nThe two deployment manifests (`n8n-deployment.yaml` and `postgres-deployment.yaml`) define the n8n and Postgres applications to Kubernetes.\n\nThe manifests define the following:\n\n- Send the environment variables defined to each application pod\n- Define the container image to use\n- Set resource consumption limits with the `resources` object\n- The `volumes` defined earlier and `volumeMounts` to define the path in the container to mount volumes.\n- Scaling and restart policies. The example manifests define one instance of each pod. You should change this to meet your needs.\n\n## Services\n\nThe two service manifests (`postgres-service.yaml` and `n8n-service.yaml`) expose the services to the outside world using the Kubernetes load balancer using ports 5432 and 5678 respectively.\n\n## Send to Kubernetes cluster\n\nSend all the manifests to the cluster with the following command:\n\n```\nkubectl apply -f .\n```\n\nNamespace error\n\nYou may see an error message about not finding an \"n8n\" namespace as that resources isn't ready yet. You can run the same command again, or apply the namespace manifest first with the following command:\n\n```\nkubectl apply -f namespace.yaml\n```\n\n## Set up DNS\n\nn8n typically operates on a subdomain. Create a DNS record with your provider for the subdomain and point it to the IP address of the n8n service. Find the IP address of the n8n service from the **Services & Ingress** menu item of the cluster you want to use under the **Endpoints** column.\n\nGKE and IP addresses\n\n[Read this GKE tutorial](https://cloud.google.com/kubernetes-engine/docs/tutorials/configuring-domain-name-static-ip#configuring_your_domain_name_records) for more details on how reserved IP addresses work with GKE and Kubernetes resources.\n\n## Delete resources\n\nRemove the resources created by the manifests with the following command:\n\n```\nkubectl delete -f .\n```\n\n## Next steps\n\n- Learn more about [configuring](../../../configuration/environment-variables/) and [scaling](../../../scaling/overview/) n8n.\n- Or explore using n8n: try the [Quickstarts](../../../../try-it-out/).\n",
17910
17910
  "excerpt": "# Hosting n8n on Google Kubernetes Engine Google Cloud offers several options suitable for hosting n8n, including Cloud Run (optimized for running containers), Compute Engine (VMs), and Kubernetes Engine (containers running with Kubernetes). This guide uses the Google Kubernetes Engine (GKE) as the hosting option. If you want to use Cloud Run, refer to [these instructions](../google-cloud-run/). Most of the steps in this guide use the Google Cloud UI, but you can also use the [gcloud command...",
17911
17911
  "sections": [
17912
17912
  {
@@ -17954,11 +17954,11 @@
17954
17954
  "codeExamples": 8,
17955
17955
  "complexity": "intermediate",
17956
17956
  "readingTime": "6 min",
17957
- "contentLength": 8655,
17957
+ "contentLength": 8654,
17958
17958
  "relatedPages": []
17959
17959
  },
17960
17960
  "searchIndex": {
17961
- "fullText": "google kubernetes engine # hosting n8n on google kubernetes engine\n\ngoogle cloud offers several options suitable for hosting n8n, including cloud run (optimized for running containers), compute engine (vms), and kubernetes engine (containers running with kubernetes).\n\nthis guide uses the google kubernetes engine (gke) as the hosting option. if you want to use cloud run, refer to [these instructions](../google-cloud-run/).\n\nmost of the steps in this guide use the google cloud ui, but you can also use the [gcloud command line tool](https://cloud.google.com/sdk/gcloud/) instead to undertake all the steps.\n\n## prerequisites\n\n- the [gcloud command line tool](https://cloud.google.com/sdk/gcloud/)\n- the [gke-gcloud-auth-plugin](https://cloud.google.com/blog/products/containers-kubernetes/kubectl-auth-changes-in-gke) (install the gcloud cli first)\n\nself-hosting knowledge prerequisites\n\nself-hosting n8n requires technical knowledge, including:\n\n- setting up and configuring servers and containers\n- managing application resources and scaling\n- securing servers and applications\n- configuring n8n\n\nn8n recommends self-hosting for expert users. mistakes can lead to data loss, security issues, and downtime. if you aren't experienced at managing servers, n8n recommends [n8n cloud](https://n8n.io/cloud/).\n\nstable and beta versions\n\nn8n releases a new minor version most weeks. the `stable` version is for production use. `beta` is the most recent release. the `beta` version may be unstable. to report issues, use the [forum](https://community.n8n.io/c/questions/12).\n\ncurrent `stable`: 2.21.5 current `beta`: 2.22.0\n\n## create project\n\ngcp encourages you to create projects to logically organize resources and configuration. create a new project for your n8n deployment from your google cloud console: select the project dropdown menu and then the **new project** button. then select the newly created project. as you follow the other steps in this guide, make sure you have the correct project selected.\n\n## enable the kubernetes engine api\n\ngke isn't enabled by default. search for \"kubernetes\" in the top search bar and select \"kubernetes engine\" from the results.\n\nselect **enable** to enable the kubernetes engine api for this project.\n\n## create a cluster\n\nfrom the [gke service page](https://console.cloud.google.com/kubernetes/list/overview), select **clusters** > **create**. make sure you select the \"standard\" cluster option, n8n doesn't work with an \"autopilot\" cluster. you can leave the cluster configuration on defaults unless there's anything specifically you need to change, such as location.\n\n## set kubectl context\n\nthe rest of the steps in this guide require you to set the gcp instance as the kubectl context. you can find the connection details for a cluster instance by opening its details page and selecting **connect**. the displayed code snippet shows a connection string for the gcloud cli tool. paste and run the code snippet in the gcloud cli to change your local kubernetes settings to use the new gcloud cluster.\n\n## clone configuration repository\n\nkubernetes and n8n require a series of configuration files. you can clone these from [this repository](https://github.com/n8n-io/n8n-hosting) locally. the following steps explain the file configuration and how to add your information.\n\nclone the repository with the following command:\n\n```\ngit clone https://github.com/n8n-io/n8n-hosting.git\n```\n\nand change directory:\n\n```\ncd n8n-hosting/kubernetes\n```\n\n## configure postgres\n\nfor larger scale n8n deployments, postgres provides a more robust database backend than sqlite.\n\n### create a volume for persistent storage\n\nto maintain data between pod restarts, the postgres deployment needs a persistent volume. running postgres on gcp requires a specific kubernetes storage class. you can read [this guide](https://cloud.google.com/architecture/deploying-highly-available-postgresql-with-gke) for specifics, but the `storage.yaml` manifest creates it for you. you may want to change the regions to create the storage in under the `allowedtopologies` > `matchedlabelexpressions` > `values` key. by default, they're set to `us-central`.\n\n```\n…\nallowedtopologies:\n - matchlabelexpressions:\n - key: failure-domain.beta.kubernetes.io/zone\n values:\n - us-central1-b\n - us-central1-c\n```\n\n### postgres environment variables\n\npostgres needs some environment variables set to pass to the application running in the containers.\n\nthe example `postgres-secret.yaml` file contains placeholders you need to replace with your own values. postgres will use these details when creating the database..\n\nthe `postgres-deployment.yaml` manifest then uses the values from this manifest file to send to the application pods.\n\n## configure n8n\n\n### create a volume for file storage\n\nwhile not essential for running n8n, using persistent volumes is required for:\n\n- using nodes that interact with files, such as the binary data node.\n- if you want to persist [manual n8n encryption keys](../../../configuration/environment-variables/deployment/) between restarts. this saves a file containing the key into file storage during startup.\n\nthe `n8n-claim0-persistentvolumeclaim.yaml` manifest creates this, and the n8n deployment mounts that claim in the `volumes` section of the `n8n-deployment.yaml` manifest.\n\n```\n…\nvolumes:\n - name: n8n-claim0\n persistentvolumeclaim:\n claimname: n8n-claim0\n…\n```\n\n### pod resources\n\n[kubernetes lets you](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) optionally specify the minimum resources application containers need and the limits they can run to. the example yaml files cloned above contain the following in the `resources` section of the `n8n-deployment.yaml` and `postgres-deployment.yaml` files:\n\n```\n��\nresources:\n requests:\n memory: \"250mi\"\n limits:\n memory: \"500mi\"\n…\n```\n\nthis defines a minimum of 250mb per container, a maximum of 500mb, and lets kubernetes handle cpu. you can change these values to match your own needs. as a guide, here are the resources values for the n8n cloud offerings:\n\n- **start**: 320mb ram, 10 millicore cpu burstable\n- **pro (10k executions)**: 640mb ram, 20 millicore cpu burstable\n- **pro (50k executions)**: 1280mb ram, 80 millicore cpu burstable\n\n### optional: environment variables\n\nyou can configure n8n settings and behaviors using environment variables.\n\ncreate an `n8n-secret.yaml` file. refer to [environment variables](../../../configuration/environment-variables/) for n8n environment variables details.\n\n## deployments\n\nthe two deployment manifests (`n8n-deployment.yaml` and `postgres-deployment.yaml`) define the n8n and postgres applications to kubernetes.\n\nthe manifests define the following:\n\n- send the environment variables defined to each application pod\n- define the container image to use\n- set resource consumption limits with the `resources` object\n- the `volumes` defined earlier and `volumemounts` to define the path in the container to mount volumes.\n- scaling and restart policies. the example manifests define one instance of each pod. you should change this to meet your needs.\n\n## services\n\nthe two service manifests (`postgres-service.yaml` and `n8n-service.yaml`) expose the services to the outside world using the kubernetes load balancer using ports 5432 and 5678 respectively.\n\n## send to kubernetes cluster\n\nsend all the manifests to the cluster with the following command:\n\n```\nkubectl apply -f .\n```\n\nnamespace error\n\nyou may see an error message about not finding an \"n8n\" namespace as that resources isn't ready yet. you can run the same command again, or apply the namespace manifest first with the following command:\n\n```\nkubectl apply -f namespace.yaml\n```\n\n## set up dns\n\nn8n typically operates on a subdomain. create a dns record with your provider for the subdomain and point it to the ip address of the n8n service. find the ip address of the n8n service from the **services & ingress** menu item of the cluster you want to use under the **endpoints** column.\n\ngke and ip addresses\n\n[read this gke tutorial](https://cloud.google.com/kubernetes-engine/docs/tutorials/configuring-domain-name-static-ip#configuring_your_domain_name_records) for more details on how reserved ip addresses work with gke and kubernetes resources.\n\n## delete resources\n\nremove the resources created by the manifests with the following command:\n\n```\nkubectl delete -f .\n```\n\n## next steps\n\n- learn more about [configuring](../../../configuration/environment-variables/) and [scaling](../../../scaling/overview/) n8n.\n- or explore using n8n: try the [quickstarts](../../../../try-it-out/).\n hosting n8n on google kubernetes engine",
17961
+ "fullText": "google kubernetes engine # hosting n8n on google kubernetes engine\n\ngoogle cloud offers several options suitable for hosting n8n, including cloud run (optimized for running containers), compute engine (vms), and kubernetes engine (containers running with kubernetes).\n\nthis guide uses the google kubernetes engine (gke) as the hosting option. if you want to use cloud run, refer to [these instructions](../google-cloud-run/).\n\nmost of the steps in this guide use the google cloud ui, but you can also use the [gcloud command line tool](https://cloud.google.com/sdk/gcloud/) instead to undertake all the steps.\n\n## prerequisites\n\n- the [gcloud command line tool](https://cloud.google.com/sdk/gcloud/)\n- the [gke-gcloud-auth-plugin](https://cloud.google.com/blog/products/containers-kubernetes/kubectl-auth-changes-in-gke) (install the gcloud cli first)\n\nself-hosting knowledge prerequisites\n\nself-hosting n8n requires technical knowledge, including:\n\n- setting up and configuring servers and containers\n- managing application resources and scaling\n- securing servers and applications\n- configuring n8n\n\nn8n recommends self-hosting for expert users. mistakes can lead to data loss, security issues, and downtime. if you aren't experienced at managing servers, n8n recommends [n8n cloud](https://n8n.io/cloud/).\n\nstable and beta versions\n\nn8n releases a new minor version most weeks. the `stable` version is for production use. `beta` is the most recent release. the `beta` version may be unstable. to report issues, use the [forum](https://community.n8n.io/c/questions/12).\n\ncurrent `stable`: 2.21.5 current `beta`: 2.22.0\n\n## create project\n\ngcp encourages you to create projects to logically organize resources and configuration. create a new project for your n8n deployment from your google cloud console: select the project dropdown menu and then the **new project** button. then select the newly created project. as you follow the other steps in this guide, make sure you have the correct project selected.\n\n## enable the kubernetes engine api\n\ngke isn't enabled by default. search for \"kubernetes\" in the top search bar and select \"kubernetes engine\" from the results.\n\nselect **enable** to enable the kubernetes engine api for this project.\n\n## create a cluster\n\nfrom the [gke service page](https://console.cloud.google.com/kubernetes/list/overview), select **clusters** > **create**. make sure you select the \"standard\" cluster option, n8n doesn't work with an \"autopilot\" cluster. you can leave the cluster configuration on defaults unless there's anything specifically you need to change, such as location.\n\n## set kubectl context\n\nthe rest of the steps in this guide require you to set the gcp instance as the kubectl context. you can find the connection details for a cluster instance by opening its details page and selecting **connect**. the displayed code snippet shows a connection string for the gcloud cli tool. paste and run the code snippet in the gcloud cli to change your local kubernetes settings to use the new gcloud cluster.\n\n## clone configuration repository\n\nkubernetes and n8n require a series of configuration files. you can clone these from [this repository](https://github.com/n8n-io/n8n-hosting) locally. the following steps explain the file configuration and how to add your information.\n\nclone the repository with the following command:\n\n```\ngit clone https://github.com/n8n-io/n8n-hosting.git\n```\n\nand change directory:\n\n```\ncd n8n-hosting/kubernetes\n```\n\n## configure postgres\n\nfor larger scale n8n deployments, postgres provides a more robust database backend than sqlite.\n\n### create a volume for persistent storage\n\nto maintain data between pod restarts, the postgres deployment needs a persistent volume. running postgres on gcp requires a specific kubernetes storage class. you can read [this guide](https://cloud.google.com/architecture/deploying-highly-available-postgresql-with-gke) for specifics, but the `storage.yaml` manifest creates it for you. you may want to change the regions to create the storage in under the `allowedtopologies` > `matchedlabelexpressions` > `values` key. by default, they're set to `us-central`.\n\n```\n…\nallowedtopologies:\n - matchlabelexpressions:\n - key: failure-domain.beta.kubernetes.io/zone\n values:\n - us-central1-b\n - us-central1-c\n```\n\n### postgres environment variables\n\npostgres needs some environment variables set to pass to the application running in the containers.\n\nthe example `postgres-secret.yaml` file contains placeholders you need to replace with your own values. postgres will use these details when creating the database..\n\nthe `postgres-deployment.yaml` manifest then uses the values from this manifest file to send to the application pods.\n\n## configure n8n\n\n### create a volume for file storage\n\nwhile not essential for running n8n, using persistent volumes is required for:\n\n- using nodes that interact with files, such as the binary data node.\n- if you want to persist [manual n8n encryption keys](../../../configuration/environment-variables/deployment/) between restarts. this saves a file containing the key into file storage during startup.\n\nthe `n8n-claim0-persistentvolumeclaim.yaml` manifest creates this, and the n8n deployment mounts that claim in the `volumes` section of the `n8n-deployment.yaml` manifest.\n\n```\n…\nvolumes:\n - name: n8n-claim0\n persistentvolumeclaim:\n claimname: n8n-claim0\n…\n```\n\n### pod resources\n\n[kubernetes lets you](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/) optionally specify the minimum resources application containers need and the limits they can run to. the example yaml files cloned above contain the following in the `resources` section of the `n8n-deployment.yaml` and `postgres-deployment.yaml` files:\n\n```\n…\nresources:\n requests:\n memory: \"250mi\"\n limits:\n memory: \"500mi\"\n…\n```\n\nthis defines a minimum of 250mb per container, a maximum of 500mb, and lets kubernetes handle cpu. you can change these values to match your own needs. as a guide, here are the resources values for the n8n cloud offerings:\n\n- **start**: 320mb ram, 10 millicore cpu burstable\n- **pro (10k executions)**: 640mb ram, 20 millicore cpu burstable\n- **pro (50k executions)**: 1280mb ram, 80 millicore cpu burstable\n\n### optional: environment variables\n\nyou can configure n8n settings and behaviors using environment variables.\n\ncreate an `n8n-secret.yaml` file. refer to [environment variables](../../../configuration/environment-variables/) for n8n environment variables details.\n\n## deployments\n\nthe two deployment manifests (`n8n-deployment.yaml` and `postgres-deployment.yaml`) define the n8n and postgres applications to kubernetes.\n\nthe manifests define the following:\n\n- send the environment variables defined to each application pod\n- define the container image to use\n- set resource consumption limits with the `resources` object\n- the `volumes` defined earlier and `volumemounts` to define the path in the container to mount volumes.\n- scaling and restart policies. the example manifests define one instance of each pod. you should change this to meet your needs.\n\n## services\n\nthe two service manifests (`postgres-service.yaml` and `n8n-service.yaml`) expose the services to the outside world using the kubernetes load balancer using ports 5432 and 5678 respectively.\n\n## send to kubernetes cluster\n\nsend all the manifests to the cluster with the following command:\n\n```\nkubectl apply -f .\n```\n\nnamespace error\n\nyou may see an error message about not finding an \"n8n\" namespace as that resources isn't ready yet. you can run the same command again, or apply the namespace manifest first with the following command:\n\n```\nkubectl apply -f namespace.yaml\n```\n\n## set up dns\n\nn8n typically operates on a subdomain. create a dns record with your provider for the subdomain and point it to the ip address of the n8n service. find the ip address of the n8n service from the **services & ingress** menu item of the cluster you want to use under the **endpoints** column.\n\ngke and ip addresses\n\n[read this gke tutorial](https://cloud.google.com/kubernetes-engine/docs/tutorials/configuring-domain-name-static-ip#configuring_your_domain_name_records) for more details on how reserved ip addresses work with gke and kubernetes resources.\n\n## delete resources\n\nremove the resources created by the manifests with the following command:\n\n```\nkubectl delete -f .\n```\n\n## next steps\n\n- learn more about [configuring](../../../configuration/environment-variables/) and [scaling](../../../scaling/overview/) n8n.\n- or explore using n8n: try the [quickstarts](../../../../try-it-out/).\n hosting n8n on google kubernetes engine",
17962
17962
  "importantTerms": [
17963
17963
  "kubernetes",
17964
17964
  "cloud",
@@ -51493,132 +51493,6 @@
51493
51493
  },
51494
51494
  {
51495
51495
  "id": "page-0649",
51496
- "title": "OpenAI Chat Model",
51497
- "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatopenai/index.md",
51498
- "urlPath": "integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatopenai/index.md",
51499
- "category": "cluster-nodes",
51500
- "subcategory": null,
51501
- "nodeName": null,
51502
- "nodeType": null,
51503
- "content": {
51504
- "markdown": "# OpenAI Chat Model node\n\nUse the OpenAI Chat Model node to use OpenAI's chat models with conversational [agents](../../../../../glossary/#ai-agent).\n\nOn this page, you'll find the node parameters for the OpenAI Chat Model node and links to more resources.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/openai/).\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 parameters\n\n### Model\n\nSelect the model to use to generate the completion.\n\nn8n dynamically loads models from OpenAI, and you'll only see the models available to your account.\n\n### Use Responses API\n\nOpenAI provides two endpoints for generating output from a model:\n\n- **Chat Completions**: The Chat Completions API endpoint generates a model response from a list of messages that comprise a conversation. The API requires the user to handle conversation state manually, for example by adding a [Simple Memory](../n8n-nodes-langchain.memorybufferwindow/) subnode. For new projects, OpenAI recommends to use the Responses API.\n- **Responses**: The Responses API is an agentic loop, allowing the model to call multiple built-in tools within the span of one API request. It also supports persistent conversations by passing a `conversation_id`.\n\nToggle to **Use Responses API** if you want the model to generate output using the Responses API. Otherwise, the OpenAI Chat Model node will default to using the Chat Completions API.\n\nRefer to the OpenAI documentation for a [comparison of the Chat Completions and Responses APIs](https://platform.openai.com/docs/guides/migrate-to-responses).\n\n### Built-in Tools\n\nThe OpenAI Responses API provides a range of [built-in tools](https://platform.openai.com/docs/guides/tools) to enrich the model's response. Toggle to **Use Responses API** if you want the model to have access to the following built-in tools:\n\n- **Web Search**: Allows models to search the web for the latest information before generating a response.\n- **File Search**: Allow models to search your knowledgebase from previously uploaded files for relevant information before generating a response. Refer to the [OpenAI documentation](https://platform.openai.com/docs/guides/tools-file-search) for more information.\n- **Code Interpreter**: Allows models to write and run Python code in a sandboxed environment.\n\nUse with AI Agent node\n\nBuilt-in tools are only supported when using the OpenAI Chat Model node in combination with the AI Agent node. Built-in tools aren't available when using the OpenAI Chat Model node in combination with a Basic LLM Chain node, for example.\n\n## Node options\n\nUse these options to further refine the node's behavior. The following options are available whether you use the Responses API to generate model output or not.\n\n### Frequency Penalty\n\nUse this option to control the chances of the model repeating itself. Higher values reduce the chance of the model repeating itself.\n\n### Maximum Number of Tokens\n\nEnter the maximum number of tokens used, which sets the completion length.\n\n### Presence Penalty\n\nUse this option to control the chances of the model talking about new topics. Higher values increase the chance of the model talking about new topics.\n\n### Sampling Temperature\n\nUse this option to control the randomness of the sampling process. A higher temperature creates more diverse sampling, but increases the risk of hallucinations.\n\n### Timeout\n\nEnter the maximum request time in milliseconds.\n\n### Max Retries\n\nEnter the maximum number of times to retry a request.\n\n### Top P\n\nUse this option to set the probability the completion should use. Use a lower value to ignore less probable options.\n\n## Additional node options (Responses API only)\n\nThe following, additional options are available when toggling to **Use Responses API**.\n\n### Conversation ID\n\nThe conversation that this response belongs to. Input items and output items from this response are automatically added to this conversation after this response completes.\n\n### Prompt Cache Key\n\nUse this key for caching similar requests to optimize cache hit rates.\n\n### Safety Identifier\n\nApply an identifier to track users who may violate usage policies.\n\n### Service Tier\n\nSelect the service tier that fits your needs: Auto, Flex, Default, or Priority.\n\n### Metadata\n\nA set of key-value pairs for storing structured information. You can attach up to 16 pairs to an object, which is useful for adding custom data that can be used for searching by the API or in the dashboard.\n\n### Top Logprobs\n\nDefine an integer between 0 and 20 specifying the number of most likely tokens to return at each token position, each with an associated log probability.\n\n### Output Format\n\nChoose a response format: Text, JSON Schema, or JSON Object. Use of JSON Schema is recommended, if you want to receive data in JSON format.\n\n### Prompt\n\nConfigure the prompt filled with a unique ID, its version, and substitutable variables. Prompts are configured through the OpenAI dashboard.\n\n## Templates and examples\n\n**AI agent chat**\n\nby n8n Team\n\n[View template details](https://n8n.io/workflows/1954-ai-agent-chat/)\n\n**Building Your First WhatsApp Chatbot**\n\nby Jimleuk\n\n[View template details](https://n8n.io/workflows/2465-building-your-first-whatsapp-chatbot/)\n\n**Angie, personal AI assistant with Telegram voice and text**\n\nby Derek Cheung\n\n[View template details](https://n8n.io/workflows/2462-angie-personal-ai-assistant-with-telegram-voice-and-text/)\n\n[Browse OpenAI Chat Model integration templates](https://n8n.io/integrations/openai-chat-model/), or [search all templates](https://n8n.io/workflows/)\n\n## Related resources\n\nRefer to [LangChains's OpenAI documentation](https://js.langchain.com/docs/integrations/chat/openai/) for more information about the service.\n\nRefer to [OpenAI documentation](https://platform.openai.com/docs/api-reference/responses/create) for more information about the parameters.\n\nView n8n's [Advanced AI](../../../../../advanced-ai/) documentation.\n\n## Common issues\n\nFor common questions or issues and suggested solutions, refer to [Common issues](common-issues/).\n",
51505
- "excerpt": "# OpenAI Chat Model node Use the OpenAI Chat Model node to use OpenAI's chat models with conversational [agents](../../../../../glossary/#ai-agent). On this page, you'll find the node parameters for the OpenAI Chat Model node and links to more resources. Credentials You can find authentication information for this node [here](../../../credentials/openai/). Parameter resolution in sub-nodes Sub-nodes behave differently to other nodes when processing multiple items using an expression. Most...",
51506
- "sections": [
51507
- {
51508
- "title": "OpenAI Chat Model node",
51509
- "level": 1,
51510
- "content": "Use the OpenAI Chat Model node to use OpenAI's chat models with conversational [agents](../../../../../glossary/#ai-agent).\n\nOn this page, you'll find the node parameters for the OpenAI Chat Model node and links to more resources.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/openai/).\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."
51511
- }
51512
- ]
51513
- },
51514
- "metadata": {
51515
- "keywords": [
51516
- "openai",
51517
- "chat",
51518
- "model",
51519
- "node",
51520
- "parameters",
51521
- "responses",
51522
- "built",
51523
- "tools",
51524
- "options",
51525
- "frequency",
51526
- "penalty",
51527
- "maximum",
51528
- "number",
51529
- "tokens",
51530
- "presence",
51531
- "sampling",
51532
- "temperature",
51533
- "timeout",
51534
- "retries",
51535
- "additional",
51536
- "(responses",
51537
- "only)",
51538
- "conversation",
51539
- "prompt",
51540
- "cache",
51541
- "safety",
51542
- "identifier",
51543
- "service",
51544
- "tier",
51545
- "metadata",
51546
- "logprobs",
51547
- "output",
51548
- "format",
51549
- "templates",
51550
- "examples",
51551
- "related",
51552
- "resources",
51553
- "common",
51554
- "issues"
51555
- ],
51556
- "useCases": [],
51557
- "operations": [],
51558
- "codeExamples": 0,
51559
- "complexity": "intermediate",
51560
- "readingTime": "5 min",
51561
- "contentLength": 6718,
51562
- "relatedPages": []
51563
- },
51564
- "searchIndex": {
51565
- "fullText": "openai chat model # openai chat model node\n\nuse the openai chat model node to use openai's chat models with conversational [agents](../../../../../glossary/#ai-agent).\n\non this page, you'll find the node parameters for the openai chat model node and links to more resources.\n\ncredentials\n\nyou can find authentication information for this node [here](../../../credentials/openai/).\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 parameters\n\n### model\n\nselect the model to use to generate the completion.\n\nn8n dynamically loads models from openai, and you'll only see the models available to your account.\n\n### use responses api\n\nopenai provides two endpoints for generating output from a model:\n\n- **chat completions**: the chat completions api endpoint generates a model response from a list of messages that comprise a conversation. the api requires the user to handle conversation state manually, for example by adding a [simple memory](../n8n-nodes-langchain.memorybufferwindow/) subnode. for new projects, openai recommends to use the responses api.\n- **responses**: the responses api is an agentic loop, allowing the model to call multiple built-in tools within the span of one api request. it also supports persistent conversations by passing a `conversation_id`.\n\ntoggle to **use responses api** if you want the model to generate output using the responses api. otherwise, the openai chat model node will default to using the chat completions api.\n\nrefer to the openai documentation for a [comparison of the chat completions and responses apis](https://platform.openai.com/docs/guides/migrate-to-responses).\n\n### built-in tools\n\nthe openai responses api provides a range of [built-in tools](https://platform.openai.com/docs/guides/tools) to enrich the model's response. toggle to **use responses api** if you want the model to have access to the following built-in tools:\n\n- **web search**: allows models to search the web for the latest information before generating a response.\n- **file search**: allow models to search your knowledgebase from previously uploaded files for relevant information before generating a response. refer to the [openai documentation](https://platform.openai.com/docs/guides/tools-file-search) for more information.\n- **code interpreter**: allows models to write and run python code in a sandboxed environment.\n\nuse with ai agent node\n\nbuilt-in tools are only supported when using the openai chat model node in combination with the ai agent node. built-in tools aren't available when using the openai chat model node in combination with a basic llm chain node, for example.\n\n## node options\n\nuse these options to further refine the node's behavior. the following options are available whether you use the responses api to generate model output or not.\n\n### frequency penalty\n\nuse this option to control the chances of the model repeating itself. higher values reduce the chance of the model repeating itself.\n\n### maximum number of tokens\n\nenter the maximum number of tokens used, which sets the completion length.\n\n### presence penalty\n\nuse this option to control the chances of the model talking about new topics. higher values increase the chance of the model talking about new topics.\n\n### sampling temperature\n\nuse this option to control the randomness of the sampling process. a higher temperature creates more diverse sampling, but increases the risk of hallucinations.\n\n### timeout\n\nenter the maximum request time in milliseconds.\n\n### max retries\n\nenter the maximum number of times to retry a request.\n\n### top p\n\nuse this option to set the probability the completion should use. use a lower value to ignore less probable options.\n\n## additional node options (responses api only)\n\nthe following, additional options are available when toggling to **use responses api**.\n\n### conversation id\n\nthe conversation that this response belongs to. input items and output items from this response are automatically added to this conversation after this response completes.\n\n### prompt cache key\n\nuse this key for caching similar requests to optimize cache hit rates.\n\n### safety identifier\n\napply an identifier to track users who may violate usage policies.\n\n### service tier\n\nselect the service tier that fits your needs: auto, flex, default, or priority.\n\n### metadata\n\na set of key-value pairs for storing structured information. you can attach up to 16 pairs to an object, which is useful for adding custom data that can be used for searching by the api or in the dashboard.\n\n### top logprobs\n\ndefine an integer between 0 and 20 specifying the number of most likely tokens to return at each token position, each with an associated log probability.\n\n### output format\n\nchoose a response format: text, json schema, or json object. use of json schema is recommended, if you want to receive data in json format.\n\n### prompt\n\nconfigure the prompt filled with a unique id, its version, and substitutable variables. prompts are configured through the openai dashboard.\n\n## templates and examples\n\n**ai agent chat**\n\nby n8n team\n\n[view template details](https://n8n.io/workflows/1954-ai-agent-chat/)\n\n**building your first whatsapp chatbot**\n\nby jimleuk\n\n[view template details](https://n8n.io/workflows/2465-building-your-first-whatsapp-chatbot/)\n\n**angie, personal ai assistant with telegram voice and text**\n\nby derek cheung\n\n[view template details](https://n8n.io/workflows/2462-angie-personal-ai-assistant-with-telegram-voice-and-text/)\n\n[browse openai chat model integration templates](https://n8n.io/integrations/openai-chat-model/), or [search all templates](https://n8n.io/workflows/)\n\n## related resources\n\nrefer to [langchains's openai documentation](https://js.langchain.com/docs/integrations/chat/openai/) for more information about the service.\n\nrefer to [openai documentation](https://platform.openai.com/docs/api-reference/responses/create) for more information about the parameters.\n\nview n8n's [advanced ai](../../../../../advanced-ai/) documentation.\n\n## common issues\n\nfor common questions or issues and suggested solutions, refer to [common issues](common-issues/).\n openai chat model node",
51566
- "importantTerms": [
51567
- "openai",
51568
- "model",
51569
- "chat",
51570
- "node",
51571
- "responses",
51572
- "this",
51573
- "https",
51574
- "with",
51575
- "response",
51576
- "tools",
51577
- "information",
51578
- "nodes",
51579
- "models",
51580
- "items",
51581
- "output",
51582
- "refer",
51583
- "name",
51584
- "json",
51585
- "built",
51586
- "search",
51587
- "options",
51588
- "agent",
51589
- "more",
51590
- "using",
51591
- "expression",
51592
- "number",
51593
- "input",
51594
- "from",
51595
- "your",
51596
- "conversation",
51597
- "documentation",
51598
- "docs",
51599
- "when",
51600
- "resolves",
51601
- "each",
51602
- "example",
51603
- "values",
51604
- "first",
51605
- "available",
51606
- "completions",
51607
- "that",
51608
- "platform",
51609
- "option",
51610
- "maximum",
51611
- "about",
51612
- "view",
51613
- "workflows",
51614
- "common",
51615
- "issues",
51616
- "parameters"
51617
- ]
51618
- }
51619
- },
51620
- {
51621
- "id": "page-0650",
51622
51496
  "title": "Common issues",
51623
51497
  "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatopenai/common-issues/index.md",
51624
51498
  "urlPath": "integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatopenai/common-issues/index.md",
@@ -51724,7 +51598,7 @@
51724
51598
  }
51725
51599
  },
51726
51600
  {
51727
- "id": "page-0651",
51601
+ "id": "page-0650",
51728
51602
  "title": "Ollama Model",
51729
51603
  "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmollama/index.md",
51730
51604
  "urlPath": "integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmollama/index.md",
@@ -51807,6 +51681,132 @@
51807
51681
  ]
51808
51682
  }
51809
51683
  },
51684
+ {
51685
+ "id": "page-0651",
51686
+ "title": "OpenAI Chat Model",
51687
+ "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatopenai/index.md",
51688
+ "urlPath": "integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatopenai/index.md",
51689
+ "category": "cluster-nodes",
51690
+ "subcategory": null,
51691
+ "nodeName": null,
51692
+ "nodeType": null,
51693
+ "content": {
51694
+ "markdown": "# OpenAI Chat Model node\n\nUse the OpenAI Chat Model node to use OpenAI's chat models with conversational [agents](../../../../../glossary/#ai-agent).\n\nOn this page, you'll find the node parameters for the OpenAI Chat Model node and links to more resources.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/openai/).\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 parameters\n\n### Model\n\nSelect the model to use to generate the completion.\n\nn8n dynamically loads models from OpenAI, and you'll only see the models available to your account.\n\n### Use Responses API\n\nOpenAI provides two endpoints for generating output from a model:\n\n- **Chat Completions**: The Chat Completions API endpoint generates a model response from a list of messages that comprise a conversation. The API requires the user to handle conversation state manually, for example by adding a [Simple Memory](../n8n-nodes-langchain.memorybufferwindow/) subnode. For new projects, OpenAI recommends to use the Responses API.\n- **Responses**: The Responses API is an agentic loop, allowing the model to call multiple built-in tools within the span of one API request. It also supports persistent conversations by passing a `conversation_id`.\n\nToggle to **Use Responses API** if you want the model to generate output using the Responses API. Otherwise, the OpenAI Chat Model node will default to using the Chat Completions API.\n\nRefer to the OpenAI documentation for a [comparison of the Chat Completions and Responses APIs](https://platform.openai.com/docs/guides/migrate-to-responses).\n\n### Built-in Tools\n\nThe OpenAI Responses API provides a range of [built-in tools](https://platform.openai.com/docs/guides/tools) to enrich the model's response. Toggle to **Use Responses API** if you want the model to have access to the following built-in tools:\n\n- **Web Search**: Allows models to search the web for the latest information before generating a response.\n- **File Search**: Allow models to search your knowledgebase from previously uploaded files for relevant information before generating a response. Refer to the [OpenAI documentation](https://platform.openai.com/docs/guides/tools-file-search) for more information.\n- **Code Interpreter**: Allows models to write and run Python code in a sandboxed environment.\n\nUse with AI Agent node\n\nBuilt-in tools are only supported when using the OpenAI Chat Model node in combination with the AI Agent node. Built-in tools aren't available when using the OpenAI Chat Model node in combination with a Basic LLM Chain node, for example.\n\n## Node options\n\nUse these options to further refine the node's behavior. The following options are available whether you use the Responses API to generate model output or not.\n\n### Frequency Penalty\n\nUse this option to control the chances of the model repeating itself. Higher values reduce the chance of the model repeating itself.\n\n### Maximum Number of Tokens\n\nEnter the maximum number of tokens used, which sets the completion length.\n\n### Presence Penalty\n\nUse this option to control the chances of the model talking about new topics. Higher values increase the chance of the model talking about new topics.\n\n### Sampling Temperature\n\nUse this option to control the randomness of the sampling process. A higher temperature creates more diverse sampling, but increases the risk of hallucinations.\n\n### Timeout\n\nEnter the maximum request time in milliseconds.\n\n### Max Retries\n\nEnter the maximum number of times to retry a request.\n\n### Top P\n\nUse this option to set the probability the completion should use. Use a lower value to ignore less probable options.\n\n## Additional node options (Responses API only)\n\nThe following, additional options are available when toggling to **Use Responses API**.\n\n### Conversation ID\n\nThe conversation that this response belongs to. Input items and output items from this response are automatically added to this conversation after this response completes.\n\n### Prompt Cache Key\n\nUse this key for caching similar requests to optimize cache hit rates.\n\n### Safety Identifier\n\nApply an identifier to track users who may violate usage policies.\n\n### Service Tier\n\nSelect the service tier that fits your needs: Auto, Flex, Default, or Priority.\n\n### Metadata\n\nA set of key-value pairs for storing structured information. You can attach up to 16 pairs to an object, which is useful for adding custom data that can be used for searching by the API or in the dashboard.\n\n### Top Logprobs\n\nDefine an integer between 0 and 20 specifying the number of most likely tokens to return at each token position, each with an associated log probability.\n\n### Output Format\n\nChoose a response format: Text, JSON Schema, or JSON Object. Use of JSON Schema is recommended, if you want to receive data in JSON format.\n\n### Prompt\n\nConfigure the prompt filled with a unique ID, its version, and substitutable variables. Prompts are configured through the OpenAI dashboard.\n\n## Templates and examples\n\n**AI agent chat**\n\nby n8n Team\n\n[View template details](https://n8n.io/workflows/1954-ai-agent-chat/)\n\n**Building Your First WhatsApp Chatbot**\n\nby Jimleuk\n\n[View template details](https://n8n.io/workflows/2465-building-your-first-whatsapp-chatbot/)\n\n**Angie, personal AI assistant with Telegram voice and text**\n\nby Derek Cheung\n\n[View template details](https://n8n.io/workflows/2462-angie-personal-ai-assistant-with-telegram-voice-and-text/)\n\n[Browse OpenAI Chat Model integration templates](https://n8n.io/integrations/openai-chat-model/), or [search all templates](https://n8n.io/workflows/)\n\n## Related resources\n\nRefer to [LangChains's OpenAI documentation](https://js.langchain.com/docs/integrations/chat/openai/) for more information about the service.\n\nRefer to [OpenAI documentation](https://platform.openai.com/docs/api-reference/responses/create) for more information about the parameters.\n\nView n8n's [Advanced AI](../../../../../advanced-ai/) documentation.\n\n## Common issues\n\nFor common questions or issues and suggested solutions, refer to [Common issues](common-issues/).\n",
51695
+ "excerpt": "# OpenAI Chat Model node Use the OpenAI Chat Model node to use OpenAI's chat models with conversational [agents](../../../../../glossary/#ai-agent). On this page, you'll find the node parameters for the OpenAI Chat Model node and links to more resources. Credentials You can find authentication information for this node [here](../../../credentials/openai/). Parameter resolution in sub-nodes Sub-nodes behave differently to other nodes when processing multiple items using an expression. Most...",
51696
+ "sections": [
51697
+ {
51698
+ "title": "OpenAI Chat Model node",
51699
+ "level": 1,
51700
+ "content": "Use the OpenAI Chat Model node to use OpenAI's chat models with conversational [agents](../../../../../glossary/#ai-agent).\n\nOn this page, you'll find the node parameters for the OpenAI Chat Model node and links to more resources.\n\nCredentials\n\nYou can find authentication information for this node [here](../../../credentials/openai/).\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."
51701
+ }
51702
+ ]
51703
+ },
51704
+ "metadata": {
51705
+ "keywords": [
51706
+ "openai",
51707
+ "chat",
51708
+ "model",
51709
+ "node",
51710
+ "parameters",
51711
+ "responses",
51712
+ "built",
51713
+ "tools",
51714
+ "options",
51715
+ "frequency",
51716
+ "penalty",
51717
+ "maximum",
51718
+ "number",
51719
+ "tokens",
51720
+ "presence",
51721
+ "sampling",
51722
+ "temperature",
51723
+ "timeout",
51724
+ "retries",
51725
+ "additional",
51726
+ "(responses",
51727
+ "only)",
51728
+ "conversation",
51729
+ "prompt",
51730
+ "cache",
51731
+ "safety",
51732
+ "identifier",
51733
+ "service",
51734
+ "tier",
51735
+ "metadata",
51736
+ "logprobs",
51737
+ "output",
51738
+ "format",
51739
+ "templates",
51740
+ "examples",
51741
+ "related",
51742
+ "resources",
51743
+ "common",
51744
+ "issues"
51745
+ ],
51746
+ "useCases": [],
51747
+ "operations": [],
51748
+ "codeExamples": 0,
51749
+ "complexity": "intermediate",
51750
+ "readingTime": "5 min",
51751
+ "contentLength": 6718,
51752
+ "relatedPages": []
51753
+ },
51754
+ "searchIndex": {
51755
+ "fullText": "openai chat model # openai chat model node\n\nuse the openai chat model node to use openai's chat models with conversational [agents](../../../../../glossary/#ai-agent).\n\non this page, you'll find the node parameters for the openai chat model node and links to more resources.\n\ncredentials\n\nyou can find authentication information for this node [here](../../../credentials/openai/).\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 parameters\n\n### model\n\nselect the model to use to generate the completion.\n\nn8n dynamically loads models from openai, and you'll only see the models available to your account.\n\n### use responses api\n\nopenai provides two endpoints for generating output from a model:\n\n- **chat completions**: the chat completions api endpoint generates a model response from a list of messages that comprise a conversation. the api requires the user to handle conversation state manually, for example by adding a [simple memory](../n8n-nodes-langchain.memorybufferwindow/) subnode. for new projects, openai recommends to use the responses api.\n- **responses**: the responses api is an agentic loop, allowing the model to call multiple built-in tools within the span of one api request. it also supports persistent conversations by passing a `conversation_id`.\n\ntoggle to **use responses api** if you want the model to generate output using the responses api. otherwise, the openai chat model node will default to using the chat completions api.\n\nrefer to the openai documentation for a [comparison of the chat completions and responses apis](https://platform.openai.com/docs/guides/migrate-to-responses).\n\n### built-in tools\n\nthe openai responses api provides a range of [built-in tools](https://platform.openai.com/docs/guides/tools) to enrich the model's response. toggle to **use responses api** if you want the model to have access to the following built-in tools:\n\n- **web search**: allows models to search the web for the latest information before generating a response.\n- **file search**: allow models to search your knowledgebase from previously uploaded files for relevant information before generating a response. refer to the [openai documentation](https://platform.openai.com/docs/guides/tools-file-search) for more information.\n- **code interpreter**: allows models to write and run python code in a sandboxed environment.\n\nuse with ai agent node\n\nbuilt-in tools are only supported when using the openai chat model node in combination with the ai agent node. built-in tools aren't available when using the openai chat model node in combination with a basic llm chain node, for example.\n\n## node options\n\nuse these options to further refine the node's behavior. the following options are available whether you use the responses api to generate model output or not.\n\n### frequency penalty\n\nuse this option to control the chances of the model repeating itself. higher values reduce the chance of the model repeating itself.\n\n### maximum number of tokens\n\nenter the maximum number of tokens used, which sets the completion length.\n\n### presence penalty\n\nuse this option to control the chances of the model talking about new topics. higher values increase the chance of the model talking about new topics.\n\n### sampling temperature\n\nuse this option to control the randomness of the sampling process. a higher temperature creates more diverse sampling, but increases the risk of hallucinations.\n\n### timeout\n\nenter the maximum request time in milliseconds.\n\n### max retries\n\nenter the maximum number of times to retry a request.\n\n### top p\n\nuse this option to set the probability the completion should use. use a lower value to ignore less probable options.\n\n## additional node options (responses api only)\n\nthe following, additional options are available when toggling to **use responses api**.\n\n### conversation id\n\nthe conversation that this response belongs to. input items and output items from this response are automatically added to this conversation after this response completes.\n\n### prompt cache key\n\nuse this key for caching similar requests to optimize cache hit rates.\n\n### safety identifier\n\napply an identifier to track users who may violate usage policies.\n\n### service tier\n\nselect the service tier that fits your needs: auto, flex, default, or priority.\n\n### metadata\n\na set of key-value pairs for storing structured information. you can attach up to 16 pairs to an object, which is useful for adding custom data that can be used for searching by the api or in the dashboard.\n\n### top logprobs\n\ndefine an integer between 0 and 20 specifying the number of most likely tokens to return at each token position, each with an associated log probability.\n\n### output format\n\nchoose a response format: text, json schema, or json object. use of json schema is recommended, if you want to receive data in json format.\n\n### prompt\n\nconfigure the prompt filled with a unique id, its version, and substitutable variables. prompts are configured through the openai dashboard.\n\n## templates and examples\n\n**ai agent chat**\n\nby n8n team\n\n[view template details](https://n8n.io/workflows/1954-ai-agent-chat/)\n\n**building your first whatsapp chatbot**\n\nby jimleuk\n\n[view template details](https://n8n.io/workflows/2465-building-your-first-whatsapp-chatbot/)\n\n**angie, personal ai assistant with telegram voice and text**\n\nby derek cheung\n\n[view template details](https://n8n.io/workflows/2462-angie-personal-ai-assistant-with-telegram-voice-and-text/)\n\n[browse openai chat model integration templates](https://n8n.io/integrations/openai-chat-model/), or [search all templates](https://n8n.io/workflows/)\n\n## related resources\n\nrefer to [langchains's openai documentation](https://js.langchain.com/docs/integrations/chat/openai/) for more information about the service.\n\nrefer to [openai documentation](https://platform.openai.com/docs/api-reference/responses/create) for more information about the parameters.\n\nview n8n's [advanced ai](../../../../../advanced-ai/) documentation.\n\n## common issues\n\nfor common questions or issues and suggested solutions, refer to [common issues](common-issues/).\n openai chat model node",
51756
+ "importantTerms": [
51757
+ "openai",
51758
+ "model",
51759
+ "chat",
51760
+ "node",
51761
+ "responses",
51762
+ "this",
51763
+ "https",
51764
+ "with",
51765
+ "response",
51766
+ "tools",
51767
+ "information",
51768
+ "nodes",
51769
+ "models",
51770
+ "items",
51771
+ "output",
51772
+ "refer",
51773
+ "name",
51774
+ "json",
51775
+ "built",
51776
+ "search",
51777
+ "options",
51778
+ "agent",
51779
+ "more",
51780
+ "using",
51781
+ "expression",
51782
+ "number",
51783
+ "input",
51784
+ "from",
51785
+ "your",
51786
+ "conversation",
51787
+ "documentation",
51788
+ "docs",
51789
+ "when",
51790
+ "resolves",
51791
+ "each",
51792
+ "example",
51793
+ "values",
51794
+ "first",
51795
+ "available",
51796
+ "completions",
51797
+ "that",
51798
+ "platform",
51799
+ "option",
51800
+ "maximum",
51801
+ "about",
51802
+ "view",
51803
+ "workflows",
51804
+ "common",
51805
+ "issues",
51806
+ "parameters"
51807
+ ]
51808
+ }
51809
+ },
51810
51810
  {
51811
51811
  "id": "page-0652",
51812
51812
  "title": "Common issues",
@@ -96224,7 +96224,7 @@
96224
96224
  "page-0542",
96225
96225
  "page-0546",
96226
96226
  "page-0638",
96227
- "page-0650",
96227
+ "page-0649",
96228
96228
  "page-0681",
96229
96229
  "page-0725",
96230
96230
  "page-0726",
@@ -96487,7 +96487,7 @@
96487
96487
  "page-0519",
96488
96488
  "page-0538",
96489
96489
  "page-0546",
96490
- "page-0650",
96490
+ "page-0649",
96491
96491
  "page-0656",
96492
96492
  "page-0665",
96493
96493
  "page-0675",
@@ -97790,7 +97790,7 @@
97790
97790
  "page-0543",
97791
97791
  "page-0546",
97792
97792
  "page-0566",
97793
- "page-0650",
97793
+ "page-0649",
97794
97794
  "page-0726",
97795
97795
  "page-1047",
97796
97796
  "page-1048",
@@ -99686,7 +99686,7 @@
99686
99686
  "page-0567",
99687
99687
  "page-0568",
99688
99688
  "page-0647",
99689
- "page-0651",
99689
+ "page-0650",
99690
99690
  "page-0922",
99691
99691
  "page-1041",
99692
99692
  "page-1223",
@@ -100110,7 +100110,7 @@
100110
100110
  "page-0640",
100111
100111
  "page-0641",
100112
100112
  "page-0647",
100113
- "page-0649",
100113
+ "page-0650",
100114
100114
  "page-0651",
100115
100115
  "page-0659",
100116
100116
  "page-0661",
@@ -101055,7 +101055,7 @@
101055
101055
  "page-0647",
101056
101056
  "page-0648",
101057
101057
  "page-0649",
101058
- "page-0650",
101058
+ "page-0651",
101059
101059
  "page-0713",
101060
101060
  "page-0734",
101061
101061
  "page-0735",
@@ -101804,7 +101804,7 @@
101804
101804
  "page-0645",
101805
101805
  "page-0646",
101806
101806
  "page-0647",
101807
- "page-0649",
101807
+ "page-0650",
101808
101808
  "page-0651",
101809
101809
  "page-0653",
101810
101810
  "page-0655",
@@ -102357,7 +102357,7 @@
102357
102357
  "page-0645",
102358
102358
  "page-0646",
102359
102359
  "page-0647",
102360
- "page-0649",
102360
+ "page-0650",
102361
102361
  "page-0651",
102362
102362
  "page-0653",
102363
102363
  "page-0655",
@@ -103113,7 +103113,7 @@
103113
103113
  "page-0645",
103114
103114
  "page-0646",
103115
103115
  "page-0647",
103116
- "page-0649",
103116
+ "page-0650",
103117
103117
  "page-0651",
103118
103118
  "page-0653",
103119
103119
  "page-0655",
@@ -103371,7 +103371,7 @@
103371
103371
  "page-0579",
103372
103372
  "page-0582",
103373
103373
  "page-0635",
103374
- "page-0649",
103374
+ "page-0651",
103375
103375
  "page-1226"
103376
103376
  ],
103377
103377
  "step": [
@@ -103447,7 +103447,7 @@
103447
103447
  "page-0578",
103448
103448
  "page-0579",
103449
103449
  "page-0581",
103450
- "page-0649"
103450
+ "page-0651"
103451
103451
  ],
103452
103452
  "best": [
103453
103453
  "page-0020",
@@ -104274,7 +104274,7 @@
104274
104274
  "page-0645",
104275
104275
  "page-0646",
104276
104276
  "page-0647",
104277
- "page-0649",
104277
+ "page-0650",
104278
104278
  "page-0651",
104279
104279
  "page-0653",
104280
104280
  "page-0655",
@@ -104669,7 +104669,7 @@
104669
104669
  "page-0579",
104670
104670
  "page-0625",
104671
104671
  "page-0626",
104672
- "page-0649",
104672
+ "page-0651",
104673
104673
  "page-0655",
104674
104674
  "page-0656",
104675
104675
  "page-0661",
@@ -104746,7 +104746,7 @@
104746
104746
  "page-0567",
104747
104747
  "page-0568",
104748
104748
  "page-0647",
104749
- "page-0651",
104749
+ "page-0650",
104750
104750
  "page-0734",
104751
104751
  "page-0813",
104752
104752
  "page-0922",
@@ -105261,7 +105261,7 @@
105261
105261
  "page-0241",
105262
105262
  "page-0550",
105263
105263
  "page-0556",
105264
- "page-0649",
105264
+ "page-0651",
105265
105265
  "page-0717",
105266
105266
  "page-1182",
105267
105267
  "page-1225",
@@ -105348,7 +105348,7 @@
105348
105348
  "page-0508",
105349
105349
  "page-0542",
105350
105350
  "page-0546",
105351
- "page-0650",
105351
+ "page-0649",
105352
105352
  "page-0670",
105353
105353
  "page-0702",
105354
105354
  "page-0714",
@@ -106341,7 +106341,7 @@
106341
106341
  "page-0424",
106342
106342
  "page-0504",
106343
106343
  "page-0546",
106344
- "page-0650",
106344
+ "page-0649",
106345
106345
  "page-0717",
106346
106346
  "page-0726"
106347
106347
  ],
@@ -106384,7 +106384,7 @@
106384
106384
  "page-0577",
106385
106385
  "page-0578",
106386
106386
  "page-0579",
106387
- "page-0649",
106387
+ "page-0651",
106388
106388
  "page-1177",
106389
106389
  "page-1180"
106390
106390
  ],
@@ -106668,7 +106668,7 @@
106668
106668
  "page-0611",
106669
106669
  "page-0612",
106670
106670
  "page-0624",
106671
- "page-0649",
106671
+ "page-0651",
106672
106672
  "page-0676",
106673
106673
  "page-0683",
106674
106674
  "page-0708",
@@ -106904,7 +106904,7 @@
106904
106904
  "page-0224",
106905
106905
  "page-0558",
106906
106906
  "page-0648",
106907
- "page-0650",
106907
+ "page-0649",
106908
106908
  "page-0652",
106909
106909
  "page-0656",
106910
106910
  "page-1223"
@@ -108430,7 +108430,7 @@
108430
108430
  "page-0569",
108431
108431
  "page-0570",
108432
108432
  "page-0571",
108433
- "page-0650",
108433
+ "page-0649",
108434
108434
  "page-0691",
108435
108435
  "page-0726",
108436
108436
  "page-1187"
@@ -109089,7 +109089,7 @@
109089
109089
  "page-0610",
109090
109090
  "page-0611",
109091
109091
  "page-0612",
109092
- "page-0649",
109092
+ "page-0651",
109093
109093
  "page-0725",
109094
109094
  "page-1266"
109095
109095
  ],
@@ -109173,7 +109173,7 @@
109173
109173
  "page-0504",
109174
109174
  "page-0546",
109175
109175
  "page-0649",
109176
- "page-0650",
109176
+ "page-0651",
109177
109177
  "page-0726",
109178
109178
  "page-0795",
109179
109179
  "page-0849",
@@ -110122,7 +110122,7 @@
110122
110122
  "page-0610",
110123
110123
  "page-0611",
110124
110124
  "page-0612",
110125
- "page-0649"
110125
+ "page-0651"
110126
110126
  ],
110127
110127
  "kept": [
110128
110128
  "page-0211"
@@ -110171,7 +110171,7 @@
110171
110171
  "page-0611",
110172
110172
  "page-0612",
110173
110173
  "page-0615",
110174
- "page-0649"
110174
+ "page-0651"
110175
110175
  ],
110176
110176
  "traces": [
110177
110177
  "page-0213"
@@ -110312,7 +110312,7 @@
110312
110312
  "page-0610",
110313
110313
  "page-0611",
110314
110314
  "page-0612",
110315
- "page-0649",
110315
+ "page-0651",
110316
110316
  "page-0656",
110317
110317
  "page-0665",
110318
110318
  "page-0668",
@@ -110514,7 +110514,7 @@
110514
110514
  "page-0567",
110515
110515
  "page-0568",
110516
110516
  "page-0647",
110517
- "page-0651"
110517
+ "page-0650"
110518
110518
  ],
110519
110519
  "what’s": [
110520
110520
  "page-0237"
@@ -112310,7 +112310,7 @@
112310
112310
  "receiving": [
112311
112311
  "page-0504",
112312
112312
  "page-0546",
112313
- "page-0650",
112313
+ "page-0649",
112314
112314
  "page-0726"
112315
112315
  ],
112316
112316
  "discord": [
@@ -112370,7 +112370,7 @@
112370
112370
  "page-0508",
112371
112371
  "page-0542",
112372
112372
  "page-0546",
112373
- "page-0650",
112373
+ "page-0649",
112374
112374
  "page-0726"
112375
112375
  ],
112376
112376
  "draft": [
@@ -112615,7 +112615,7 @@
112615
112615
  "additional": [
112616
112616
  "page-0536",
112617
112617
  "page-0540",
112618
- "page-0649",
112618
+ "page-0651",
112619
112619
  "page-1062",
112620
112620
  "page-1197",
112621
112621
  "page-1226"
@@ -112697,7 +112697,7 @@
112697
112697
  "page-0596",
112698
112698
  "page-0600",
112699
112699
  "page-0649",
112700
- "page-0650",
112700
+ "page-0651",
112701
112701
  "page-0756",
112702
112702
  "page-0925",
112703
112703
  "page-1226"
@@ -112715,11 +112715,11 @@
112715
112715
  ],
112716
112716
  "insufficient": [
112717
112717
  "page-0546",
112718
- "page-0650"
112718
+ "page-0649"
112719
112719
  ],
112720
112720
  "quota": [
112721
112721
  "page-0546",
112722
- "page-0650"
112722
+ "page-0649"
112723
112723
  ],
112724
112724
  "referenced": [
112725
112725
  "page-0546"
@@ -112729,7 +112729,7 @@
112729
112729
  ],
112730
112730
  "conversation": [
112731
112731
  "page-0547",
112732
- "page-0649"
112732
+ "page-0651"
112733
112733
  ],
112734
112734
  "classify": [
112735
112735
  "page-0550"
@@ -112809,7 +112809,7 @@
112809
112809
  "page-0611",
112810
112810
  "page-0612",
112811
112811
  "page-0615",
112812
- "page-0649"
112812
+ "page-0651"
112813
112813
  ],
112814
112814
  "iterative": [
112815
112815
  "page-0558"
@@ -113008,7 +113008,7 @@
113008
113008
  ],
113009
113009
  "safety": [
113010
113010
  "page-0562",
113011
- "page-0649"
113011
+ "page-0651"
113012
113012
  ],
113013
113013
  "milvus": [
113014
113014
  "page-0563",
@@ -113167,7 +113167,7 @@
113167
113167
  ],
113168
113168
  "responses": [
113169
113169
  "page-0581",
113170
- "page-0649",
113170
+ "page-0651",
113171
113171
  "page-0696",
113172
113172
  "page-0731",
113173
113173
  "page-1205",
@@ -113217,7 +113217,7 @@
113217
113217
  "page-0595",
113218
113218
  "page-0647",
113219
113219
  "page-0648",
113220
- "page-0651",
113220
+ "page-0650",
113221
113221
  "page-0652",
113222
113222
  "page-0922",
113223
113223
  "page-1226"
@@ -113233,7 +113233,7 @@
113233
113233
  "page-0611",
113234
113234
  "page-0612",
113235
113235
  "page-0615",
113236
- "page-0649"
113236
+ "page-0651"
113237
113237
  ],
113238
113238
  "penalty": [
113239
113239
  "page-0602",
@@ -113242,7 +113242,7 @@
113242
113242
  "page-0611",
113243
113243
  "page-0612",
113244
113244
  "page-0615",
113245
- "page-0649"
113245
+ "page-0651"
113246
113246
  ],
113247
113247
  "tokens": [
113248
113248
  "page-0602",
@@ -113251,7 +113251,7 @@
113251
113251
  "page-0611",
113252
113252
  "page-0612",
113253
113253
  "page-0615",
113254
- "page-0649",
113254
+ "page-0651",
113255
113255
  "page-0886"
113256
113256
  ],
113257
113257
  "presence": [
@@ -113261,14 +113261,14 @@
113261
113261
  "page-0611",
113262
113262
  "page-0612",
113263
113263
  "page-0615",
113264
- "page-0649"
113264
+ "page-0651"
113265
113265
  ],
113266
113266
  "retries": [
113267
113267
  "page-0602",
113268
113268
  "page-0610",
113269
113269
  "page-0611",
113270
113270
  "page-0612",
113271
- "page-0649"
113271
+ "page-0651"
113272
113272
  ],
113273
113273
  "groq": [
113274
113274
  "page-0605",
@@ -113410,22 +113410,22 @@
113410
113410
  "page-0652"
113411
113411
  ],
113412
113412
  "(responses": [
113413
- "page-0649"
113413
+ "page-0651"
113414
113414
  ],
113415
113415
  "only)": [
113416
- "page-0649"
113416
+ "page-0651"
113417
113417
  ],
113418
113418
  "cache": [
113419
- "page-0649"
113419
+ "page-0651"
113420
113420
  ],
113421
113421
  "identifier": [
113422
- "page-0649"
113422
+ "page-0651"
113423
113423
  ],
113424
113424
  "tier": [
113425
- "page-0649"
113425
+ "page-0651"
113426
113426
  ],
113427
113427
  "logprobs": [
113428
- "page-0649"
113428
+ "page-0651"
113429
113429
  ],
113430
113430
  "intermediary": [
113431
113431
  "page-0656"