You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Node.js and npm. Minimum version Node 18.17.0. You can find instructions on how to install both using nvm (Node Version Manager) for Linux, Mac, and WSL [here](https://github.com/nvm-sh/nvm). For Windows users, refer to Microsoft's guide to [Install NodeJS on Windows](https://docs.microsoft.com/en-us/windows/dev-environment/javascript/nodejs-on-windows).
2
+
* Node.js and npm. Minimum version Node 18.17.0. You can find instructions on how to install both using `nvm` (Node Version Manager) for Linux, Mac, and WSL [here](https://github.com/nvm-sh/nvm). For Windows users, refer to Microsoft's guide to [Install NodeJS on Windows](https://docs.microsoft.com/en-us/windows/dev-environment/javascript/nodejs-on-windows).
Copy file name to clipboardExpand all lines: docs/advanced-ai/langchain/langchain-learning-resources.md
+2
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,8 @@ The [LangChain documentation](https://docs.langchain.com/docs/) includes introdu
12
12
13
13
[What Product People Need To Know About LangChain](https://www.commandbar.com/blog/langchain-guide) provides a list of terminology and concepts, explained with helpful metaphors. Aimed at a wide audience.
14
14
15
+
<!-- vale Vale.Spelling = NO -->
15
16
If you prefer video, this [YouTube series by Greg Kamradt](https://youtu.be/_v_fgW2SkkQ?si=8Z2tfAoXnN3lXU9s) works through the LangChain documentation, providing code examples as it goes.
17
+
<!-- vale Vale.Spelling = YES -->
16
18
17
19
n8n offers space to discuss LangChain on the [Discord](https://discord.gg/bAt54txhHg). Join to share your projects and discuss ideas with the community.
Copy file name to clipboardExpand all lines: docs/api/overview.md
+2
Original file line number
Diff line number
Diff line change
@@ -26,10 +26,12 @@ n8n provides an [n8n API node](/integrations/builtin/core-nodes/n8n-nodes-base.n
26
26
27
27
The API documentation assumes you are familiar with REST APIs. If you're not, these resources may be helpful:
28
28
29
+
<!-- vale from-microsoft.Contractions["What is"] = NO -->
29
30
*[KnowledgeOwl's guide to working with APIs](https://support.knowledgeowl.com/help/working-with-apis): a basic introduction, including examples of how to call REST APIs.
30
31
*[IBM Cloud Learn Hub - What is an Application Programming Interface (API)](https://www.ibm.com/cloud/learn/api): this gives a general, but technical, introduction to APIs.
31
32
*[IBM Cloud Learn Hub - What is a REST API?](https://www.ibm.com/cloud/learn/rest-apis): more detailed information about REST APIs.
32
33
*[MDN web docs - An overview of HTTP](https://developer.mozilla.org/en-US/docs/Web/HTTP/Overview): REST APIs work over HTTP and use HTTP verbs, or methods, to specify the action to perform.
/// tip | Use the API playground (self-hosted n8n only)
35
37
Trying out the API in the [playground](/api/using-api-playground.md) can help you understand how APIs work. If you're worried about changing live data, consider setting up a test workflow, or test n8n instance, to explore safely.
Copy file name to clipboardExpand all lines: docs/code/cookbook/builtin/itemmatching.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -79,4 +79,4 @@ The Code node does this using the following code:
79
79
return _input.all();
80
80
```
81
81
82
-
You can view and download the example workflow from [n8n website | itemMatchin usage example ](https://n8n.io/workflows/1966-itemmatching-usage-example/).
82
+
You can view and download the example workflow from [`itemMatching`usage example | n8n website](https://n8n.io/workflows/1966-itemmatching-usage-example/).
Copy file name to clipboardExpand all lines: docs/integrations/builtin/app-nodes/n8n-nodes-base.awselb.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ This node supports creating and managing application and network load balancers.
36
36
37
37
## Related resources
38
38
39
-
Refer to [AWS ELB's documentation](https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/what-is-load-balancing.html) for more information on this service.
39
+
Refer to the [AWS ELB documentation](https://docs.aws.amazon.com/elasticloadbalancing/latest/userguide/what-is-load-balancing.html) for more information on this service.
Copy file name to clipboardExpand all lines: docs/integrations/builtin/app-nodes/n8n-nodes-base.telegram/chat-operations.md
+12-12
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ Use these operations to get information about chats, members, administrators, le
14
14
15
15
## Get Chat
16
16
17
-
Use this operation to get up to date information about a chat using the Bot API [getChat](https://core.telegram.org/bots/api#getchat) method.
17
+
Use this operation to get up to date information about a chat using the Bot API [`getChat`](https://core.telegram.org/bots/api#getchat) method.
18
18
19
19
Enter these parameters:
20
20
@@ -24,11 +24,11 @@ Enter these parameters:
24
24
***Chat ID**: Enter the Chat ID or username of the target channel in the format `@channelusername`.
25
25
* To feed a Chat ID directly into this node, use the [Telegram Trigger](/integrations/builtin/trigger-nodes/n8n-nodes-base.telegramtrigger/index.md) node. Refer to [Common Issues | Get the Chat ID](/integrations/builtin/app-nodes/n8n-nodes-base.telegram/common-issues.md#get-the-chat-id) for more information.
26
26
27
-
Refer to the Telegram Bot API [getChat](https://core.telegram.org/bots/api#getchat) documentation for more information.
27
+
Refer to the Telegram Bot API [`getChat`](https://core.telegram.org/bots/api#getchat) documentation for more information.
28
28
29
29
## Get Administrators
30
30
31
-
Use this operation to get a list of all administrators in a chat using the Bot API [getChatAdministrators](https://core.telegram.org/bots/api#getchatadministrators) method.
31
+
Use this operation to get a list of all administrators in a chat using the Bot API [`getChatAdministrators`](https://core.telegram.org/bots/api#getchatadministrators) method.
32
32
33
33
Enter these parameters:
34
34
@@ -38,11 +38,11 @@ Enter these parameters:
38
38
***Chat ID**: Enter the Chat ID or username of the target channel in the format `@channelusername`.
39
39
* To feed a Chat ID directly into this node, use the [Telegram Trigger](/integrations/builtin/trigger-nodes/n8n-nodes-base.telegramtrigger/index.md) node. Refer to [Common Issues | Get the Chat ID](/integrations/builtin/app-nodes/n8n-nodes-base.telegram/common-issues.md#get-the-chat-id) for more information.
40
40
41
-
Refer to the Telegram Bot API [getChatAdministrators](https://core.telegram.org/bots/api#getchatadministrators) documentation for more information.
41
+
Refer to the Telegram Bot API [`getChatAdministrators`](https://core.telegram.org/bots/api#getchatadministrators) documentation for more information.
42
42
43
43
## Get Chat Member
44
44
45
-
Use this operation to get the details of a chat member using the Bot API [getChatMember](https://core.telegram.org/bots/api#getchatmember) method.
45
+
Use this operation to get the details of a chat member using the Bot API [`getChatMember`](https://core.telegram.org/bots/api#getchatmember) method.
46
46
47
47
Enter these parameters:
48
48
@@ -53,11 +53,11 @@ Enter these parameters:
53
53
* To feed a Chat ID directly into this node, use the [Telegram Trigger](/integrations/builtin/trigger-nodes/n8n-nodes-base.telegramtrigger/index.md) node. Refer to [Common Issues | Get the Chat ID](/integrations/builtin/app-nodes/n8n-nodes-base.telegram/common-issues.md#get-the-chat-id) for more information.
54
54
***User ID**: Enter the unique identifier of the user whose information you want to get.
55
55
56
-
Refer to the Telegram Bot API [getChatMember](https://core.telegram.org/bots/api#getchatmember) documentation for more information.
56
+
Refer to the Telegram Bot API [`getChatMember`](https://core.telegram.org/bots/api#getchatmember) documentation for more information.
57
57
58
58
## Leave Chat
59
59
60
-
Use this operation to leave a chat using the Bot API [leaveChat](https://core.telegram.org/bots/api#leavechat) method.
60
+
Use this operation to leave a chat using the Bot API [`leaveChat`](https://core.telegram.org/bots/api#leavechat) method.
61
61
62
62
Enter these parameters:
63
63
@@ -67,11 +67,11 @@ Enter these parameters:
67
67
***Chat ID**: Enter the Chat ID or username of the channel you wish to leave in the format `@channelusername`.
68
68
* To feed a Chat ID directly into this node, use the [Telegram Trigger](/integrations/builtin/trigger-nodes/n8n-nodes-base.telegramtrigger/index.md) node. Refer to [Common Issues | Get the Chat ID](/integrations/builtin/app-nodes/n8n-nodes-base.telegram/common-issues.md#get-the-chat-id) for more information.
69
69
70
-
Refer to the Telegram Bot API [leaveChat](https://core.telegram.org/bots/api#leavechat) documentation for more information.
70
+
Refer to the Telegram Bot API [`leaveChat`](https://core.telegram.org/bots/api#leavechat) documentation for more information.
71
71
72
72
## Set Description
73
73
74
-
Use this operation to set the description of a chat using the Bot API [setChatDescription](https://core.telegram.org/bots/api#setchatdescription) method.
74
+
Use this operation to set the description of a chat using the Bot API [`setChatDescription`](https://core.telegram.org/bots/api#setchatdescription) method.
75
75
76
76
Enter these parameters:
77
77
@@ -82,11 +82,11 @@ Enter these parameters:
82
82
* To feed a Chat ID directly into this node, use the [Telegram Trigger](/integrations/builtin/trigger-nodes/n8n-nodes-base.telegramtrigger/index.md) node. Refer to [Common Issues | Get the Chat ID](/integrations/builtin/app-nodes/n8n-nodes-base.telegram/common-issues.md#get-the-chat-id) for more information.
83
83
***Description**: Enter the new description you'd like to set the chat to use, maximum of 255 characters.
84
84
85
-
Refer to the Telegram Bot API [setChatDescription](https://core.telegram.org/bots/api#setchatdescription) documentation for more information.
85
+
Refer to the Telegram Bot API [`setChatDescription`](https://core.telegram.org/bots/api#setchatdescription) documentation for more information.
86
86
87
87
## Set Title
88
88
89
-
Use this operation to set the title of a chat using the Bot API [setChatTitle](https://core.telegram.org/bots/api#setchattitle) method.
89
+
Use this operation to set the title of a chat using the Bot API [`setChatTitle`](https://core.telegram.org/bots/api#setchattitle) method.
90
90
91
91
Enter these parameters:
92
92
@@ -97,4 +97,4 @@ Enter these parameters:
97
97
* To feed a Chat ID directly into this node, use the [Telegram Trigger](/integrations/builtin/trigger-nodes/n8n-nodes-base.telegramtrigger/index.md) node. Refer to [Common Issues | Get the Chat ID](/integrations/builtin/app-nodes/n8n-nodes-base.telegram/common-issues.md#get-the-chat-id) for more information.
98
98
***Title**: Enter the new title you'd like to set the chat to use, maximum of 255 characters.
99
99
100
-
Refer to the Telegram Bot API [setChatTitle](https://core.telegram.org/bots/api#setchattitle) documentation for more information.
100
+
Refer to the Telegram Bot API [`setChatTitle`](https://core.telegram.org/bots/api#setchattitle) documentation for more information.
0 commit comments