mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-05-22 21:50:16 +09:00
52 lines
1.3 KiB
TypeScript
52 lines
1.3 KiB
TypeScript
import { BuiltinPlugin } from "./typing";
|
|
|
|
export const CN_PLUGINS: BuiltinPlugin[] = [
|
|
{
|
|
name: "搜索引擎",
|
|
toolName: "web-search",
|
|
lang: "cn",
|
|
description: "搜索引擎的网络搜索功能工具。",
|
|
builtin: true,
|
|
createdAt: 1693744292000,
|
|
enable: true,
|
|
},
|
|
{
|
|
name: "计算器",
|
|
toolName: "calculator",
|
|
lang: "cn",
|
|
description: "计算器是一个用于计算数学表达式的工具。",
|
|
builtin: true,
|
|
createdAt: 1693744292000,
|
|
enable: true,
|
|
},
|
|
{
|
|
name: "网页浏览器",
|
|
toolName: "web-browser",
|
|
lang: "cn",
|
|
description:
|
|
"一个用于与网页进行交互的工具,可以从网页中提取信息或总结其内容。",
|
|
builtin: true,
|
|
createdAt: 1693744292000,
|
|
enable: true,
|
|
},
|
|
{
|
|
name: "维基百科",
|
|
toolName: "WikipediaQueryRun",
|
|
lang: "cn",
|
|
description: "用于与Wikipedia API交互和从Wikipedia API获取数据的工具。",
|
|
builtin: true,
|
|
createdAt: 1694235989000,
|
|
enable: false,
|
|
},
|
|
{
|
|
name: "DALL·E",
|
|
toolName: "dalle_image_generator",
|
|
lang: "cn",
|
|
description:
|
|
"DALL·E 可以根据自然语言的描述创建逼真的图像和艺术。使用本插件需要配置 Cloudflare R2 对象存储服务。",
|
|
builtin: true,
|
|
createdAt: 1694703673000,
|
|
enable: false,
|
|
},
|
|
];
|