Flowise

Форк
0
710 строк · 31.5 Кб
1
{
2
    "description": "Conversational Agent with ability to visit a website and extract information",
3
    "categories": "Buffer Memory,Web Browser,ChatOpenAI,Conversational Agent",
4
    "framework": "Langchain",
5
    "nodes": [
6
        {
7
            "width": 300,
8
            "height": 376,
9
            "id": "bufferMemory_0",
10
            "position": {
11
                "x": 457.04304716743604,
12
                "y": 362.4048129799687
13
            },
14
            "type": "customNode",
15
            "data": {
16
                "id": "bufferMemory_0",
17
                "label": "Buffer Memory",
18
                "version": 2,
19
                "name": "bufferMemory",
20
                "type": "BufferMemory",
21
                "baseClasses": ["BufferMemory", "BaseChatMemory", "BaseMemory"],
22
                "category": "Memory",
23
                "description": "Retrieve chat messages stored in database",
24
                "inputParams": [
25
                    {
26
                        "label": "Session Id",
27
                        "name": "sessionId",
28
                        "type": "string",
29
                        "description": "If not specified, a random id will be used. Learn <a target=\"_blank\" href=\"https://docs.flowiseai.com/memory#ui-and-embedded-chat\">more</a>",
30
                        "default": "",
31
                        "additionalParams": true,
32
                        "optional": true,
33
                        "id": "bufferMemory_0-input-sessionId-string"
34
                    },
35
                    {
36
                        "label": "Memory Key",
37
                        "name": "memoryKey",
38
                        "type": "string",
39
                        "default": "chat_history",
40
                        "additionalParams": true,
41
                        "id": "bufferMemory_0-input-memoryKey-string"
42
                    }
43
                ],
44
                "inputAnchors": [],
45
                "inputs": {
46
                    "sessionId": "",
47
                    "memoryKey": "chat_history"
48
                },
49
                "outputAnchors": [
50
                    {
51
                        "id": "bufferMemory_0-output-bufferMemory-BufferMemory|BaseChatMemory|BaseMemory",
52
                        "name": "bufferMemory",
53
                        "label": "BufferMemory",
54
                        "type": "BufferMemory | BaseChatMemory | BaseMemory"
55
                    }
56
                ],
57
                "outputs": {},
58
                "selected": false
59
            },
60
            "selected": false,
61
            "positionAbsolute": {
62
                "x": 457.04304716743604,
63
                "y": 362.4048129799687
64
            },
65
            "dragging": false
66
        },
67
        {
68
            "width": 300,
69
            "height": 280,
70
            "id": "webBrowser_0",
71
            "position": {
72
                "x": 1091.0866823400172,
73
                "y": -16.43806989958216
74
            },
75
            "type": "customNode",
76
            "data": {
77
                "id": "webBrowser_0",
78
                "label": "Web Browser",
79
                "version": 1,
80
                "name": "webBrowser",
81
                "type": "WebBrowser",
82
                "baseClasses": ["WebBrowser", "Tool", "StructuredTool", "BaseLangChain"],
83
                "category": "Tools",
84
                "description": "Gives agent the ability to visit a website and extract information",
85
                "inputParams": [],
86
                "inputAnchors": [
87
                    {
88
                        "label": "Language Model",
89
                        "name": "model",
90
                        "type": "BaseLanguageModel",
91
                        "id": "webBrowser_0-input-model-BaseLanguageModel"
92
                    },
93
                    {
94
                        "label": "Embeddings",
95
                        "name": "embeddings",
96
                        "type": "Embeddings",
97
                        "id": "webBrowser_0-input-embeddings-Embeddings"
98
                    }
99
                ],
100
                "inputs": {
101
                    "model": "{{chatOpenAI_0.data.instance}}",
102
                    "embeddings": "{{openAIEmbeddings_0.data.instance}}"
103
                },
104
                "outputAnchors": [
105
                    {
106
                        "id": "webBrowser_0-output-webBrowser-WebBrowser|Tool|StructuredTool|BaseLangChain",
107
                        "name": "webBrowser",
108
                        "label": "WebBrowser",
109
                        "type": "WebBrowser | Tool | StructuredTool | BaseLangChain"
110
                    }
111
                ],
112
                "outputs": {},
113
                "selected": false
114
            },
115
            "selected": false,
116
            "positionAbsolute": {
117
                "x": 1091.0866823400172,
118
                "y": -16.43806989958216
119
            },
120
            "dragging": false
121
        },
122
        {
123
            "width": 300,
124
            "height": 574,
125
            "id": "chatOpenAI_0",
126
            "position": {
127
                "x": 734.7477982032904,
128
                "y": -470.9979556765114
129
            },
130
            "type": "customNode",
131
            "data": {
132
                "id": "chatOpenAI_0",
133
                "label": "ChatOpenAI",
134
                "version": 6.0,
135
                "name": "chatOpenAI",
136
                "type": "ChatOpenAI",
137
                "baseClasses": ["ChatOpenAI", "BaseChatModel", "BaseLanguageModel"],
138
                "category": "Chat Models",
139
                "description": "Wrapper around OpenAI large language models that use the Chat endpoint",
140
                "inputParams": [
141
                    {
142
                        "label": "Connect Credential",
143
                        "name": "credential",
144
                        "type": "credential",
145
                        "credentialNames": ["openAIApi"],
146
                        "id": "chatOpenAI_0-input-credential-credential"
147
                    },
148
                    {
149
                        "label": "Model Name",
150
                        "name": "modelName",
151
                        "type": "asyncOptions",
152
                        "loadMethod": "listModels",
153
                        "default": "gpt-3.5-turbo",
154
                        "id": "chatOpenAI_0-input-modelName-options"
155
                    },
156
                    {
157
                        "label": "Temperature",
158
                        "name": "temperature",
159
                        "type": "number",
160
                        "default": 0.9,
161
                        "optional": true,
162
                        "id": "chatOpenAI_0-input-temperature-number"
163
                    },
164
                    {
165
                        "label": "Max Tokens",
166
                        "name": "maxTokens",
167
                        "type": "number",
168
                        "optional": true,
169
                        "additionalParams": true,
170
                        "id": "chatOpenAI_0-input-maxTokens-number"
171
                    },
172
                    {
173
                        "label": "Top Probability",
174
                        "name": "topP",
175
                        "type": "number",
176
                        "optional": true,
177
                        "additionalParams": true,
178
                        "id": "chatOpenAI_0-input-topP-number"
179
                    },
180
                    {
181
                        "label": "Frequency Penalty",
182
                        "name": "frequencyPenalty",
183
                        "type": "number",
184
                        "optional": true,
185
                        "additionalParams": true,
186
                        "id": "chatOpenAI_0-input-frequencyPenalty-number"
187
                    },
188
                    {
189
                        "label": "Presence Penalty",
190
                        "name": "presencePenalty",
191
                        "type": "number",
192
                        "optional": true,
193
                        "additionalParams": true,
194
                        "id": "chatOpenAI_0-input-presencePenalty-number"
195
                    },
196
                    {
197
                        "label": "Timeout",
198
                        "name": "timeout",
199
                        "type": "number",
200
                        "optional": true,
201
                        "additionalParams": true,
202
                        "id": "chatOpenAI_0-input-timeout-number"
203
                    },
204
                    {
205
                        "label": "BasePath",
206
                        "name": "basepath",
207
                        "type": "string",
208
                        "optional": true,
209
                        "additionalParams": true,
210
                        "id": "chatOpenAI_0-input-basepath-string"
211
                    },
212
                    {
213
                        "label": "BaseOptions",
214
                        "name": "baseOptions",
215
                        "type": "json",
216
                        "optional": true,
217
                        "additionalParams": true,
218
                        "id": "chatOpenAI_0-input-baseOptions-json"
219
                    },
220
                    {
221
                        "label": "Allow Image Uploads",
222
                        "name": "allowImageUploads",
223
                        "type": "boolean",
224
                        "description": "Automatically uses gpt-4-vision-preview when image is being uploaded from chat. Only works with LLMChain, Conversation Chain, ReAct Agent, and Conversational Agent",
225
                        "default": false,
226
                        "optional": true,
227
                        "id": "chatOpenAI_0-input-allowImageUploads-boolean"
228
                    },
229
                    {
230
                        "label": "Image Resolution",
231
                        "description": "This parameter controls the resolution in which the model views the image.",
232
                        "name": "imageResolution",
233
                        "type": "options",
234
                        "options": [
235
                            {
236
                                "label": "Low",
237
                                "name": "low"
238
                            },
239
                            {
240
                                "label": "High",
241
                                "name": "high"
242
                            },
243
                            {
244
                                "label": "Auto",
245
                                "name": "auto"
246
                            }
247
                        ],
248
                        "default": "low",
249
                        "optional": false,
250
                        "additionalParams": true,
251
                        "id": "chatOpenAI_0-input-imageResolution-options"
252
                    }
253
                ],
254
                "inputAnchors": [
255
                    {
256
                        "label": "Cache",
257
                        "name": "cache",
258
                        "type": "BaseCache",
259
                        "optional": true,
260
                        "id": "chatOpenAI_0-input-cache-BaseCache"
261
                    }
262
                ],
263
                "inputs": {
264
                    "modelName": "gpt-3.5-turbo",
265
                    "temperature": 0.9,
266
                    "maxTokens": "",
267
                    "topP": "",
268
                    "frequencyPenalty": "",
269
                    "presencePenalty": "",
270
                    "timeout": "",
271
                    "basepath": "",
272
                    "baseOptions": "",
273
                    "allowImageUploads": true,
274
                    "imageResolution": "low"
275
                },
276
                "outputAnchors": [
277
                    {
278
                        "id": "chatOpenAI_0-output-chatOpenAI-ChatOpenAI|BaseChatModel|BaseLanguageModel",
279
                        "name": "chatOpenAI",
280
                        "label": "ChatOpenAI",
281
                        "type": "ChatOpenAI | BaseChatModel | BaseLanguageModel"
282
                    }
283
                ],
284
                "outputs": {},
285
                "selected": false
286
            },
287
            "selected": false,
288
            "positionAbsolute": {
289
                "x": 734.7477982032904,
290
                "y": -470.9979556765114
291
            },
292
            "dragging": false
293
        },
294
        {
295
            "width": 300,
296
            "height": 329,
297
            "id": "openAIEmbeddings_0",
298
            "position": {
299
                "x": 403.72014625628697,
300
                "y": -103.82540449681527
301
            },
302
            "type": "customNode",
303
            "data": {
304
                "id": "openAIEmbeddings_0",
305
                "label": "OpenAI Embeddings",
306
                "version": 3,
307
                "name": "openAIEmbeddings",
308
                "type": "OpenAIEmbeddings",
309
                "baseClasses": ["OpenAIEmbeddings", "Embeddings"],
310
                "category": "Embeddings",
311
                "description": "OpenAI API to generate embeddings for a given text",
312
                "inputParams": [
313
                    {
314
                        "label": "Connect Credential",
315
                        "name": "credential",
316
                        "type": "credential",
317
                        "credentialNames": ["openAIApi"],
318
                        "id": "openAIEmbeddings_0-input-credential-credential"
319
                    },
320
                    {
321
                        "label": "Model Name",
322
                        "name": "modelName",
323
                        "type": "asyncOptions",
324
                        "loadMethod": "listModels",
325
                        "default": "text-embedding-ada-002",
326
                        "id": "openAIEmbeddings_2-input-modelName-options"
327
                    },
328
                    {
329
                        "label": "Strip New Lines",
330
                        "name": "stripNewLines",
331
                        "type": "boolean",
332
                        "optional": true,
333
                        "additionalParams": true,
334
                        "id": "openAIEmbeddings_0-input-stripNewLines-boolean"
335
                    },
336
                    {
337
                        "label": "Batch Size",
338
                        "name": "batchSize",
339
                        "type": "number",
340
                        "optional": true,
341
                        "additionalParams": true,
342
                        "id": "openAIEmbeddings_0-input-batchSize-number"
343
                    },
344
                    {
345
                        "label": "Timeout",
346
                        "name": "timeout",
347
                        "type": "number",
348
                        "optional": true,
349
                        "additionalParams": true,
350
                        "id": "openAIEmbeddings_0-input-timeout-number"
351
                    },
352
                    {
353
                        "label": "BasePath",
354
                        "name": "basepath",
355
                        "type": "string",
356
                        "optional": true,
357
                        "additionalParams": true,
358
                        "id": "openAIEmbeddings_0-input-basepath-string"
359
                    }
360
                ],
361
                "inputAnchors": [],
362
                "inputs": {
363
                    "stripNewLines": "",
364
                    "batchSize": "",
365
                    "timeout": "",
366
                    "basepath": "",
367
                    "modelName": "text-embedding-ada-002"
368
                },
369
                "outputAnchors": [
370
                    {
371
                        "id": "openAIEmbeddings_0-output-openAIEmbeddings-OpenAIEmbeddings|Embeddings",
372
                        "name": "openAIEmbeddings",
373
                        "label": "OpenAIEmbeddings",
374
                        "type": "OpenAIEmbeddings | Embeddings"
375
                    }
376
                ],
377
                "outputs": {},
378
                "selected": false
379
            },
380
            "selected": false,
381
            "positionAbsolute": {
382
                "x": 403.72014625628697,
383
                "y": -103.82540449681527
384
            },
385
            "dragging": false
386
        },
387
        {
388
            "width": 300,
389
            "height": 574,
390
            "id": "chatOpenAI_1",
391
            "position": {
392
                "x": 68.312124033115,
393
                "y": -239.65476709991256
394
            },
395
            "type": "customNode",
396
            "data": {
397
                "id": "chatOpenAI_1",
398
                "label": "ChatOpenAI",
399
                "version": 6.0,
400
                "name": "chatOpenAI",
401
                "type": "ChatOpenAI",
402
                "baseClasses": ["ChatOpenAI", "BaseChatModel", "BaseLanguageModel"],
403
                "category": "Chat Models",
404
                "description": "Wrapper around OpenAI large language models that use the Chat endpoint",
405
                "inputParams": [
406
                    {
407
                        "label": "Connect Credential",
408
                        "name": "credential",
409
                        "type": "credential",
410
                        "credentialNames": ["openAIApi"],
411
                        "id": "chatOpenAI_1-input-credential-credential"
412
                    },
413
                    {
414
                        "label": "Model Name",
415
                        "name": "modelName",
416
                        "type": "asyncOptions",
417
                        "loadMethod": "listModels",
418
                        "default": "gpt-3.5-turbo",
419
                        "id": "chatOpenAI_1-input-modelName-options"
420
                    },
421
                    {
422
                        "label": "Temperature",
423
                        "name": "temperature",
424
                        "type": "number",
425
                        "default": 0.9,
426
                        "optional": true,
427
                        "id": "chatOpenAI_1-input-temperature-number"
428
                    },
429
                    {
430
                        "label": "Max Tokens",
431
                        "name": "maxTokens",
432
                        "type": "number",
433
                        "optional": true,
434
                        "additionalParams": true,
435
                        "id": "chatOpenAI_1-input-maxTokens-number"
436
                    },
437
                    {
438
                        "label": "Top Probability",
439
                        "name": "topP",
440
                        "type": "number",
441
                        "optional": true,
442
                        "additionalParams": true,
443
                        "id": "chatOpenAI_1-input-topP-number"
444
                    },
445
                    {
446
                        "label": "Frequency Penalty",
447
                        "name": "frequencyPenalty",
448
                        "type": "number",
449
                        "optional": true,
450
                        "additionalParams": true,
451
                        "id": "chatOpenAI_1-input-frequencyPenalty-number"
452
                    },
453
                    {
454
                        "label": "Presence Penalty",
455
                        "name": "presencePenalty",
456
                        "type": "number",
457
                        "optional": true,
458
                        "additionalParams": true,
459
                        "id": "chatOpenAI_1-input-presencePenalty-number"
460
                    },
461
                    {
462
                        "label": "Timeout",
463
                        "name": "timeout",
464
                        "type": "number",
465
                        "optional": true,
466
                        "additionalParams": true,
467
                        "id": "chatOpenAI_1-input-timeout-number"
468
                    },
469
                    {
470
                        "label": "BasePath",
471
                        "name": "basepath",
472
                        "type": "string",
473
                        "optional": true,
474
                        "additionalParams": true,
475
                        "id": "chatOpenAI_1-input-basepath-string"
476
                    },
477
                    {
478
                        "label": "BaseOptions",
479
                        "name": "baseOptions",
480
                        "type": "json",
481
                        "optional": true,
482
                        "additionalParams": true,
483
                        "id": "chatOpenAI_1-input-baseOptions-json"
484
                    },
485
                    {
486
                        "label": "Allow Image Uploads",
487
                        "name": "allowImageUploads",
488
                        "type": "boolean",
489
                        "description": "Automatically uses gpt-4-vision-preview when image is being uploaded from chat. Only works with LLMChain, Conversation Chain, ReAct Agent, and Conversational Agent",
490
                        "default": false,
491
                        "optional": true,
492
                        "id": "chatOpenAI_1-input-allowImageUploads-boolean"
493
                    },
494
                    {
495
                        "label": "Image Resolution",
496
                        "description": "This parameter controls the resolution in which the model views the image.",
497
                        "name": "imageResolution",
498
                        "type": "options",
499
                        "options": [
500
                            {
501
                                "label": "Low",
502
                                "name": "low"
503
                            },
504
                            {
505
                                "label": "High",
506
                                "name": "high"
507
                            },
508
                            {
509
                                "label": "Auto",
510
                                "name": "auto"
511
                            }
512
                        ],
513
                        "default": "low",
514
                        "optional": false,
515
                        "additionalParams": true,
516
                        "id": "chatOpenAI_1-input-imageResolution-options"
517
                    }
518
                ],
519
                "inputAnchors": [
520
                    {
521
                        "label": "Cache",
522
                        "name": "cache",
523
                        "type": "BaseCache",
524
                        "optional": true,
525
                        "id": "chatOpenAI_1-input-cache-BaseCache"
526
                    }
527
                ],
528
                "inputs": {
529
                    "modelName": "gpt-3.5-turbo-16k",
530
                    "temperature": 0.9,
531
                    "maxTokens": "",
532
                    "topP": "",
533
                    "frequencyPenalty": "",
534
                    "presencePenalty": "",
535
                    "timeout": "",
536
                    "basepath": "",
537
                    "baseOptions": "",
538
                    "allowImageUploads": true,
539
                    "imageResolution": "low"
540
                },
541
                "outputAnchors": [
542
                    {
543
                        "id": "chatOpenAI_1-output-chatOpenAI-ChatOpenAI|BaseChatModel|BaseLanguageModel",
544
                        "name": "chatOpenAI",
545
                        "label": "ChatOpenAI",
546
                        "type": "ChatOpenAI | BaseChatModel | BaseLanguageModel"
547
                    }
548
                ],
549
                "outputs": {},
550
                "selected": false
551
            },
552
            "selected": false,
553
            "positionAbsolute": {
554
                "x": 68.312124033115,
555
                "y": -239.65476709991256
556
            },
557
            "dragging": false
558
        },
559
        {
560
            "width": 300,
561
            "height": 383,
562
            "id": "conversationalAgent_0",
563
            "position": {
564
                "x": 1518.944765840293,
565
                "y": 212.2513364217197
566
            },
567
            "type": "customNode",
568
            "data": {
569
                "id": "conversationalAgent_0",
570
                "label": "Conversational Agent",
571
                "version": 3,
572
                "name": "conversationalAgent",
573
                "type": "AgentExecutor",
574
                "baseClasses": ["AgentExecutor", "BaseChain", "Runnable"],
575
                "category": "Agents",
576
                "description": "Conversational agent for a chat model. It will utilize chat specific prompts",
577
                "inputParams": [
578
                    {
579
                        "label": "System Message",
580
                        "name": "systemMessage",
581
                        "type": "string",
582
                        "rows": 4,
583
                        "default": "Assistant is a large language model trained by OpenAI.\n\nAssistant is designed to be able to assist with a wide range of tasks, from answering simple questions to providing in-depth explanations and discussions on a wide range of topics. As a language model, Assistant is able to generate human-like text based on the input it receives, allowing it to engage in natural-sounding conversations and provide responses that are coherent and relevant to the topic at hand.\n\nAssistant is constantly learning and improving, and its capabilities are constantly evolving. It is able to process and understand large amounts of text, and can use this knowledge to provide accurate and informative responses to a wide range of questions. Additionally, Assistant is able to generate its own text based on the input it receives, allowing it to engage in discussions and provide explanations and descriptions on a wide range of topics.\n\nOverall, Assistant is a powerful system that can help with a wide range of tasks and provide valuable insights and information on a wide range of topics. Whether you need help with a specific question or just want to have a conversation about a particular topic, Assistant is here to assist.",
584
                        "optional": true,
585
                        "additionalParams": true,
586
                        "id": "conversationalAgent_0-input-systemMessage-string"
587
                    },
588
                    {
589
                        "label": "Max Iterations",
590
                        "name": "maxIterations",
591
                        "type": "number",
592
                        "optional": true,
593
                        "additionalParams": true,
594
                        "id": "conversationalAgent_0-input-maxIterations-number"
595
                    }
596
                ],
597
                "inputAnchors": [
598
                    {
599
                        "label": "Allowed Tools",
600
                        "name": "tools",
601
                        "type": "Tool",
602
                        "list": true,
603
                        "id": "conversationalAgent_0-input-tools-Tool"
604
                    },
605
                    {
606
                        "label": "Chat Model",
607
                        "name": "model",
608
                        "type": "BaseChatModel",
609
                        "id": "conversationalAgent_0-input-model-BaseChatModel"
610
                    },
611
                    {
612
                        "label": "Memory",
613
                        "name": "memory",
614
                        "type": "BaseChatMemory",
615
                        "id": "conversationalAgent_0-input-memory-BaseChatMemory"
616
                    },
617
                    {
618
                        "label": "Input Moderation",
619
                        "description": "Detect text that could generate harmful output and prevent it from being sent to the language model",
620
                        "name": "inputModeration",
621
                        "type": "Moderation",
622
                        "optional": true,
623
                        "list": true,
624
                        "id": "conversationalAgent_0-input-inputModeration-Moderation"
625
                    }
626
                ],
627
                "inputs": {
628
                    "inputModeration": "",
629
                    "tools": ["{{webBrowser_0.data.instance}}"],
630
                    "model": "{{chatOpenAI_1.data.instance}}",
631
                    "memory": "{{bufferMemory_0.data.instance}}",
632
                    "systemMessage": "Assistant is a large language model trained by OpenAI.\n\nAssistant is designed to be able to assist with a wide range of tasks, from answering simple questions to providing in-depth explanations and discussions on a wide range of topics. As a language model, Assistant is able to generate human-like text based on the input it receives, allowing it to engage in natural-sounding conversations and provide responses that are coherent and relevant to the topic at hand.\n\nAssistant is constantly learning and improving, and its capabilities are constantly evolving. It is able to process and understand large amounts of text, and can use this knowledge to provide accurate and informative responses to a wide range of questions. Additionally, Assistant is able to generate its own text based on the input it receives, allowing it to engage in discussions and provide explanations and descriptions on a wide range of topics.\n\nOverall, Assistant is a powerful system that can help with a wide range of tasks and provide valuable insights and information on a wide range of topics. Whether you need help with a specific question or just want to have a conversation about a particular topic, Assistant is here to assist."
633
                },
634
                "outputAnchors": [
635
                    {
636
                        "id": "conversationalAgent_0-output-conversationalAgent-AgentExecutor|BaseChain|Runnable",
637
                        "name": "conversationalAgent",
638
                        "label": "AgentExecutor",
639
                        "type": "AgentExecutor | BaseChain | Runnable"
640
                    }
641
                ],
642
                "outputs": {},
643
                "selected": false
644
            },
645
            "selected": false,
646
            "positionAbsolute": {
647
                "x": 1518.944765840293,
648
                "y": 212.2513364217197
649
            },
650
            "dragging": false
651
        }
652
    ],
653
    "edges": [
654
        {
655
            "source": "openAIEmbeddings_0",
656
            "sourceHandle": "openAIEmbeddings_0-output-openAIEmbeddings-OpenAIEmbeddings|Embeddings",
657
            "target": "webBrowser_0",
658
            "targetHandle": "webBrowser_0-input-embeddings-Embeddings",
659
            "type": "buttonedge",
660
            "id": "openAIEmbeddings_0-openAIEmbeddings_0-output-openAIEmbeddings-OpenAIEmbeddings|Embeddings-webBrowser_0-webBrowser_0-input-embeddings-Embeddings",
661
            "data": {
662
                "label": ""
663
            }
664
        },
665
        {
666
            "source": "chatOpenAI_0",
667
            "sourceHandle": "chatOpenAI_0-output-chatOpenAI-ChatOpenAI|BaseChatModel|BaseLanguageModel",
668
            "target": "webBrowser_0",
669
            "targetHandle": "webBrowser_0-input-model-BaseLanguageModel",
670
            "type": "buttonedge",
671
            "id": "chatOpenAI_0-chatOpenAI_0-output-chatOpenAI-ChatOpenAI|BaseChatModel|BaseLanguageModel-webBrowser_0-webBrowser_0-input-model-BaseLanguageModel",
672
            "data": {
673
                "label": ""
674
            }
675
        },
676
        {
677
            "source": "webBrowser_0",
678
            "sourceHandle": "webBrowser_0-output-webBrowser-WebBrowser|Tool|StructuredTool|BaseLangChain",
679
            "target": "conversationalAgent_0",
680
            "targetHandle": "conversationalAgent_0-input-tools-Tool",
681
            "type": "buttonedge",
682
            "id": "webBrowser_0-webBrowser_0-output-webBrowser-WebBrowser|Tool|StructuredTool|BaseLangChain-conversationalAgent_0-conversationalAgent_0-input-tools-Tool",
683
            "data": {
684
                "label": ""
685
            }
686
        },
687
        {
688
            "source": "chatOpenAI_1",
689
            "sourceHandle": "chatOpenAI_1-output-chatOpenAI-ChatOpenAI|BaseChatModel|BaseLanguageModel",
690
            "target": "conversationalAgent_0",
691
            "targetHandle": "conversationalAgent_0-input-model-BaseChatModel",
692
            "type": "buttonedge",
693
            "id": "chatOpenAI_1-chatOpenAI_1-output-chatOpenAI-ChatOpenAI|BaseChatModel|BaseLanguageModel-conversationalAgent_0-conversationalAgent_0-input-model-BaseChatModel",
694
            "data": {
695
                "label": ""
696
            }
697
        },
698
        {
699
            "source": "bufferMemory_0",
700
            "sourceHandle": "bufferMemory_0-output-bufferMemory-BufferMemory|BaseChatMemory|BaseMemory",
701
            "target": "conversationalAgent_0",
702
            "targetHandle": "conversationalAgent_0-input-memory-BaseChatMemory",
703
            "type": "buttonedge",
704
            "id": "bufferMemory_0-bufferMemory_0-output-bufferMemory-BufferMemory|BaseChatMemory|BaseMemory-conversationalAgent_0-conversationalAgent_0-input-memory-BaseChatMemory",
705
            "data": {
706
                "label": ""
707
            }
708
        }
709
    ]
710
}
711

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.