-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnode.json
More file actions
2099 lines (2099 loc) · 83.4 KB
/
node.json
File metadata and controls
2099 lines (2099 loc) · 83.4 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"node_id": "lfx-runtime-executor-node",
"name": "LFX Runtime Executor Node",
"description": "Langflow Runtime Component Executor Node - Executes Langflow components in isolated environments",
"version": "1.0.0",
"api_url": "http://localhost:8000",
"ip_address": "0.0.0.0",
"docker_image": "droqai/lfx-runtime-executor-node",
"deployment_location": "local",
"category": "Langflow",
"status": "active",
"author": "Langflow",
"created_at": "2025-11-23T00:00:00Z",
"source_code_location": "https://github.com/droq-ai/lfx-runtime-executor-node",
"components": {
"AIMLEmbeddingsComponent": {
"path": "lfx.src.lfx.components.aiml.aiml_embeddings",
"description": "Generate embeddings using the AI/ML API.",
"author": "Langflow",
"display_name": "AI/ML API Embeddings"
},
"AIMLModelComponent": {
"path": "lfx.src.lfx.components.aiml.aiml",
"description": "Generates text using AI/ML API LLMs.",
"author": "Langflow",
"display_name": "AI/ML API"
},
"APIRequestComponent": {
"path": "lfx.src.lfx.components.data.api_request",
"description": "Make HTTP requests using URL or cURL commands.",
"author": "Langflow",
"display_name": "API Request"
},
"AddContentToPage": {
"path": "lfx.src.lfx.components.Notion.add_content_to_page",
"description": "Convert markdown text to Notion blocks and append them to a Notion page.",
"author": "Langflow",
"display_name": "Markdown Text"
},
"AgentComponent": {
"path": "lfx.src.lfx.components.agents.agent",
"description": "Define the agent",
"author": "Langflow",
"display_name": "Model Provider"
},
"AlterMetadataComponent": {
"path": "lfx.src.lfx.components.processing.alter_metadata",
"description": "Adds/Removes Metadata Dictionary on inputs",
"author": "Langflow",
"display_name": "Alter Metadata"
},
"AmazonBedrockComponent": {
"path": "lfx.src.lfx.components.amazon.amazon_bedrock_model",
"description": "Langflow component for AmazonBedroc",
"author": "Langflow",
"display_name": "Model ID"
},
"AmazonBedrockConverseComponent": {
"path": "lfx.src.lfx.components.amazon.amazon_bedrock_converse",
"description": "Langflow component for AmazonBedrockConvers",
"author": "Langflow",
"display_name": "Model ID"
},
"AmazonBedrockEmbeddingsComponent": {
"path": "lfx.src.lfx.components.amazon.amazon_bedrock_embedding",
"description": "Generate embeddings using Amazon Bedrock models.",
"author": "Langflow",
"display_name": "Model Id"
},
"AmazonKendraRetrieverComponent": {
"path": "lfx.src.lfx.components.deactivated.amazon_kendra",
"description": "Retriever that uses the Amazon Kendra API.",
"author": "Langflow",
"display_name": "Index ID"
},
"AnthropicModelComponent": {
"path": "lfx.src.lfx.components.anthropic.anthropic",
"description": "Generate text using Anthropic",
"author": "Langflow",
"display_name": "Anthropic"
},
"ApifyActorsComponent": {
"path": "lfx.src.lfx.components.apify.apify_actor",
"description": "Langflow component for ApifyActor",
"author": "Langflow",
"display_name": "Apify Actors"
},
"ArXivComponent": {
"path": "lfx.src.lfx.components.arxiv.arxiv",
"description": "Search and retrieve papers from arXiv.org",
"author": "Langflow",
"display_name": "arXiv"
},
"AssemblyAIGetSubtitles": {
"path": "lfx.src.lfx.components.assemblyai.assemblyai_get_subtitles",
"description": "Export your transcript in SRT or VTT format for subtitles and closed captions",
"author": "Langflow",
"display_name": "AssemblyAI Get Subtitles"
},
"AssemblyAILeMUR": {
"path": "lfx.src.lfx.components.assemblyai.assemblyai_lemur",
"description": "Apply Large Language Models to spoken data using the AssemblyAI LeMUR framework",
"author": "Langflow",
"display_name": "AssemblyAI LeMUR"
},
"AssemblyAIListTranscripts": {
"path": "lfx.src.lfx.components.assemblyai.assemblyai_list_transcripts",
"description": "Retrieve a list of transcripts from AssemblyAI with filtering options",
"author": "Langflow",
"display_name": "AssemblyAI List Transcripts"
},
"AssemblyAITranscriptionJobCreator": {
"path": "lfx.src.lfx.components.assemblyai.assemblyai_start_transcript",
"description": "Create a transcription job for an audio file using AssemblyAI with advanced options",
"author": "Langflow",
"display_name": "AssemblyAI Start Transcript"
},
"AssemblyAITranscriptionJobPoller": {
"path": "lfx.src.lfx.components.assemblyai.assemblyai_poll_transcript",
"description": "Poll for the status of a transcription job using AssemblyAI",
"author": "Langflow",
"display_name": "AssemblyAI Poll Transcript"
},
"AstraDBCQLToolComponent": {
"path": "lfx.src.lfx.components.datastax.astradb_cql",
"description": "Create a tool to get transactional data from DataStax Astra DB CQL Table",
"author": "Langflow",
"display_name": "Tool Name"
},
"AstraDBChatMemory": {
"path": "lfx.src.lfx.components.datastax.astradb_chatmemory",
"description": "Retrieves and stores chat messages from Astra DB.",
"author": "Langflow",
"display_name": "Astra DB Chat Memory"
},
"AstraDBGraphVectorStoreComponent": {
"path": "lfx.src.lfx.components.datastax.astradb_graph",
"description": "Implementation of Graph Vector Store using Astra DB",
"author": "Langflow",
"display_name": "Metadata incoming links key"
},
"AstraDBToolComponent": {
"path": "lfx.src.lfx.components.datastax.astradb_tool",
"description": "Search query to find relevant documents.",
"author": "Langflow",
"display_name": "Tool Name"
},
"AstraDBVectorStoreComponent": {
"path": "lfx.src.lfx.components.datastax.astradb_vectorstore",
"description": "Ingest and search documents in Astra DB",
"author": "Langflow",
"display_name": "Embedding Model"
},
"AstraVectorizeComponent": {
"path": "lfx.src.lfx.components.datastax.astradb_vectorize",
"description": "Configuration options for Astra Vectorize server-side embeddings.",
"author": "Langflow",
"display_name": "Provider"
},
"AzureChatOpenAIComponent": {
"path": "lfx.src.lfx.components.azure.azure_openai",
"description": "Generate text using Azure OpenAI LLMs.",
"author": "Langflow",
"display_name": "Azure Endpoint"
},
"AzureOpenAIEmbeddingsComponent": {
"path": "lfx.src.lfx.components.azure.azure_openai_embeddings",
"description": "Generate embeddings using Azure OpenAI models.",
"author": "Langflow",
"display_name": "Model"
},
"BatchRunComponent": {
"path": "lfx.src.lfx.components.processing.batch_run",
"description": "Runs an LLM on each row of a DataFrame column. If no column is specified, all columns are used.",
"author": "Langflow",
"display_name": "Batch Run"
},
"BigQueryExecutorComponent": {
"path": "lfx.src.lfx.components.google.google_bq_sql_executor",
"description": "Execute SQL queries on Google BigQuery.",
"author": "Langflow",
"display_name": "BigQuery"
},
"BingSearchAPIComponent": {
"path": "lfx.src.lfx.components.bing.bing_search_api",
"description": "Call the Bing Search API.",
"author": "Langflow",
"display_name": "Bing Search API"
},
"CSVAgentComponent": {
"path": "lfx.src.lfx.components.langchain_utilities.csv_agent",
"description": "Construct a CSV agent from a CSV and tools.",
"author": "Langflow",
"display_name": "CSV Agent"
},
"CSVToDataComponent": {
"path": "lfx.src.lfx.components.data.csv_to_data",
"description": "Load a CSV file, CSV from a file path, or a valid CSV string and convert it to a list of Data",
"author": "Langflow",
"display_name": "Load CSV"
},
"CalculatorComponent": {
"path": "lfx.src.lfx.components.helpers.calculator_core",
"description": "Perform basic arithmetic operations on a given expression.",
"author": "Langflow",
"display_name": "Calculator"
},
"CalculatorToolComponent": {
"path": "lfx.src.lfx.components.tools.calculator",
"description": "Perform basic arithmetic operations on a given expression.",
"author": "Langflow",
"display_name": "Calculator"
},
"CassandraChatMemory": {
"path": "lfx.src.lfx.components.cassandra.cassandra_chat",
"description": "Retrieves and store chat messages from Apache Cassandra.",
"author": "Langflow",
"display_name": "Cassandra Chat Memory"
},
"CassandraGraphVectorStoreComponent": {
"path": "lfx.src.lfx.components.cassandra.cassandra_graph",
"description": "Cassandra Graph Vector Store",
"author": "Langflow",
"display_name": "Cassandra Graph"
},
"CassandraVectorStoreComponent": {
"path": "lfx.src.lfx.components.cassandra.cassandra",
"description": "Cassandra Vector Store with search capabilities",
"author": "Langflow",
"display_name": "Cassandra"
},
"CharacterTextSplitterComponent": {
"path": "lfx.src.lfx.components.langchain_utilities.character",
"description": "Split text by number of characters.",
"author": "Langflow",
"display_name": "Character Text Splitter"
},
"ChatInput": {
"path": "lfx.src.lfx.components.input_output.chat",
"description": "Get chat inputs from the Playground.",
"author": "Langflow",
"display_name": "Chat Input"
},
"ChatLiteLLMModelComponent": {
"path": "lfx.src.lfx.components.deactivated.chat_litellm_model",
"description": "`LiteLLM` collection of large language models.",
"author": "Langflow",
"display_name": "LiteLLM"
},
"ChatOllamaComponent": {
"path": "lfx.src.lfx.components.ollama.ollama",
"description": "Generate text using Ollama Local LLMs.",
"author": "Langflow",
"display_name": "Ollama"
},
"ChatOutput": {
"path": "lfx.src.lfx.components.input_output.chat_output",
"description": "Display a chat message in the Playground.",
"author": "Langflow",
"display_name": "Chat Output"
},
"ChatVertexAIComponent": {
"path": "lfx.src.lfx.components.vertexai.vertexai",
"description": "Generate text using Vertex AI LLMs.",
"author": "Langflow",
"display_name": "Vertex AI"
},
"ChromaVectorStoreComponent": {
"path": "lfx.src.lfx.components.chroma.chroma",
"description": "Chroma Vector Store with search capabilities",
"author": "Langflow",
"display_name": "Collection Name"
},
"ChunkDoclingDocumentComponent": {
"path": "lfx.src.lfx.components.docling.chunk_docling_document",
"description": "Use the DocumentDocument chunkers to split the document into chunks.",
"author": "Langflow",
"display_name": "Data or DataFrame"
},
"CleanlabEvaluator": {
"path": "lfx.src.lfx.components.cleanlab.cleanlab_evaluator",
"description": "Evaluates any LLM response using Cleanlab and outputs trust score and explanation.",
"author": "Langflow",
"display_name": "Cleanlab Evaluator"
},
"CleanlabRAGEvaluator": {
"path": "lfx.src.lfx.components.cleanlab.cleanlab_rag_evaluator",
"description": "Evaluates context, query, and response from a RAG pipeline using Cleanlab and outputs trust metrics.",
"author": "Langflow",
"display_name": "Cleanlab RAG Evaluator"
},
"CleanlabRemediator": {
"path": "lfx.src.lfx.components.cleanlab.cleanlab_remediator",
"description": "Langflow component for CleanlabRemediator",
"author": "Langflow",
"display_name": "Cleanlab Remediator"
},
"ClickhouseVectorStoreComponent": {
"path": "lfx.src.lfx.components.clickhouse.clickhouse",
"description": "ClickHouse Vector Store with search capabilities",
"author": "Langflow",
"display_name": "ClickHouse"
},
"CloudflareWorkersAIEmbeddingsComponent": {
"path": "lfx.src.lfx.components.cloudflare.cloudflare",
"description": "Generate embeddings using Cloudflare Workers AI models.",
"author": "Langflow",
"display_name": "Cloudflare account ID"
},
"CodeBlockExtractor": {
"path": "lfx.src.lfx.components.deactivated.code_block_extractor",
"description": "Extracts code block from text.",
"author": "Langflow",
"display_name": "Code Block Extractor"
},
"CohereComponent": {
"path": "lfx.src.lfx.components.cohere.cohere_models",
"description": "Generate text using Cohere LLMs.",
"author": "Langflow",
"display_name": "Cohere Language Models"
},
"CohereEmbeddingsComponent": {
"path": "lfx.src.lfx.components.cohere.cohere_embeddings",
"description": "Generate embeddings using Cohere models.",
"author": "Langflow",
"display_name": "Cohere Embeddings"
},
"CohereRerankComponent": {
"path": "lfx.src.lfx.components.cohere.cohere_rerank",
"description": "Rerank documents using the Cohere API.",
"author": "Langflow",
"display_name": "Cohere Rerank"
},
"CombinatorialReasonerComponent": {
"path": "lfx.src.lfx.components.icosacomputing.combinatorial_reasoner",
"description": "Uses Combinatorial Optimization to construct an optimal prompt with embedded reasons. Sign up here:\\nhttps://forms.gle/oWNv2NKjBNaqqvCx6",
"author": "Langflow",
"display_name": "Combinatorial Reasoner"
},
"CombineTextComponent": {
"path": "lfx.src.lfx.components.processing.combine_text",
"description": "Concatenate two text sources into a single text chunk using a specified delimiter.",
"author": "Langflow",
"display_name": "Combine Text"
},
"CometAPIComponent": {
"path": "lfx.src.lfx.components.cometapi.cometapi",
"description": "All AI Models in One API 500+ AI Models",
"author": "Langflow",
"display_name": "CometAPI"
},
"ComposioAPIComponent": {
"path": "lfx.src.lfx.components.composio.composio_api",
"description": "Use Composio toolset to run actions with your agent",
"author": "Langflow",
"display_name": "Entity ID"
},
"ComposioAgentQLAPIComponent": {
"path": "lfx.src.lfx.components.composio.agentql_composio",
"description": "Langflow component for ComposioAgentQLAP",
"author": "Langflow",
"display_name": "AgentQL"
},
"ComposioAgiledAPIComponent": {
"path": "lfx.src.lfx.components.composio.agiled_composio",
"description": "Langflow component for ComposioAgiledAP",
"author": "Langflow",
"display_name": "Agiled"
},
"ComposioAirtableAPIComponent": {
"path": "lfx.src.lfx.components.composio.airtable_composio",
"description": "Langflow component for ComposioAirtableAP",
"author": "Langflow",
"display_name": "Airtable"
},
"ComposioAsanaAPIComponent": {
"path": "lfx.src.lfx.components.composio.asana_composio",
"description": "Langflow component for ComposioAsanaAP",
"author": "Langflow",
"display_name": "Asana"
},
"ComposioAttioAPIComponent": {
"path": "lfx.src.lfx.components.composio.attio_composio",
"description": "Langflow component for ComposioAttioAP",
"author": "Langflow",
"display_name": "Attio"
},
"ComposioBolnaAPIComponent": {
"path": "lfx.src.lfx.components.composio.bolna_composio",
"description": "Langflow component for ComposioBolnaAP",
"author": "Langflow",
"display_name": "Bolna"
},
"ComposioBrightdataAPIComponent": {
"path": "lfx.src.lfx.components.composio.brightdata_composio",
"description": "Langflow component for ComposioBrightdataAP",
"author": "Langflow",
"display_name": "Brightdata"
},
"ComposioCalendlyAPIComponent": {
"path": "lfx.src.lfx.components.composio.calendly_composio",
"description": "Langflow component for ComposioCalendlyAP",
"author": "Langflow",
"display_name": "Calendly"
},
"ComposioCanvasAPIComponent": {
"path": "lfx.src.lfx.components.composio.canvas_composio",
"description": "Langflow component for ComposioCanvasAP",
"author": "Langflow",
"display_name": "Canvas"
},
"ComposioContentfulAPIComponent": {
"path": "lfx.src.lfx.components.composio.contentful_composio",
"description": "Langflow component for ComposioContentfulAP",
"author": "Langflow",
"display_name": "Contentful"
},
"ComposioDigicertAPIComponent": {
"path": "lfx.src.lfx.components.composio.digicert_composio",
"description": "Langflow component for ComposioDigicertAP",
"author": "Langflow",
"display_name": "Digicert"
},
"ComposioDiscordAPIComponent": {
"path": "lfx.src.lfx.components.composio.discord_composio",
"description": "Langflow component for ComposioDiscordAP",
"author": "Langflow",
"display_name": "Discord"
},
"ComposioDropboxAPIComponent": {
"path": "lfx.src.lfx.components.composio.dropbox_compnent",
"description": "Langflow component for ComposioDropboxAP",
"author": "Langflow",
"display_name": "Dropbox"
},
"ComposioFigmaAPIComponent": {
"path": "lfx.src.lfx.components.composio.figma_composio",
"description": "Langflow component for ComposioFigmaAP",
"author": "Langflow",
"display_name": "Figma"
},
"ComposioFinageAPIComponent": {
"path": "lfx.src.lfx.components.composio.finage_composio",
"description": "Langflow component for ComposioFinageAP",
"author": "Langflow",
"display_name": "Finage"
},
"ComposioFixerAPIComponent": {
"path": "lfx.src.lfx.components.composio.fixer_composio",
"description": "Langflow component for ComposioFixerAP",
"author": "Langflow",
"display_name": "Fixer"
},
"ComposioFlexisignAPIComponent": {
"path": "lfx.src.lfx.components.composio.flexisign_composio",
"description": "Langflow component for ComposioFlexisignAP",
"author": "Langflow",
"display_name": "Flexisign"
},
"ComposioFreshdeskAPIComponent": {
"path": "lfx.src.lfx.components.composio.freshdesk_composio",
"description": "Langflow component for ComposioFreshdeskAP",
"author": "Langflow",
"display_name": "Freshdesk"
},
"ComposioGitHubAPIComponent": {
"path": "lfx.src.lfx.components.composio.github_composio",
"description": "Langflow component for ComposioGitHubAP",
"author": "Langflow",
"display_name": "GitHub"
},
"ComposioGmailAPIComponent": {
"path": "lfx.src.lfx.components.composio.gmail_composio",
"description": "Langflow component for ComposioGmailAP",
"author": "Langflow",
"display_name": "Gmail"
},
"ComposioGoogleCalendarAPIComponent": {
"path": "lfx.src.lfx.components.composio.googlecalendar_composio",
"description": "Langflow component for ComposioGoogleCalendarAP",
"author": "Langflow",
"display_name": "Google Calendar"
},
"ComposioGoogleDocsAPIComponent": {
"path": "lfx.src.lfx.components.composio.googledocs_composio",
"description": "Langflow component for ComposioGoogleDocsAP",
"author": "Langflow",
"display_name": "Google Docs"
},
"ComposioGoogleSheetsAPIComponent": {
"path": "lfx.src.lfx.components.composio.googlesheets_composio",
"description": "Langflow component for ComposioGoogleSheetsAP",
"author": "Langflow",
"display_name": "Google Sheets"
},
"ComposioGoogleTasksAPIComponent": {
"path": "lfx.src.lfx.components.composio.googletasks_composio",
"description": "Langflow component for ComposioGoogleTasksAP",
"author": "Langflow",
"display_name": "Google Tasks"
},
"ComposioGoogleclassroomAPIComponent": {
"path": "lfx.src.lfx.components.composio.googleclassroom_composio",
"description": "Langflow component for ComposioGoogleclassroomAP",
"author": "Langflow",
"display_name": "Google Classroom"
},
"ComposioGooglemeetAPIComponent": {
"path": "lfx.src.lfx.components.composio.googlemeet_composio",
"description": "Langflow component for ComposioGooglemeetAP",
"author": "Langflow",
"display_name": "Google Meet"
},
"ComposioInstagramAPIComponent": {
"path": "lfx.src.lfx.components.composio.instagram_composio",
"description": "Langflow component for ComposioInstagramAP",
"author": "Langflow",
"display_name": "Instagram"
},
"ComposioJiraAPIComponent": {
"path": "lfx.src.lfx.components.composio.jira_composio",
"description": "Langflow component for ComposioJiraAP",
"author": "Langflow",
"display_name": "Jira"
},
"ComposioJotformAPIComponent": {
"path": "lfx.src.lfx.components.composio.jotform_composio",
"description": "Langflow component for ComposioJotformAP",
"author": "Langflow",
"display_name": "Jotform"
},
"ComposioKlaviyoAPIComponent": {
"path": "lfx.src.lfx.components.composio.klaviyo_composio",
"description": "Langflow component for ComposioKlaviyoAP",
"author": "Langflow",
"display_name": "Klaviyo"
},
"ComposioLinearAPIComponent": {
"path": "lfx.src.lfx.components.composio.linear_composio",
"description": "Langflow component for ComposioLinearAP",
"author": "Langflow",
"display_name": "Linear"
},
"ComposioListennotesAPIComponent": {
"path": "lfx.src.lfx.components.composio.listennotes_composio",
"description": "Langflow component for ComposioListennotesAP",
"author": "Langflow",
"display_name": "Listennotes"
},
"ComposioMiroAPIComponent": {
"path": "lfx.src.lfx.components.composio.miro_composio",
"description": "Langflow component for ComposioMiroAP",
"author": "Langflow",
"display_name": "Miro"
},
"ComposioMissiveAPIComponent": {
"path": "lfx.src.lfx.components.composio.missive_composio",
"description": "Langflow component for ComposioMissiveAP",
"author": "Langflow",
"display_name": "Missive"
},
"ComposioNotionAPIComponent": {
"path": "lfx.src.lfx.components.composio.notion_composio",
"description": "Langflow component for ComposioNotionAP",
"author": "Langflow",
"display_name": "Notion"
},
"ComposioOneDriveAPIComponent": {
"path": "lfx.src.lfx.components.composio.onedrive_composio",
"description": "Langflow component for ComposioOneDriveAP",
"author": "Langflow",
"display_name": "OneDrive"
},
"ComposioOutlookAPIComponent": {
"path": "lfx.src.lfx.components.composio.outlook_composio",
"description": "Langflow component for ComposioOutlookAP",
"author": "Langflow",
"display_name": "Outlook"
},
"ComposioPandadocAPIComponent": {
"path": "lfx.src.lfx.components.composio.pandadoc_composio",
"description": "Langflow component for ComposioPandadocAP",
"author": "Langflow",
"display_name": "Pandadoc"
},
"ComposioRedditAPIComponent": {
"path": "lfx.src.lfx.components.composio.reddit_composio",
"description": "Langflow component for ComposioRedditAP",
"author": "Langflow",
"display_name": "Reddit"
},
"ComposioSlackAPIComponent": {
"path": "lfx.src.lfx.components.composio.slack_composio",
"description": "Langflow component for ComposioSlackAP",
"author": "Langflow",
"display_name": "Limit"
},
"ComposioSlackbotAPIComponent": {
"path": "lfx.src.lfx.components.composio.slackbot_composio",
"description": "Langflow component for ComposioSlackbotAP",
"author": "Langflow",
"display_name": "Slackbot"
},
"ComposioSupabaseAPIComponent": {
"path": "lfx.src.lfx.components.composio.supabase_composio",
"description": "Langflow component for ComposioSupabaseAP",
"author": "Langflow",
"display_name": "Supabase"
},
"ComposioTimelinesAIAPIComponent": {
"path": "lfx.src.lfx.components.composio.timelinesai_composio",
"description": "Langflow component for ComposioTimelinesAIAP",
"author": "Langflow",
"display_name": "TimelinesAI"
},
"ComposioTodoistAPIComponent": {
"path": "lfx.src.lfx.components.composio.todoist_composio",
"description": "Langflow component for ComposioTodoistAP",
"author": "Langflow",
"display_name": "Todoist"
},
"ComposioWrikeAPIComponent": {
"path": "lfx.src.lfx.components.composio.wrike_composio",
"description": "Langflow component for ComposioWrikeAP",
"author": "Langflow",
"display_name": "Wrike"
},
"ComposioYoutubeAPIComponent": {
"path": "lfx.src.lfx.components.composio.youtube_composio",
"description": "Langflow component for ComposioYoutubeAP",
"author": "Langflow",
"display_name": "Youtube"
},
"ConditionalRouterComponent": {
"path": "lfx.src.lfx.components.logic.conditional_router",
"description": "Routes an input message to a corresponding output based on text comparison.",
"author": "Langflow",
"display_name": "If-Else"
},
"ConfluenceComponent": {
"path": "lfx.src.lfx.components.confluence.confluence",
"description": "Confluence wiki collaboration platform",
"author": "Langflow",
"display_name": "Confluence"
},
"ConversationChainComponent": {
"path": "lfx.src.lfx.components.langchain_utilities.conversation",
"description": "Chain to have a conversation and load context from memory.",
"author": "Langflow",
"display_name": "ConversationChain"
},
"ConvertAstraToTwelveLabs": {
"path": "lfx.src.lfx.components.twelvelabs.convert_astra_results",
"description": "Converts Astra DB search results to inputs compatible with TwelveLabs Pegasus.",
"author": "Langflow",
"display_name": "Convert Astra DB to Pegasus Input"
},
"CouchbaseVectorStoreComponent": {
"path": "lfx.src.lfx.components.couchbase.couchbase",
"description": "Couchbase Vector Store with search capabilities",
"author": "Langflow",
"display_name": "Couchbase"
},
"CreateDataComponent": {
"path": "lfx.src.lfx.components.processing.create_data",
"description": "Dynamically create a Data with a specified number of fields.",
"author": "Langflow",
"display_name": "Number of Fields"
},
"CreateListComponent": {
"path": "lfx.src.lfx.components.helpers.create_list",
"description": "Creates a list of texts.",
"author": "Langflow",
"display_name": "Create List"
},
"CrewAIAgentComponent": {
"path": "lfx.src.lfx.components.crewai.crewai",
"description": "Represents an agent of CrewAI.",
"author": "Langflow",
"display_name": "CrewAI Agent"
},
"CugaComponent": {
"path": "lfx.src.lfx.components.agents.cuga_agent",
"description": "Define the Cuga agent",
"author": "Langflow",
"display_name": "Model Provider"
},
"CurrentDateComponent": {
"path": "lfx.src.lfx.components.helpers.current_date",
"description": "Returns the current date and time in the selected timezone.",
"author": "Langflow",
"display_name": "Current Date"
},
"CustomComponent": {
"path": "lfx.src.lfx.components.custom_component.custom_component",
"description": "Use as a template to create your own component.",
"author": "Langflow",
"display_name": "Custom Component"
},
"DataConditionalRouterComponent": {
"path": "lfx.src.lfx.components.logic.data_conditional_router",
"description": "Route Data object(s) based on a condition applied to a specified key, including boolean validation.",
"author": "Langflow",
"display_name": "Condition"
},
"DataFilterComponent": {
"path": "lfx.src.lfx.components.processing.filter_data_values",
"description": "Langflow component for DataFilte",
"author": "Langflow",
"display_name": "Filter Values"
},
"DataFrameOperationsComponent": {
"path": "lfx.src.lfx.components.processing.dataframe_operations",
"description": "Perform various operations on a DataFrame.",
"author": "Langflow",
"display_name": "DataFrame Operations"
},
"DataFrameToToolsetComponent": {
"path": "lfx.src.lfx.components.processing.dataframe_to_toolset",
"description": "Convert each row of a DataFrame into a callable tool/action in a toolset.",
"author": "Langflow",
"display_name": "DataFrame to Toolset"
},
"DataOperationsComponent": {
"path": "lfx.src.lfx.components.processing.data_operations",
"description": "Perform various operations on a Data object.",
"author": "Langflow",
"display_name": "Data Operations"
},
"DataToDataFrameComponent": {
"path": "lfx.src.lfx.components.processing.data_to_dataframe",
"description": "Langflow component for DataToDataFram",
"author": "Langflow",
"display_name": "Data → DataFrame"
},
"DeepSeekModelComponent": {
"path": "lfx.src.lfx.components.deepseek.deepseek",
"description": "Generate text using DeepSeek LLMs.",
"author": "Langflow",
"display_name": "DeepSeek"
},
"DirectoryComponent": {
"path": "lfx.src.lfx.components.data.directory",
"description": "Recursively load files from a directory.",
"author": "Langflow",
"display_name": "Directory"
},
"DoclingInlineComponent": {
"path": "lfx.src.lfx.components.docling.docling_inline",
"description": "Uses Docling to process input documents running the Docling models locally.",
"author": "Langflow",
"display_name": "Docling"
},
"DoclingRemoteComponent": {
"path": "lfx.src.lfx.components.docling.docling_remote",
"description": "Uses Docling to process input documents connecting to your instance of Docling Serve.",
"author": "Langflow",
"display_name": "Docling Serve"
},
"DocumentsToDataComponent": {
"path": "lfx.src.lfx.components.deactivated.documents_to_data",
"description": "Convert LangChain Documents into Data.",
"author": "Langflow",
"display_name": "Documents ⇢ Data"
},
"Dotenv": {
"path": "lfx.src.lfx.components.datastax.dotenv",
"description": "Load .env file into env vars",
"author": "Langflow",
"display_name": "Dotenv"
},
"DuckDuckGoSearchComponent": {
"path": "lfx.src.lfx.components.duckduckgo.duck_duck_go_search_run",
"description": "Search the web using DuckDuckGo with customizable result limits",
"author": "Langflow",
"display_name": "DuckDuckGo Search"
},
"DynamicCreateDataComponent": {
"path": "lfx.src.lfx.components.processing.dynamic_create_data",
"description": "Dynamically create a Data with a specified number of fields.",
"author": "Langflow",
"display_name": "Input Configuration"
},
"ElasticsearchVectorStoreComponent": {
"path": "lfx.src.lfx.components.elastic.elasticsearch",
"description": "Elasticsearch Vector Store with with advanced, customizable search capabilities.",
"author": "Langflow",
"display_name": "Elasticsearch URL"
},
"EmbedComponent": {
"path": "lfx.src.lfx.components.deactivated.embed",
"description": "Langflow component for Embe",
"author": "Langflow",
"display_name": "Embed Texts"
},
"EmbeddingModelComponent": {
"path": "lfx.src.lfx.components.models.embedding_model",
"description": "Generate embeddings using a specified provider.",
"author": "Langflow",
"display_name": "Embedding Model"
},
"EmbeddingSimilarityComponent": {
"path": "lfx.src.lfx.components.embeddings.similarity",
"description": "Compute selected form of similarity between two embedding vectors.",
"author": "Langflow",
"display_name": "Embedding Vectors"
},
"ExaSearchToolkit": {
"path": "lfx.src.lfx.components.exa.exa_search",
"description": "Exa Search toolkit for search and content retrieval",
"author": "Langflow",
"display_name": "Exa Search"
},
"ExportDoclingDocumentComponent": {
"path": "lfx.src.lfx.components.docling.export_docling_document",
"description": "Export DoclingDocument to markdown, html or other formats.",
"author": "Langflow",
"display_name": "Data or DataFrame"
},
"ExtractDataKeyComponent": {
"path": "lfx.src.lfx.components.processing.extract_key",
"description": "Langflow component for ExtractDataKe",
"author": "Langflow",
"display_name": "Extract Key"
},
"ExtractKeyFromDataComponent": {
"path": "lfx.src.lfx.components.deactivated.extract_key_from_data",
"description": "Extracts a key from a data.",
"author": "Langflow",
"display_name": "Extract Key From Data"
},
"FaissVectorStoreComponent": {
"path": "lfx.src.lfx.components.FAISS.faiss",
"description": "FAISS Vector Store with search capabilities",
"author": "Langflow",
"display_name": "Index Name"
},
"FakeEmbeddingsComponent": {
"path": "lfx.src.lfx.components.langchain_utilities.fake_embeddings",
"description": "Generate fake embeddings, useful for initial testing and connecting components.",
"author": "Langflow",
"display_name": "Fake Embeddings"
},
"FileComponent": {
"path": "lfx.src.lfx.components.data.file",
"description": "Loads content from one or more files.",
"author": "Langflow",
"display_name": "Read File"
},
"FilterDataComponent": {
"path": "lfx.src.lfx.components.processing.filter_data",
"description": "Filters a Data object based on a list of keys.",
"author": "Langflow",
"display_name": "Filter Data"
},
"FirecrawlCrawlApi": {
"path": "lfx.src.lfx.components.firecrawl.firecrawl_crawl_api",
"description": "Crawls a URL and returns the results.",
"author": "Langflow",
"display_name": "Firecrawl API Key"
},
"FirecrawlExtractApi": {
"path": "lfx.src.lfx.components.firecrawl.firecrawl_extract_api",
"description": "Extracts data from a URL.",
"author": "Langflow",
"display_name": "Firecrawl API Key"
},
"FirecrawlMapApi": {
"path": "lfx.src.lfx.components.firecrawl.firecrawl_map_api",
"description": "Maps a URL and returns the results.",
"author": "Langflow",
"display_name": "Firecrawl API Key"
},
"FirecrawlScrapeApi": {
"path": "lfx.src.lfx.components.firecrawl.firecrawl_scrape_api",
"description": "Scrapes a URL and returns the results.",
"author": "Langflow",
"display_name": "Firecrawl API Key"
},
"FlowToolComponent": {
"path": "lfx.src.lfx.components.logic.flow_tool",
"description": "Construct a Tool from a function that runs the loaded Flow.",
"author": "Langflow",
"display_name": "Flow as Tool"
},
"GetEnvVar": {
"path": "lfx.src.lfx.components.datastax.getenvvar",
"description": "Gets the value of an environment variable from the system.",
"author": "Langflow",
"display_name": "Get Environment Variable"
},
"GitExtractorComponent": {
"path": "lfx.src.lfx.components.git.gitextractor",
"description": "Analyzes a Git repository and returns file contents and complete repository information",
"author": "Langflow",
"display_name": "GitExtractor"
},
"GitLoaderComponent": {
"path": "lfx.src.lfx.components.git.git",
"description": "Langflow component for GitLoade",
"author": "Langflow",
"display_name": "Git"
},
"GleanSearchAPIComponent": {
"path": "lfx.src.lfx.components.glean.glean_search_api",
"description": "Search Glean for relevant results.",
"author": "Langflow",
"display_name": "DataFrame"
},
"GmailLoaderComponent": {
"path": "lfx.src.lfx.components.google.gmail",
"description": "Loads emails from Gmail using provided credentials.",
"author": "Langflow",
"display_name": "Gmail Loader"
},
"GoogleDriveComponent": {
"path": "lfx.src.lfx.components.google.google_drive",
"description": "Loads documents from Google Drive using provided credentials.",
"author": "Langflow",
"display_name": "Google Drive Loader"
},
"GoogleDriveSearchComponent": {
"path": "lfx.src.lfx.components.google.google_drive_search",
"description": "Searches Google Drive files using provided credentials and query parameters.",
"author": "Langflow",
"display_name": "Google Drive Search"
},
"GoogleGenerativeAIComponent": {
"path": "lfx.src.lfx.components.google.google_generative_ai",
"description": "Generate text using Google Generative AI.",
"author": "Langflow",
"display_name": "Google Generative AI"
},
"GoogleGenerativeAIEmbeddingsComponent": {
"path": "lfx.src.lfx.components.google.google_generative_ai_embeddings",
"description": "Langflow component for GoogleGenerativeAIEmbedding",
"author": "Langflow",
"display_name": "Google Generative AI Embeddings"
},
"GoogleOAuthToken": {
"path": "lfx.src.lfx.components.google.google_oauth_token",
"description": "Generates a JSON string with your Google OAuth token.",
"author": "Langflow",
"display_name": "Google OAuth Token"
},
"GoogleSearchAPIComponent": {
"path": "lfx.src.lfx.components.tools.google_search_api",
"description": "Call Google Search API.",
"author": "Langflow",
"display_name": "Google Search API [DEPRECATED]"
},
"GoogleSearchAPICore": {
"path": "lfx.src.lfx.components.google.google_search_api_core",
"description": "Call Google Search API and return results as a DataFrame.",
"author": "Langflow",
"display_name": "Google Search API"
},
"GoogleSerperAPIComponent": {
"path": "lfx.src.lfx.components.tools.google_serper_api",
"description": "Call the Serper.dev Google Search API.",
"author": "Langflow",
"display_name": "Google Serper API [DEPRECATED]"
},
"GoogleSerperAPICore": {
"path": "lfx.src.lfx.components.google.google_serper_api_core",
"description": "Call the Serper.dev Google Search API.",
"author": "Langflow",
"display_name": "Google Serper API"
},
"GraphRAGComponent": {
"path": "lfx.src.lfx.components.datastax.graph_rag",
"description": "Graph RAG traversal for vector store.",
"author": "Langflow",
"display_name": "Embedding Model"
},
"GroqModel": {
"path": "lfx.src.lfx.components.groq.groq",
"description": "Generate text using Groq.",
"author": "Langflow",
"display_name": "Groq API Key"
},
"HCDVectorStoreComponent": {
"path": "lfx.src.lfx.components.datastax.hcd",
"description": "Implementation of Vector Store using Hyper-Converged Database (HCD) with search capabilities",
"author": "Langflow",
"display_name": "Collection Name"
},
"HierarchicalCrewComponent": {
"path": "lfx.src.lfx.components.crewai.hierarchical_crew",
"description": "Langflow component for HierarchicalCre",
"author": "Langflow",
"display_name": "Agents"
},
"HierarchicalTaskComponent": {
"path": "lfx.src.lfx.components.crewai.hierarchical_task",
"description": "Each task must have a description, an expected output and an agent responsible for execution.",
"author": "Langflow",
"display_name": "Description"
},
"HomeAssistantControl": {