forked from crewAIInc/crewAI-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtool.specs.json
More file actions
1179 lines (1179 loc) · 37.1 KB
/
tool.specs.json
File metadata and controls
1179 lines (1179 loc) · 37.1 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
{
"tools": [
{
"description": "A wrapper around [AI-Minds](https://mindsdb.com/minds). Useful for when you need answers to questions from your data, stored in data sources including PostgreSQL, MySQL, MariaDB, ClickHouse, Snowflake and Google BigQuery. Input should be a question in natural language.",
"env_vars": [],
"humanized_name": "AIMind Tool",
"name": "AIMindTool",
"package_dependencies": [
"minds-sdk"
],
"run_params": [
{
"default": "",
"description": "Question in natural language to ask the AI-Mind",
"name": "query",
"type": "str"
}
]
},
{
"description": "A tool that can be used to search the internet with a search_query.",
"env_vars": [],
"humanized_name": "Brave Web Search the internet",
"name": "BraveSearchTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Mandatory search query you want to use to search the internet",
"name": "search_query",
"type": "str"
}
]
},
{
"description": "Load webpages url in a headless browser using Browserbase and return the contents",
"env_vars": [],
"humanized_name": "Browserbase web load tool",
"name": "BrowserbaseLoadTool",
"package_dependencies": [
"browserbase"
],
"run_params": [
{
"default": "",
"description": "Website URL",
"name": "url",
"type": "str"
}
]
},
{
"description": "A tool that can be used to semantic search a query from a CSV's content.",
"env_vars": [],
"humanized_name": "Search a CSV's content",
"name": "CSVSearchTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Mandatory search query you want to use to search the CSV's content",
"name": "search_query",
"type": "str"
},
{
"default": "",
"description": "Mandatory csv path you want to search",
"name": "csv",
"type": "str"
}
]
},
{
"description": "A tool that can be used to semantic search a query from a Code Docs content.",
"env_vars": [],
"humanized_name": "Search a Code Docs content",
"name": "CodeDocsSearchTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Mandatory search query you want to use to search the Code Docs content",
"name": "search_query",
"type": "str"
},
{
"default": "",
"description": "Mandatory docs_url path you want to search",
"name": "docs_url",
"type": "str"
}
]
},
{
"description": "Interprets Python3 code strings with a final print statement.",
"env_vars": [],
"humanized_name": "Code Interpreter",
"name": "CodeInterpreterTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Python3 code used to be interpreted in the Docker container. ALWAYS PRINT the final result and the output of the code",
"name": "code",
"type": "str"
},
{
"default": "",
"description": "List of libraries used in the code with proper installing names separated by commas. Example: numpy,pandas,beautifulsoup4",
"name": "libraries_used",
"type": "list[str]"
}
]
},
{
"description": "",
"env_vars": [],
"humanized_name": "ComposioTool",
"name": "ComposioTool",
"package_dependencies": [],
"run_params": []
},
{
"description": "A tool that can be used to semantic search a query from a DOCX's content.",
"env_vars": [],
"humanized_name": "Search a DOCX's content",
"name": "DOCXSearchTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Mandatory docx path you want to search",
"name": "docx",
"type": "str"
},
{
"default": "",
"description": "Mandatory search query you want to use to search the DOCX's content",
"name": "search_query",
"type": "str"
}
]
},
{
"description": "Generates images using OpenAI's Dall-E model.",
"env_vars": [],
"humanized_name": "Dall-E Tool",
"name": "DallETool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Description of the image to be generated by Dall-E.",
"name": "image_description",
"type": "str"
}
]
},
{
"description": "Execute SQL queries against Databricks workspace tables and return the results. Provide a 'query' parameter with the SQL query to execute.",
"env_vars": [],
"humanized_name": "Databricks SQL Query",
"name": "DatabricksQueryTool",
"package_dependencies": [
"databricks-sdk"
],
"run_params": [
{
"default": "",
"description": "SQL query to execute against the Databricks workspace table",
"name": "query",
"type": "str"
},
{
"default": "",
"description": "Databricks catalog name (optional, defaults to configured catalog)",
"name": "catalog",
"type": "str"
},
{
"default": "",
"description": "Databricks schema name (optional, defaults to configured schema)",
"name": "db_schema",
"type": "str"
},
{
"default": "",
"description": "Databricks SQL warehouse ID (optional, defaults to configured warehouse)",
"name": "warehouse_id",
"type": "str"
},
{
"default": 1000,
"description": "Maximum number of rows to return (default: 1000)",
"name": "row_limit",
"type": "int"
}
]
},
{
"description": "A tool that can be used to recursively list a directory's content.",
"env_vars": [],
"humanized_name": "List files in directory",
"name": "DirectoryReadTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Mandatory directory to list content",
"name": "directory",
"type": "str"
}
]
},
{
"description": "A tool that can be used to semantic search a query from a directory's content.",
"env_vars": [],
"humanized_name": "Search a directory's content",
"name": "DirectorySearchTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Mandatory search query you want to use to search the directory's content",
"name": "search_query",
"type": "str"
},
{
"default": "",
"description": "Mandatory directory you want to search",
"name": "directory",
"type": "str"
}
]
},
{
"description": "Search the internet using Exa",
"env_vars": [],
"humanized_name": "EXASearchTool",
"name": "EXASearchTool",
"package_dependencies": [
"exa_py"
],
"run_params": [
{
"default": "",
"description": "Mandatory search query you want to use to search the internet",
"name": "search_query",
"type": "str"
},
{
"default": "",
"description": "Start date for the search",
"name": "start_published_date",
"type": "str"
},
{
"default": "",
"description": "End date for the search",
"name": "end_published_date",
"type": "str"
},
{
"default": "",
"description": "List of domains to include in the search",
"name": "include_domains",
"type": "list[str]"
}
]
},
{
"description": "Compresses a file or directory into an archive (.zip currently supported). Useful for archiving logs, documents, or backups.",
"env_vars": [],
"humanized_name": "File Compressor Tool",
"name": "FileCompressorTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Path to the file or directory to compress.",
"name": "input_path",
"type": "str"
},
{
"default": "",
"description": "Optional output archive filename.",
"name": "output_path",
"type": "str"
},
{
"default": false,
"description": "Whether to overwrite the archive if it already exists.",
"name": "overwrite",
"type": "bool"
},
{
"default": "zip",
"description": "Compression format ('zip', 'tar', 'tar.gz', 'tar.bz2', 'tar.xz').",
"name": "format",
"type": "str"
}
]
},
{
"description": "A tool that reads the content of a file. To use this tool, provide a 'file_path' parameter with the path to the file you want to read. Optionally, provide 'start_line' to start reading from a specific line and 'line_count' to limit the number of lines read.",
"env_vars": [],
"humanized_name": "Read a file's content",
"name": "FileReadTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Mandatory file full path to read the file",
"name": "file_path",
"type": "str"
},
{
"default": 1,
"description": "Line number to start reading from (1-indexed)",
"name": "start_line",
"type": "int"
},
{
"default": "",
"description": "Number of lines to read. If None, reads the entire file",
"name": "line_count",
"type": "int"
}
]
},
{
"description": "A tool to write content to a specified file. Accepts filename, content, and optionally a directory path and overwrite flag as input.",
"env_vars": [],
"humanized_name": "File Writer Tool",
"name": "FileWriterTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "",
"name": "filename",
"type": "str"
},
{
"default": "./",
"description": "",
"name": "directory",
"type": "str"
},
{
"default": false,
"description": "",
"name": "overwrite",
"type": "union[str, bool]"
},
{
"default": "",
"description": "",
"name": "content",
"type": "str"
}
]
},
{
"description": "Crawl webpages using Firecrawl and return the contents",
"env_vars": [],
"humanized_name": "Firecrawl web crawl tool",
"name": "FirecrawlCrawlWebsiteTool",
"package_dependencies": [
"firecrawl-py"
],
"run_params": [
{
"default": "",
"description": "Website URL",
"name": "url",
"type": "str"
}
]
},
{
"description": "Scrape webpages using Firecrawl and return the contents",
"env_vars": [],
"humanized_name": "Firecrawl web scrape tool",
"name": "FirecrawlScrapeWebsiteTool",
"package_dependencies": [
"firecrawl-py"
],
"run_params": [
{
"default": "",
"description": "Website URL",
"name": "url",
"type": "str"
}
]
},
{
"description": "Search webpages using Firecrawl and return the results",
"env_vars": [],
"humanized_name": "Firecrawl web search tool",
"name": "FirecrawlSearchTool",
"package_dependencies": [
"firecrawl-py"
],
"run_params": [
{
"default": "",
"description": "Search query",
"name": "query",
"type": "str"
}
]
},
{
"description": "A tool that can be used to semantic search a query from a github repo's content. This is not the GitHub API, but instead a tool that can provide semantic search capabilities.",
"env_vars": [],
"humanized_name": "Search a github repo's content",
"name": "GithubSearchTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Mandatory search query you want to use to search the github repo's content",
"name": "search_query",
"type": "str"
},
{
"default": "",
"description": "Mandatory github you want to search",
"name": "github_repo",
"type": "str"
},
{
"default": "",
"description": "Mandatory content types you want to be included search, options: [code, repo, pr, issue]",
"name": "content_types",
"type": "list[str]"
}
]
},
{
"description": "Scrape or crawl a website using Hyperbrowser and return the contents in properly formatted markdown or html",
"env_vars": [],
"humanized_name": "Hyperbrowser web load tool",
"name": "HyperbrowserLoadTool",
"package_dependencies": [
"hyperbrowser"
],
"run_params": [
{
"default": "",
"description": "Website URL",
"name": "url",
"type": "str"
},
{
"default": "",
"description": "Operation to perform on the website. Either 'scrape' or 'crawl'",
"name": "operation",
"type": "literal"
},
{
"default": "",
"description": "Optional params for scrape or crawl. For more information on the supported params, visit https://docs.hyperbrowser.ai/reference/sdks/python/scrape#start-scrape-job-and-wait or https://docs.hyperbrowser.ai/reference/sdks/python/crawl#start-crawl-job-and-wait",
"name": "params",
"type": "dict[any, any]"
}
]
},
{
"description": "A tool that can be used to semantic search a query from a JSON's content.",
"env_vars": [],
"humanized_name": "Search a JSON's content",
"name": "JSONSearchTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Mandatory search query you want to use to search the JSON's content",
"name": "search_query",
"type": "str"
},
{
"default": "",
"description": "Mandatory json path you want to search",
"name": "json_path",
"type": "str"
}
]
},
{
"description": "Performs an API call to Linkup to retrieve contextual information.",
"env_vars": [],
"humanized_name": "Linkup Search Tool",
"name": "LinkupSearchTool",
"package_dependencies": [
"linkup-sdk"
],
"run_params": []
},
{
"description": "",
"env_vars": [],
"humanized_name": "LlamaIndexTool",
"name": "LlamaIndexTool",
"package_dependencies": [],
"run_params": []
},
{
"description": "A tool that can be used to semantic search a query from a MDX's content.",
"env_vars": [],
"humanized_name": "Search a MDX's content",
"name": "MDXSearchTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Mandatory search query you want to use to search the MDX's content",
"name": "search_query",
"type": "str"
},
{
"default": "",
"description": "Mandatory mdx path you want to search",
"name": "mdx",
"type": "str"
}
]
},
{
"description": "Multion gives the ability for LLMs to control web browsers using natural language instructions.\n If the status is 'CONTINUE', reissue the same instruction to continue execution",
"env_vars": [],
"humanized_name": "Multion Browse Tool",
"name": "MultiOnTool",
"package_dependencies": [
"multion"
],
"run_params": []
},
{
"description": "A tool that can be used to semantic search a query from a database table's content.",
"env_vars": [],
"humanized_name": "Search a database's table content",
"name": "MySQLSearchTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Mandatory semantic search query you want to use to search the database's content",
"name": "search_query",
"type": "str"
}
]
},
{
"description": "Converts natural language to SQL queries and executes them.",
"env_vars": [],
"humanized_name": "NL2SQLTool",
"name": "NL2SQLTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "The SQL query to execute.",
"name": "sql_query",
"type": "str"
}
]
},
{
"description": "A tool that can be used to semantic search a query from a PDF's content.",
"env_vars": [],
"humanized_name": "Search a PDF's content",
"name": "PDFSearchTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Mandatory query you want to use to search the PDF's content",
"name": "query",
"type": "str"
},
{
"default": "",
"description": "Mandatory pdf path you want to search",
"name": "pdf",
"type": "str"
}
]
},
{
"description": "A tool that can be used to semantic search a query from a database table's content.",
"env_vars": [],
"humanized_name": "Search a database's table content",
"name": "PGSearchTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Mandatory semantic search query you want to use to search the database's content",
"name": "search_query",
"type": "str"
}
]
},
{
"description": "",
"env_vars": [],
"humanized_name": "Patronus Evaluation Tool",
"name": "PatronusEvalTool",
"package_dependencies": [],
"run_params": []
},
{
"description": "This tool calls the Patronus Evaluation API that takes the following arguments:",
"env_vars": [],
"humanized_name": "Call Patronus API tool for evaluation of model inputs and outputs",
"name": "PatronusPredefinedCriteriaEvalTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "The agent's task description in simple text",
"name": "evaluated_model_input",
"type": "dict[any, any]"
},
{
"default": "",
"description": "The agent's output of the task",
"name": "evaluated_model_output",
"type": "dict[any, any]"
},
{
"default": "",
"description": "The agent's context",
"name": "evaluated_model_retrieved_context",
"type": "dict[any, any]"
},
{
"default": "",
"description": "The agent's gold answer only if available",
"name": "evaluated_model_gold_answer",
"type": "dict[any, any]"
},
{
"default": "",
"description": "List of dictionaries containing the evaluator and criteria to evaluate the model input and output. An example input for this field: [{'evaluator': '[evaluator-from-user]', 'criteria': '[criteria-from-user]'}]",
"name": "evaluators",
"type": "list[dict[str, str]]"
}
]
},
{
"description": "A tool to search the Qdrant database for relevant information on internal documents.",
"env_vars": [],
"humanized_name": "QdrantVectorSearchTool",
"name": "QdrantVectorSearchTool",
"package_dependencies": [
"qdrant-client"
],
"run_params": [
{
"default": "",
"description": "The query to search retrieve relevant information from the Qdrant database. Pass only the query, not the question.",
"name": "query",
"type": "str"
},
{
"default": "",
"description": "Filter by properties. Pass only the properties, not the question.",
"name": "filter_by",
"type": "str"
},
{
"default": "",
"description": "Filter by value. Pass only the value, not the question.",
"name": "filter_value",
"type": "str"
}
]
},
{
"description": "A knowledge base that can be used to answer questions.",
"env_vars": [],
"humanized_name": "Knowledge base",
"name": "RagTool",
"package_dependencies": [],
"run_params": []
},
{
"description": "A tool that can be used to read a website content.",
"env_vars": [],
"humanized_name": "Read a website content",
"name": "ScrapeElementFromWebsiteTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Mandatory website url to read the file",
"name": "website_url",
"type": "str"
},
{
"default": "",
"description": "Mandatory css reference for element to scrape from the website",
"name": "css_element",
"type": "str"
}
]
},
{
"description": "A tool that can be used to read a website content.",
"env_vars": [],
"humanized_name": "Read website content",
"name": "ScrapeWebsiteTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Mandatory website url to read the file",
"name": "website_url",
"type": "str"
}
]
},
{
"description": "A tool that uses Scrapegraph AI to intelligently scrape website content.",
"env_vars": [],
"humanized_name": "Scrapegraph website scraper",
"name": "ScrapegraphScrapeTool",
"package_dependencies": [
"scrapegraph-py"
],
"run_params": [
{
"default": "",
"description": "Mandatory website url to scrape",
"name": "website_url",
"type": "str"
},
{
"default": "Extract the main content of the webpage",
"description": "Prompt to guide the extraction of content",
"name": "user_prompt",
"type": "str"
}
]
},
{
"description": "Scrape a webpage url using Scrapfly and return its content as markdown or text",
"env_vars": [],
"humanized_name": "Scrapfly web scraping API tool",
"name": "ScrapflyScrapeWebsiteTool",
"package_dependencies": [
"scrapfly-sdk"
],
"run_params": [
{
"default": "",
"description": "Webpage URL",
"name": "url",
"type": "str"
},
{
"default": "markdown",
"description": "Webpage extraction format",
"name": "scrape_format",
"type": "literal"
},
{
"default": "",
"description": "Scrapfly request scrape config",
"name": "scrape_config",
"type": "dict[str, any]"
},
{
"default": "",
"description": "whether to ignore failures",
"name": "ignore_scrape_failures",
"type": "bool"
}
]
},
{
"description": "A tool that can be used to read a website content.",
"env_vars": [],
"humanized_name": "Read a website content",
"name": "SeleniumScrapingTool",
"package_dependencies": [
"selenium",
"webdriver-manager"
],
"run_params": [
{
"default": "",
"description": "Mandatory website url to read the file. Must start with http:// or https://",
"name": "website_url",
"type": "str"
},
{
"default": "",
"description": "Mandatory css reference for element to scrape from the website",
"name": "css_element",
"type": "str"
}
]
},
{
"description": "A tool to perform to perform a Google search with a search_query.",
"env_vars": [],
"humanized_name": "Google Search",
"name": "SerpApiGoogleSearchTool",
"package_dependencies": [
"serpapi"
],
"run_params": [
{
"default": "",
"description": "Mandatory search query you want to use to Google search.",
"name": "search_query",
"type": "str"
},
{
"default": "",
"description": "Location you want the search to be performed in.",
"name": "location",
"type": "str"
}
]
},
{
"description": "A tool to perform search on Google shopping with a search_query.",
"env_vars": [],
"humanized_name": "Google Shopping",
"name": "SerpApiGoogleShoppingTool",
"package_dependencies": [
"serpapi"
],
"run_params": [
{
"default": "",
"description": "Mandatory search query you want to use to Google shopping.",
"name": "search_query",
"type": "str"
},
{
"default": "",
"description": "Location you want the search to be performed in.",
"name": "location",
"type": "str"
}
]
},
{
"description": "A tool that can be used to search the internet with a search_query. Supports different search types: 'search' (default), 'news'",
"env_vars": [
{
"default": null,
"description": "API key for Serper",
"name": "SERPER_API_KEY",
"required": true
}
],
"humanized_name": "Search the internet with Serper",
"name": "SerperDevTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Mandatory search query you want to use to search the internet",
"name": "search_query",
"type": "str"
}
]
},
{
"description": "A tool to perform to perform a job search in the US with a search_query.",
"env_vars": [],
"humanized_name": "Job Search",
"name": "SerplyJobSearchTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Mandatory search query you want to use to fetch jobs postings.",
"name": "search_query",
"type": "str"
}
]
},
{
"description": "A tool to perform News article search with a search_query.",
"env_vars": [],
"humanized_name": "News Search",
"name": "SerplyNewsSearchTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Mandatory search query you want to use to fetch news articles",
"name": "search_query",
"type": "str"
}
]
},
{
"description": "A tool to perform scholarly literature search with a search_query.",
"env_vars": [],
"humanized_name": "Scholar Search",
"name": "SerplyScholarSearchTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Mandatory search query you want to use to fetch scholarly literature",
"name": "search_query",
"type": "str"
}
]
},
{
"description": "A tool to perform Google search with a search_query.",
"env_vars": [],
"humanized_name": "Google Search",
"name": "SerplyWebSearchTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Mandatory search query you want to use to Google search",
"name": "search_query",
"type": "str"
}
]
},
{
"description": "A tool to perform convert a webpage to markdown to make it easier for LLMs to understand",
"env_vars": [],
"humanized_name": "Webpage to Markdown",
"name": "SerplyWebpageToMarkdownTool",
"package_dependencies": [],
"run_params": [
{
"default": "",
"description": "Mandatory url you want to use to fetch and convert to markdown",
"name": "url",
"type": "str"
}
]
},
{
"description": "Execute SQL queries or semantic search on Snowflake data warehouse. Supports both raw SQL and natural language queries.",
"env_vars": [],
"humanized_name": "Snowflake Database Search",
"name": "SnowflakeSearchTool",
"package_dependencies": [
"snowflake-connector-python",
"snowflake-sqlalchemy",
"cryptography"
],
"run_params": [
{
"default": "",
"description": "SQL query or semantic search query to execute",
"name": "query",
"type": "str"
},
{
"default": "",
"description": "Override default database",
"name": "database",
"type": "str"
},
{
"default": "",
"description": "Override default schema",
"name": "snowflake_schema",
"type": "str"
},
{
"default": 300,
"description": "Query timeout in seconds",
"name": "timeout",
"type": "int"
}
]
},
{
"description": "A tool to scrape or crawl a website and return LLM-ready content.",
"env_vars": [],
"humanized_name": "SpiderTool",
"name": "SpiderTool",
"package_dependencies": [
"spider-client"
],
"run_params": [
{
"default": "",
"description": "Mandatory website URL to scrape or crawl",