mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-05-24 14:40:22 +09:00
71 lines
1.9 KiB
TypeScript
71 lines
1.9 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,
|
|
},
|
|
{
|
|
name: "Stable Diffusion",
|
|
toolName: "stable_diffusion_image_generator",
|
|
lang: "cn",
|
|
description:
|
|
"Stable Diffusion 图像生成模型。使用本插件需要配置 Cloudflare R2 对象存储服务以及 stable-diffusion-webui 接口。",
|
|
builtin: true,
|
|
createdAt: 1688899480510,
|
|
enable: false,
|
|
},
|
|
{
|
|
name: "Arxiv",
|
|
toolName: "arxiv",
|
|
lang: "cn",
|
|
description: "使用 Arxiv 接口搜索并获取文章信息。",
|
|
builtin: true,
|
|
createdAt: 1699265115000,
|
|
enable: false,
|
|
},
|
|
];
|