File size: 1,309 Bytes
f0499d2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import { BuiltinPlugin } from "./typing";

export const EN_PLUGINS: BuiltinPlugin[] = [
  {
    name: "WebSearch",
    toolName: "web-search",
    lang: "en",
    description: "Web search function tool for search engines.",
    builtin: true,
    createdAt: 1693744292000,
    enable: true,
  },
  {
    name: "Calculator",
    toolName: "calculator",
    lang: "en",
    description:
      "The Calculator class is a tool used to evaluate mathematical expressions. It extends the base Tool class.",
    builtin: true,
    createdAt: 1693744292000,
    enable: true,
  },
  {
    name: "WebBrowser",
    toolName: "web-browser",
    lang: "en",
    description:
      "A class designed to interact with web pages, either to extract information from them or to summarize their content.",
    builtin: true,
    createdAt: 1693744292000,
    enable: true,
  },
  {
    name: "Wikipedia",
    toolName: "WikipediaQueryRun",
    lang: "en",
    description:
      "A tool for interacting with and fetching data from the Wikipedia API.",
    builtin: true,
    createdAt: 1694235989000,
    enable: false,
  },
  {
    name: "Arxiv",
    toolName: "arxiv",
    lang: "en",
    description: "Arxiv search and get the article information.",
    builtin: true,
    createdAt: 1699265115000,
    enable: false,
  },
];