mirror of
https://github.com/n8n-io/n8n-docs.git
synced 2025-11-20 17:48:34 +00:00
Merge branch 'main' into DOC-921
This commit is contained in:
commit
b7920ba3f3
1
.gitignore
vendored
1
.gitignore
vendored
@ -12,3 +12,4 @@ yarn.lock
|
||||
venv
|
||||
env
|
||||
site
|
||||
__pycache__/
|
||||
|
||||
@ -6,38 +6,9 @@
|
||||
<script>
|
||||
// Create an object containing all your redirects
|
||||
const redirects = {
|
||||
// The big key concepts split
|
||||
"/getting-started/key-concepts/": "/flow-logic/",
|
||||
"/getting-started/key-concepts/#expression": "/code-examples/expressions/",
|
||||
"/getting-started/key-concepts/#item": "/data/data-structure/",
|
||||
"/getting-started/key-concepts/#function": "/data/code/",
|
||||
"/getting-started/key-concepts/#data": "/data/",
|
||||
"/getting-started/key-concepts/#data-structure": "/data/data-structure/",
|
||||
"/key-concepts/#data-flow": "/data/data-structure/",
|
||||
"/key-concepts/#error-workflow": "/flow-logic/error-handling/error-workflows/",
|
||||
"/key-concepts/#security": "/hosting/authentication/",
|
||||
// Other IA redirects that seemed essential
|
||||
"/getting-started/whats-next.html": "/quickstart/#whats-next",
|
||||
"/getting-started/installation/advanced/server-setup.html": "/hosting/installation/server-setups/",
|
||||
"/getting-started/installation/advanced/server-setup.html#server-setup": "/hosting/installation/server-setups/",
|
||||
"/getting-started/installation/advanced/server-setup.html#docker-compose-example": "/hosting/installation/server-setups/docker-compose/",
|
||||
"/reference/faq.html#integrations": "/integrations/#requesting-new-integrations-or-integration-features",
|
||||
"/reference/faq.html": "/reference/license/",
|
||||
"/reference/faq.html#license": "/reference/license/",
|
||||
"/reference/faq.html#n8n-cloud": "/choose-n8n/cloud/",
|
||||
"/nodes/expressions.html#expressions": "/code-examples/expressions/",
|
||||
// High traffic anchor tag landing pages (if not covered by the above or by /docs/_redirects)
|
||||
"/#what-is-n8n": "/",
|
||||
"/getting-started/tutorials.html#blogposts": "https://n8n.io/blog/tag/tutorial/",
|
||||
"/#/server-setup": "/hosting/installation/server-setups/",
|
||||
"/code-examples/expressions/expressions.html": "/code-examples/expressions/",
|
||||
// Editor UI split
|
||||
"/editor-ui/workflows": "/workflows/",
|
||||
"/editor-ui/credentials": "/credentials/",
|
||||
"/editor-ui/executions": "/workflows/executions/",
|
||||
"/editor-ui/admin-panel": "/hosting/updating/cloud/",
|
||||
// New code node
|
||||
"/hosting/configuration/#use-built-in-and-external-modules-in-function-nodes": "/hosting/configuration/#use-built-in-and-external-modules-in-the-code-node"
|
||||
|
||||
|
||||
// Use _redirects file to set redirects
|
||||
|
||||
};
|
||||
|
||||
|
||||
@ -32,7 +32,11 @@
|
||||
https://plausible.io/docs/script-extensions?ref=ryansechrest.com#all-our-script-extensions
|
||||
-->
|
||||
<script defer {% if page.meta and page.meta.contentType %}event-content_type="{{ page.meta.contentType }}"{% endif %} data-domain="docs.n8n.io" src="https://plausible.io/js/script.file-downloads.outbound-links.pageview-props.js"></script>
|
||||
|
||||
|
||||
<!-- n8n Workflow Preview Service -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/@webcomponents/webcomponentsjs@2.0.0/webcomponents-loader.js"></script>
|
||||
<script src="https://www.unpkg.com/lit@2.0.0-rc.2/polyfill-support.js"></script>
|
||||
<script type="module" src="https://cdn.jsdelivr.net/npm/@n8n_io/n8n-demo-component/n8n-demo.bundled.js"></script>
|
||||
|
||||
|
||||
{% endblock %}
|
||||
@ -147,4 +151,6 @@ https://plausible.io/docs/script-extensions?ref=ryansechrest.com#all-our-script-
|
||||
plausible("Video: Ended", { props: { page: pagePath, video: videoPath } });
|
||||
}
|
||||
</script>
|
||||
|
||||
<!---->
|
||||
{% endblock %}
|
||||
|
||||
61
_overrides/partials/footer.html
Normal file
61
_overrides/partials/footer.html
Normal file
@ -0,0 +1,61 @@
|
||||
<footer class="md-footer">
|
||||
{% if "navigation.footer" in features %}
|
||||
{% if page.previous_page or page.next_page %}
|
||||
{% if page.meta and page.meta.hide %}
|
||||
{% set hidden = "hidden" if "footer" in page.meta.hide %}
|
||||
{% endif %}
|
||||
<nav class="md-footer__inner md-grid" aria-label="{{ lang.t('footer') }}" {{ hidden }}>
|
||||
{% if page.previous_page %}
|
||||
{% set direction = lang.t("footer.previous") %}
|
||||
<a href="{{ page.previous_page.url | url }}" class="md-footer__link md-footer__link--prev" aria-label="{{ direction }}: {{ page.previous_page.title | e }}">
|
||||
<div class="md-footer__button md-icon">
|
||||
{% set icon = config.theme.icon.previous or "material/arrow-left" %}
|
||||
{% include ".icons/" ~ icon ~ ".svg" %}
|
||||
</div>
|
||||
<div class="md-footer__title">
|
||||
<span class="md-footer__direction">
|
||||
{{ direction }}
|
||||
</span>
|
||||
<div class="md-ellipsis">
|
||||
{{ page.previous_page.title }}
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
{% endif %}
|
||||
{% if page.next_page %}
|
||||
{% set direction = lang.t("footer.next") %}
|
||||
<a href="{{ page.next_page.url | url }}" class="md-footer__link md-footer__link--next" aria-label="{{ direction }}: {{ page.next_page.title | e }}">
|
||||
<div class="md-footer__title">
|
||||
<span class="md-footer__direction">
|
||||
{{ direction }}
|
||||
</span>
|
||||
<div class="md-ellipsis">
|
||||
{{ page.next_page.title }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="md-footer__button md-icon">
|
||||
{% set icon = config.theme.icon.next or "material/arrow-right" %}
|
||||
{% include ".icons/" ~ icon ~ ".svg" %}
|
||||
</div>
|
||||
</a>
|
||||
{% endif %}
|
||||
</nav>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
<div class="md-footer-meta md-typeset">
|
||||
<div class="md-footer-meta__inner md-grid">
|
||||
<!-- n8n CUSTOM: More links to the main website -->
|
||||
<div class="n8n-footer-links">
|
||||
<a href="https://n8n.io/pricing/" target="_blank">Pricing ↗</a>
|
||||
<a href="https://n8n.io/workflows/" target="_blank">Workflow templates ↗</a>
|
||||
<a href="https://n8n.io/features/" target="_blank">Feature highlights ↗</a>
|
||||
<a href="https://n8n.io/ai/" target="_blank">AI highlights ↗</a>
|
||||
</div>
|
||||
{% include "partials/copyright.html" %}
|
||||
{% if config.extra.social %}
|
||||
{% include "partials/social.html" %}
|
||||
{% endif %}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
@ -2,5 +2,5 @@
|
||||
If you have issues with expressions in 1.9.0:
|
||||
|
||||
* Please report the issue on the [forums](https://community.n8n.io/){:target=_blank .external-link}.
|
||||
* Self-hosted users can switch back to RiotTmpl: set `N8N_EXPRESSION_EVALUATOR` to `tmpl`. Refer to [Environment variables](/hosting/configuration/) for more information on configuring self-hosted n8n.
|
||||
* Self-hosted users can switch back to RiotTmpl: set `N8N_EXPRESSION_EVALUATOR` to `tmpl`. Refer to [Environment variables](/hosting/configuration/environment-variables/) for more information on configuring self-hosted n8n.
|
||||
///
|
||||
|
||||
@ -39,7 +39,7 @@ The Code node supports:
|
||||
|
||||
### External libraries
|
||||
|
||||
If you self-host n8n, you can import and use built-in and external npm modules in the Code node. To learn how to enable external modules, refer the [Configuration](/hosting/configuration/#use-built-in-and-external-modules-in-the-code-node) guide.
|
||||
If you self-host n8n, you can import and use built-in and external npm modules in the Code node. To learn how to enable external modules, refer to the [Enable modules in Code node](/hosting/configuration/configuration-examples/modules-in-code-node/) guide.
|
||||
|
||||
If you use n8n Cloud, you can't import external npm modules. n8n makes two modules available for you:
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
/// note | Latest and Next versions
|
||||
n8n releases a new minor version most weeks. The `latest` version is for production use. `next` is the most recent release. You should treat `next` as a beta: it may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12){:target=_blank .external-link}.
|
||||
|
||||
Current `latest`: 1.47.1
|
||||
Current `next`: 1.48.0
|
||||
Current `latest`: 1.47.3
|
||||
Current `next`: 1.49.0
|
||||
///
|
||||
|
||||
@ -1,2 +1,2 @@
|
||||
* Learn more about [configuring](/hosting/configuration/) and [scaling](/hosting/scaling/) n8n.
|
||||
* Learn more about [configuring](/hosting/configuration/environment-variables/) and [scaling](/hosting/scaling/overview) n8n.
|
||||
* Or explore using n8n: try the [Quickstarts](/try-it-out/).
|
||||
|
||||
@ -80,4 +80,4 @@ delete staticData.lastExecution;
|
||||
|
||||
## External libraries
|
||||
|
||||
You can import and use built-in and external npm modules in the Function Item node. To learn how to enable external moduels, refer the [Configuration](/hosting/configuration/) guide.
|
||||
You can import and use built-in and external npm modules in the Function Item node. To learn how to enable external modules, refer the [Configuration](/hosting/configuration/environment-variables/) guide.
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
title: n8n v1.0 migration guide
|
||||
description: What's new in version 1
|
||||
contentType: reference
|
||||
@ -42,7 +43,7 @@ n8n has removed support for MySQL and MariaDB as storage backends for n8n. These
|
||||
|
||||
Previously, you could use the `EXECUTIONS_PROCESS` environment variable to specify whether executions should run in the `main` process or in their `own` processes. This option and `own` mode are now deprecated and will be removed in a future version of n8n. This is because it led to increased code complexity while offering marginal benefits. Starting from n8n 1.0, `main` will be the new default.
|
||||
|
||||
Note that executions start much faster in `main` mode than in `own` mode. However, if a workflow consumes more memory than is available, it might crash the entire n8n application instead of just the worker thread. To mitigate this, make sure to allocate enough system resources or configure [queue mode](https://docs.n8n.io/hosting/scaling/queue-mode/) to distribute executions among multiple workers.
|
||||
Note that executions start much faster in `main` mode than in `own` mode. However, if a workflow consumes more memory than is available, it might crash the entire n8n application instead of just the worker thread. To mitigate this, make sure to allocate enough system resources or configure [queue mode](/hosting/scaling/queue-mode/) to distribute executions among multiple workers.
|
||||
|
||||
[PR #6196](https://github.com/n8n-io/n8n/pull/6196){:target=_blank .external link}
|
||||
|
||||
@ -121,7 +122,7 @@ If you build custom nodes, refer to [HTTP request helpers](/integrations/creatin
|
||||
|
||||
### Removed WEBHOOK_TUNNEL_URL
|
||||
|
||||
As of version 0.227.0, n8n has renamed the `WEBHOOK_TUNNEL_URL` configuration option to `WEBHOOK_URL`. In n8n 1.0, `WEBHOOK_TUNNEL_URL` has been removed. Update your setup to reflect the new name. For more information about this configuration option, refer to [the docs](/hosting/configuration/configuration-methods/#webhook-url).
|
||||
As of version 0.227.0, n8n has renamed the `WEBHOOK_TUNNEL_URL` configuration option to `WEBHOOK_URL`. In n8n 1.0, `WEBHOOK_TUNNEL_URL` has been removed. Update your setup to reflect the new name. For more information about this configuration option, refer to [the docs](/hosting/configuration/configuration-examples/webhook-url/).
|
||||
|
||||
[PR #1408](https://github.com/n8n-io/n8n/pull/1408){:target=_blank .external link}
|
||||
|
||||
|
||||
@ -149,6 +149,24 @@
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
/* additional links in footer */
|
||||
|
||||
.n8n-footer-links {
|
||||
border-bottom: 1px solid var(--md-footer-fg-color--light);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: auto .6rem;
|
||||
padding: .4rem 0;
|
||||
}
|
||||
|
||||
.n8n-footer-links > strong {
|
||||
color: var(--md-footer-fg-color--light);
|
||||
}
|
||||
|
||||
.md-footer-meta__inner {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
/* preserve the logo and site title on page scroll */
|
||||
|
||||
.md-header__topic:first-child {
|
||||
|
||||
28
docs/_extra/css/templates-widget.css
Normal file
28
docs/_extra/css/templates-widget.css
Normal file
@ -0,0 +1,28 @@
|
||||
.n8n-templates-widget {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.n8n-templates-widget-template {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border: .05rem solid var(--md-default-fg-color--lightest);
|
||||
border-radius: 6px;
|
||||
margin: .4em;
|
||||
padding: 12px 16px;
|
||||
}
|
||||
|
||||
.n8n-templates-name {
|
||||
margin-top: 0px;
|
||||
margin-bottom: 24px;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.n8n-templates-widget-more {
|
||||
padding: 1em 0 0 0;
|
||||
}
|
||||
|
||||
.n8n-templates-link {
|
||||
font-weight: 600;
|
||||
font-size: 15px;
|
||||
}
|
||||
5
docs/_extra/css/workflow-demo.css
Normal file
5
docs/_extra/css/workflow-demo.css
Normal file
@ -0,0 +1,5 @@
|
||||
.n8n-workflow-preview {
|
||||
background-color: var(--color-background-light);
|
||||
border: 1px solid var(--color-foreground-base);
|
||||
text-align: center;
|
||||
}
|
||||
@ -1,3 +1,44 @@
|
||||
# 2024 SEO audit
|
||||
/nodes/nodes.html /integrations/builtin/node-types/
|
||||
/getting-started/installation/advanced/server-setup.html /hosting/installation/server-setups/
|
||||
/getting-started/installation/advanced/server-setup.html#server-setups /hosting/installation/server-setups/
|
||||
/getting-started/key-components.html /workflows/
|
||||
/integrations/buil%20%20%20%20%20%20%20%20%20%20%205tin/core-nodes/n8n-nodes-base.start/ /integrations/builtin/core-nodes/n8n-nodes-base.start/
|
||||
/getting-started/create-your-first-workflow/* /try-it-out/
|
||||
/reference/security/ /privacy-security/security/
|
||||
/reference/reference.html /
|
||||
/integrations/builtin/core-nodes/n8n-nodes-base.executionData /integrations/builtin/core-nodes/n8n-nodes-base.executiondata/
|
||||
|
||||
|
||||
# Moved from 404.html
|
||||
/getting-started/key-concepts/ /flow-logic/
|
||||
/getting-started/key-concepts/#expression /code/expressions/
|
||||
/getting-started/key-concepts/#item /data/data-structure/
|
||||
/getting-started/key-concepts/#function /data/code/
|
||||
/getting-started/key-concepts/#data /data/
|
||||
/getting-started/key-concepts/#data-structure /data/data-structure/
|
||||
/key-concepts/#data-flow /data/data-structure/
|
||||
/key-concepts/#error-workflow /flow-logic/error-handling/
|
||||
/key-concepts/#security /hosting/configuration/user-management-self-hosted/
|
||||
/getting-started/whats-next.html /try-it-out/quickstart/#next-steps
|
||||
/getting-started/installation/advanced/server-setup.html#docker-compose-examples /hosting/installation/server-setups/docker-compose/
|
||||
/reference/faq.html#Integrations /integrations/
|
||||
/reference/faq.html /faircode-license/
|
||||
/reference/faq.html#License /faircode-license/
|
||||
/reference/faq.html#n8n-cloud /manage-cloud/overview/
|
||||
/nodes/expressions.html#expressions /code/expressions/
|
||||
/editor-ui/workflows /workflows/
|
||||
/editor-ui/credentials /credentials/
|
||||
/editor-ui/executions /workflows/executions/
|
||||
/editor-ui/admin-panel /manage-cloud/update-cloud-version/
|
||||
/#what-is-n8n /
|
||||
/getting-started/tutorials.html#blogposts https://n8n.io/blog/tag/tutorial/
|
||||
/#server-setup /hosting/installation/server-setups/
|
||||
/code-examples/expressions/expressions.html /code/expressions/
|
||||
/hosting/configuration/#use-built-in-and-external-modules-in-function-nodes /hosting/configuration/configuration-examples/modules-in-code-node/
|
||||
/hosting/configuration/#use-built-in-and-external-modules-in-the-code-node /hosting/configuration/configuration-examples/modules-in-code-node/
|
||||
|
||||
|
||||
/integrations/builtin/core-nodes/n8n-nodes-base.interval/ /integrations/builtin/core-nodes/n8n-nodes-base.scheduletrigger/
|
||||
/integrations/builtin/credentials/google/googlepalm/ /integrations/builtin/credentials/google/googleai/
|
||||
|
||||
@ -32,7 +73,7 @@
|
||||
/langchain/access-langchain/ /advanced-ai/
|
||||
|
||||
|
||||
/choose-n8n/cloud/ /manage-cloud/
|
||||
/choose-n8n/cloud/ /manage-cloud/overview/
|
||||
/choose-n8n/faircode-license/ /faircode-license/
|
||||
/cloud-admin-dashboard/ /manage-cloud/cloud-admin-dashboard/
|
||||
/hosting/scaling/execution-modes-processes/ /hosting/scaling/queue-mode/
|
||||
@ -138,7 +179,7 @@
|
||||
|
||||
# License release 2022/2023
|
||||
|
||||
/reference/license/ /choose-n8n/faircode-license/
|
||||
/reference/license/ /faircode-license/
|
||||
|
||||
# Workflows refactor 2022
|
||||
|
||||
@ -152,7 +193,7 @@
|
||||
# Hosting user paths 2022
|
||||
|
||||
/hosting/options/ /choose-n8n/
|
||||
/hosting/installation/cloud/ /manage-cloud/
|
||||
/hosting/installation/cloud/ /manage-cloud/overview/
|
||||
/hosting/installation/desktop-app/ /choose-n8n/
|
||||
/hosting/server-setups/* /hosting/installation/server-setups/:splat
|
||||
/hosting/configuration/ /hosting/configuration/environment-variables/
|
||||
@ -164,7 +205,6 @@
|
||||
/hosting/databases/structure/ /hosting/architecture/database-structure/
|
||||
/hosting/security/ /hosting/user-management/
|
||||
/hosting/user-management/ /user-management/
|
||||
/hosting/configuration/ /hosting/configuration/configuration-methods/
|
||||
|
||||
|
||||
# 2022 SEO audit
|
||||
@ -243,7 +283,7 @@
|
||||
# Updated during IA work
|
||||
/getting-started/key-components/ /workflows/
|
||||
/getting-started/key-components/connection.html /workflows/connections/
|
||||
/getting-started/key-components/editor-ui.html /editor-ui/
|
||||
/getting-started/key-components/editor-ui.html /
|
||||
/getting-started/key-components/node.html /workflows/nodes/
|
||||
/getting-started/key-components/workflow.html /workflows/workflows/
|
||||
/getting-started/key-concepts/looping.html /flow-logic/looping/
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: explanation
|
||||
title: Agents vs chains
|
||||
description: A workflow example that demonstrates key differences between agents and chains.
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: howto
|
||||
title: Call an API to fetch data
|
||||
description: Use the n8n workflow tool to load data from an API using the HTTP Request node into your AI workflow.
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: howto
|
||||
title: Chat with a Google Sheet using AI
|
||||
description: Use the n8n workflow tool to load data from Google Sheets into your AI workflow.
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: howto
|
||||
title: Set a human fallback for AI workflows
|
||||
description: Have a workflow that triggers a human answer when the AI can't help.
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: overview
|
||||
title: Advanced AI examples and concepts
|
||||
description: Example workflows and use cases for building AI functionality using n8n.
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
title: What is an agent in AI?
|
||||
description: Understand agents in the context of AI. Learn how n8n provides agents.
|
||||
contentType: explanation
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
title: What is a chain in AI?
|
||||
description: Understand chains in the context of AI. Learn about chains in n8n.
|
||||
contentType: explanation
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
title: What is memory in AI?
|
||||
description: Understand memory in the context of AI. Learn what's special about memory in n8n.
|
||||
contentType: explanation
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
title: What is a tool in AI?
|
||||
description: Understand tools in the context of AI. Learn what's special about tools in n8n.
|
||||
contentType: explanation
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
title: What are vector databases?
|
||||
description: Understand vector databases. Learn how n8n provides vector databases, along with the key components to work with them, including embeddings, retrievers, and document loaders.
|
||||
contentType: explanation
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: howto
|
||||
title: Populate a Pinecone vector database from a website
|
||||
description: Scrape a website, load the data into Pinecone, then query it using a chat workflow.
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: overview
|
||||
title: Advanced AI
|
||||
description: Use n8n's LangChain integrations to build AI-powered functionality within your workflows. Connect your LangChain functionality to other data sources and services.
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: Learn how to build AI workflows using n8n's LangChain implementation. You'll build a chat workflow that uses ChatGPT and pulls in data from other n8n workflows.
|
||||
type: tutorial
|
||||
---
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: explanation
|
||||
title: LangChain concepts in n8n
|
||||
description: How LangChain concepts map to n8n, and which n8n nodes to use.
|
||||
@ -155,6 +156,7 @@ Utility tools.
|
||||
* [Calculator](/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolcalculator/)
|
||||
* [Code Tool](/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolcode/)
|
||||
* [SerpAPI](/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolserpapi/)
|
||||
* [Vector Store Tool](/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolvectorstore/)
|
||||
* [Wikipedia](/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolwikipedia/)
|
||||
* [Wolfram|Alpha](/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolwolframalpha/)
|
||||
* [Workflow Tool](/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolworkflow/)
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: howto
|
||||
title: Use LangSmith with n8n
|
||||
description: How to enable LangSmith for your self-hosted n8n instance.
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: overview
|
||||
title: LangChain in n8n
|
||||
description: Understand how n8n uses LangChain to provide advanced AI functionality.
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
template: api.html
|
||||
hide:
|
||||
- toc
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: Authentication for n8n's public REST API.
|
||||
contentType: howto
|
||||
---
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: n8n's public REST API
|
||||
contentType: overview
|
||||
---
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: Pagination in n8n's public REST API.
|
||||
contentType: howto
|
||||
---
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: How to use the API playground to try out n8n's public REST API.
|
||||
contentType: howto
|
||||
---
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: Choose between our Cloud service, or self-hosting options. Learn more about licenses and n8n payment plans.
|
||||
contentType: overview
|
||||
---
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
title: AI coding
|
||||
description: Use GPT to generate code in the Code node.
|
||||
contentType: explanation
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: n8n provides these methods to make it easier to perform common tasks in expressions.
|
||||
contentType: reference
|
||||
hide:
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: Methods for working with the input of the current node.
|
||||
contentType: reference
|
||||
hide:
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
title: Data transformation functions for arrays
|
||||
description: A reference document listing built-in convenience functions to support data transformation in expressions for arrays.
|
||||
contentType: reference
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
title: Data transformation functions for booleans
|
||||
description: A reference document listing built-in convenience functions to support data transformation in expressions for booleans.
|
||||
contentType: reference
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
title: Data transformation functions for dates
|
||||
description: A reference document listing built-in convenience functions to support data transformation in expressions for dates.
|
||||
contentType: reference
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
title: Data transformation functions
|
||||
description: Introduction to data transformation functions for expressions.
|
||||
contentType: overview
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
title: Data transformation functions for numbers
|
||||
description: A reference document listing built-in convenience functions to support data transformation in expressions for numbers.
|
||||
contentType: reference
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
title: Data transformation functions for objects
|
||||
description: A reference document listing built-in convenience functions to support data transformation in expressions for objects.
|
||||
contentType: reference
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
title: Data transformation functions for strings
|
||||
description: A reference document listing built-in convenience functions to support data transformation in expressions for strings.
|
||||
contentType: reference
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: Methods for working with date and time.
|
||||
contentType: reference
|
||||
hide:
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: n8n provides these methods to make it easier to perform common tasks in expressions.
|
||||
contentType: reference
|
||||
hide:
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: A method for working with the JMESPath library in n8n.
|
||||
contentType: reference
|
||||
hide:
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: n8n provides these methods to make it easier to perform common tasks in the LangChain Code node.
|
||||
contentType: reference
|
||||
hide:
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: Methods for working with n8n metadata.
|
||||
contentType: reference
|
||||
hide:
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: Methods for working with the output of other nodes.
|
||||
contentType: reference
|
||||
hide:
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: n8n's built-in custom methods and variables.
|
||||
contentType: overview
|
||||
---
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: integration
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: reference
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: reference
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
tags:
|
||||
- "static data"
|
||||
- "global variables"
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: overview
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: How to use `("<node-name>").itemMatching(currentNodeinputIndex)`
|
||||
contentType: howto
|
||||
---
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: Access your environment's custom variables.
|
||||
contentType: reference
|
||||
---
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: How to use console.log() or print()
|
||||
contentType: howto
|
||||
---
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: howto
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: Code examples you can use in the Code node.
|
||||
contentType: overview
|
||||
---
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: howto
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: howto
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: Code examples you can use in expressions.
|
||||
contentType: overview
|
||||
---
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: overview
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: Pagination examples for the HTTP Request node.
|
||||
contentType: howto
|
||||
---
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
title: Query JSON with JMESPath
|
||||
description: n8n supports the JMESPath library, to simplify working with JSON formatted data.
|
||||
contentType: howto
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: howto
|
||||
description: Use Luxon to work with date and time in n8n.
|
||||
---
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: howto
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: Use code in your n8n workflows, and view other developer resources.
|
||||
contentType: overview
|
||||
---
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: Custom variables allow you to store and reuse values in n8n workflows.
|
||||
contentType: howto
|
||||
---
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: overview
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: overview
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: tutorial
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
contentType: overview
|
||||
---
|
||||
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
---
|
||||
#https://www.notion.so/n8n/Frontmatter-432c2b8dff1f43d4b1c8d20075510fe4
|
||||
description: Creating and editing credentials.
|
||||
contentType: howto
|
||||
workflowFile: credentials/dynamic_credentials_using_expressions.json
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user