-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-workflow.json
More file actions
102 lines (102 loc) · 2.16 KB
/
Copy pathtest-workflow.json
File metadata and controls
102 lines (102 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "Requesty Test — Chat + Agent + Tool",
"nodes": [
{
"parameters": {
"options": {}
},
"id": "11111111-1111-1111-1111-111111111111",
"name": "When chat message received",
"type": "@n8n/n8n-nodes-langchain.chatTrigger",
"typeVersion": 1.4,
"position": [
260,
300
],
"webhookId": "requesty-test-chat-webhook"
},
{
"parameters": {
"options": {
"systemMessage": "You are a helpful assistant powered by Requesty. You have access to a Calculator tool. Use it whenever the user asks for arithmetic, and explain your reasoning."
}
},
"id": "22222222-2222-2222-2222-222222222222",
"name": "AI Agent",
"type": "@n8n/n8n-nodes-langchain.agent",
"typeVersion": 3.1,
"position": [
600,
300
]
},
{
"parameters": {
"model": "openai/gpt-4o-mini",
"options": {}
},
"id": "33333333-3333-3333-3333-333333333333",
"name": "Requesty Chat Model",
"type": "@requesty/n8n-nodes-requesty.lmChatRequesty",
"typeVersion": 1,
"position": [
520,
540
]
},
{
"parameters": {},
"id": "44444444-4444-4444-4444-444444444444",
"name": "Calculator",
"type": "@n8n/n8n-nodes-langchain.toolCalculator",
"typeVersion": 1,
"position": [
760,
540
]
}
],
"connections": {
"When chat message received": {
"main": [
[
{
"node": "AI Agent",
"type": "main",
"index": 0
}
]
]
},
"Requesty Chat Model": {
"ai_languageModel": [
[
{
"node": "AI Agent",
"type": "ai_languageModel",
"index": 0
}
]
]
},
"Calculator": {
"ai_tool": [
[
{
"node": "AI Agent",
"type": "ai_tool",
"index": 0
}
]
]
}
},
"active": false,
"settings": {
"executionOrder": "v1"
},
"pinData": {},
"meta": {
"templateId": "requesty-test"
}
}