mirror of
https://github.com/n8n-io/n8n-docs.git
synced 2025-11-20 17:48:34 +00:00
Merge branch 'main' into DOC-658-lc-code
This commit is contained in:
commit
262a5f2f47
@ -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.18.0
|
||||
Current `next`: 1.19.4
|
||||
Current `latest`: 1.18.2
|
||||
Current `next`: 1.20.0
|
||||
///
|
||||
|
||||
@ -1,24 +0,0 @@
|
||||
---
|
||||
title: Embeddings TensorFlow
|
||||
description: Documentation for the Embeddings TensorFlow node in n8n, a workflow automation platform. Includes details of operations and configuration, and links to examples and credentials information.
|
||||
---
|
||||
|
||||
# Embeddings TensorFlow
|
||||
|
||||
Use the Embeddings TensorFlow node to generate embeddings for a given text.
|
||||
|
||||
On this page, you'll find the node parameters for the Embeddings TensorFlow node, and links to more resources.
|
||||
|
||||
/// note | Examples and templates
|
||||
For usage examples and templates to help you get started, refer to n8n's [LangChain integrations](https://n8n.io/integrations/embeddings-tensorflow/){:target=_blank .external-link} page.
|
||||
///
|
||||
|
||||
--8<-- "_snippets/integrations/builtin/cluster-nodes/sub-node-expression-resolution.md"
|
||||
|
||||
## Related resources
|
||||
|
||||
View [example workflows and related content](https://n8n.io/integrations/embeddings-tensorflow/){:target=_blank .external-link} on n8n's website.
|
||||
|
||||
Refer to [LangChains's TensorFlow embeddings documentation](https://js.langchain.com/docs/modules/data_connection/text_embedding/integrations/tensorflow){:target=_blank .external-link} for more information about the service.
|
||||
|
||||
--8<-- "_snippets/integrations/builtin/cluster-nodes/langchain-overview-link.md"
|
||||
@ -75,7 +75,7 @@ Every node must have a base file. Refer to [Node base file](/integrations/creati
|
||||
|
||||
In this example, the file is `NasaPics.node.ts`. To keep this tutorial short, you'll place all the node functionality in this one file. When building more complex nodes, you should consider splitting out your functionality into modules. Refer to [Node file structure](/integrations/creating-nodes/build/reference/node-file-structure/) for more information.
|
||||
|
||||
#### Step 5.1: Imports
|
||||
#### Step 3.1: Imports
|
||||
|
||||
Start by adding the import statements:
|
||||
|
||||
|
||||
@ -169,7 +169,6 @@ Available nodes:
|
||||
* [Embeddings Google PaLM](/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsgooglepalm/)
|
||||
* [Embeddings Hugging Face Inference](/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingshuggingfaceinference/)
|
||||
* [Embeddings OpenAI](/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsopenai/)
|
||||
* [Embeddings TensorFlow](/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingstensorflow/)
|
||||
|
||||
Learn more about [Text embeddings in LangChain](https://js.langchain.com/docs/modules/data_connection/text_embedding/){:target=_blank .external-link}.
|
||||
|
||||
|
||||
@ -28,14 +28,61 @@ n8n uses [semantic versioning](https://semver.org/){:target=_blank .external-lin
|
||||
* MINOR version when adding functionality in a backward-compatible manner.
|
||||
* PATCH version when making backward-compatible bug fixes.
|
||||
|
||||
## n8n@1.20.0
|
||||
|
||||
View the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.19.5...n8n@1.20.0){:target=_blank .external-link} for this version.<br />
|
||||
**Release date:** 2023-12-06
|
||||
|
||||
/// note | Next version
|
||||
This is the `next` version. n8n recommends using the `latest` version. The `next` version may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12){:target=_blank .external-link}.
|
||||
///
|
||||
|
||||
This release contains bug fixes, node enhancements, and ongoing new feature work.
|
||||
|
||||
For full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases){:target=_blank .external-link} on GitHub.
|
||||
|
||||
### Contributors
|
||||
|
||||
[Andrey Starostin](https://github.com/mayorandrew){:target=_blank .external-link}
|
||||
|
||||
## n8n@1.19.5
|
||||
|
||||
View the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.19.4...n8n@1.19.5){:target=_blank .external-link} for this version.<br />
|
||||
**Release date:** 2023-12-05
|
||||
|
||||
|
||||
|
||||
This is a bug fix release.
|
||||
|
||||
/// warning | Breaking change
|
||||
This release removes the TensorFlow Embeddings node.
|
||||
///
|
||||
|
||||
For full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases){:target=_blank .external-link} on GitHub.
|
||||
|
||||
## n8n@1.18.2
|
||||
|
||||
View the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.18.1...n8n@1.18.2){:target=_blank .external-link} for this version.<br />
|
||||
**Release date:** 2023-12-05
|
||||
|
||||
/// note | Latest version
|
||||
This is the `latest` version. n8n recommends using the `latest` version. The `next` version may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12){:target=_blank .external-link}.
|
||||
///
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
This is a bug fix release.
|
||||
|
||||
For full release details, refer to [Releases](https://github.com/n8n-io/n8n/releases){:target=_blank .external-link} on GitHub.
|
||||
|
||||
## n8n@1.19.4
|
||||
|
||||
View the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.19.0...n8n@1.19.4){:target=_blank .external-link} for this version.<br />
|
||||
**Release date:** 2023-12-01
|
||||
|
||||
/// note | Next version
|
||||
This is the `next` version. n8n recommends using the `latest` version. The `next` version may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12){:target=_blank .external-link}.
|
||||
///
|
||||
|
||||
|
||||
/// warning | Missing ARM v7 support
|
||||
This version doesn't support ARM v7. We're working on fixing this in future releases.
|
||||
@ -84,9 +131,11 @@ For full release details, refer to [Releases](https://github.com/n8n-io/n8n/rele
|
||||
View the [commits](https://github.com/n8n-io/n8n/compare/n8n@1.17.1...n8n@1.18.0){:target=_blank .external-link} for this version.<br />
|
||||
**Release date:** 2023-11-22
|
||||
|
||||
/// note | Latest version
|
||||
This is the `latest` version. n8n recommends using the `latest` version. The `next` version may be unstable. To report issues, use the [forum](https://community.n8n.io/c/questions/12){:target=_blank .external-link}.
|
||||
///
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@ -663,7 +663,6 @@ nav:
|
||||
- integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsgooglepalm.md
|
||||
- integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingshuggingfaceinference.md
|
||||
- integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingsopenai.md
|
||||
- integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.embeddingstensorflow.md
|
||||
- integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatanthropic.md
|
||||
- integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatawsbedrock.md
|
||||
- integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatgooglepalm.md
|
||||
|
||||
Loading…
Reference in New Issue
Block a user