1. 内置工具模块
llmops
  • app应用模块
    • agent应用模块
      • 查询应用列表
      • 删除agent应用
      • 更新信息
      • 复制agent应用
      • 内置应用分类列表信息
      • 内置应用列表信息
      • 将指定的内置应用添加到个人空间
    • 基础聊天接口
      POST
    • 创建app
      POST
    • 获取app详情/状态
      GET
    • 更新app
      POST
    • 删除app
      DELETE
    • 获取应用配置
      GET
    • 更新app草稿配置
      POST
    • 发布应用
      POST
    • 取消发布应用
      POST
    • 回退到指定的历史草稿
      POST
    • 获取指定应用的发布历史记录
      GET
    • 获取app的长期记忆
      GET
    • 更新长期记忆
      POST
    • 删除长期记忆
      POST
    • 调试对话
      POST
    • 清空应用会话记录
      POST
    • 停止流式输出
      POST
    • 获取应用的调试会话列表
      GET
    • ai优化prompt
      POST
    • 根据消息ID获取建议问题列表
      POST
  • 内置工具模块
    • 获取所有内置工具信息
      GET
    • 获取指定工具信息
      GET
    • 获取提供者的图标
      GET
    • 获取分类信息
      GET
  • 自定义api工具模块
    • 校验openapi-schema格式
      POST
    • 创建自定义api工具
      POST
    • 获取api提供者信息 根据uuid
      GET
    • 获取指定API工具详情
      GET
    • 查询分页
      GET
    • 更新apiprovider
      POST
  • 上传文件模块
    • 上传文件
    • 上传图片
  • 知识库/文档 模块
    • 知识库
      • 创建知识库
      • 获取知识库详情
      • 更新知识库
      • 分页搜索知识库
      • 知识库最近查询列表
    • 文档
      • 指定知识库下新增文档
      • 修改文档名称
      • 获取指定文档基础信息
      • 获取知识库下的文档列表
      • 删除指定文档
    • 片段
      • 获取文档的片段列表
      • 获取片段详情
      • 更新片段启用禁用
      • 新增文档片段
      • 更新片段
      • 删除片段
    • 知识库召回测试
    • 根据批处理id 获取进度
    • 结巴分词/embedding 测试
  • 授权认证
    • 获取指定第三方授权服务重定向地址
    • 获取授权code
    • 指定第三方授权服务的授权地址
  • 工作流模块
  • 帐号模块
    • 获取当前帐号信息
    • 修改账户密码
    • 修改帐号名称
    • 修改头像
    • 帐号密码登录
    • 退出登录
  • 开放API模块
    • 新增apikey
    • 删除key
    • 修改apikey
    • 启用禁用
    • 获取列表
    • 开放chat接口
    • 开放聊天接口
  • 模型模块
    • 获取模型列表
    • 获取icon
    • 获取指定模型详情
  • 辅助agent
  • 测试接口
    GET
  • 有道翻译接口
    GET
  1. 内置工具模块

获取所有内置工具信息

开发中
GET
/builtin-tools

请求参数

Header 参数

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location 'http://localhost:5000/builtin-tools' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxZTc1NzIxYi04OTY5LTRkNTktOGM2Ny00ZDZlNTc0Zjk1ODQiLCJpc3MiOiJsbG1vcHMiLCJleHAiOjE3ODM5Mjg2NjZ9.110v8Tvu0kC0i-bx0RTDqcQNU0fFqiwuzo-O2ofgsF8'

返回响应

🟢200成功
application/json
Bodyapplication/json

示例
{
  "code": "success",
  "data": [
    {
      "background": "#E5E7EB",
      "category": "\u7f51\u7edc\u641c\u7d22",
      "description": "\u8c37\u6b4c\u670d\u52a1\u63d0\u4f9b\u5546\uff0c\u6db5\u76d6\u4e86\u8c37\u6b4c\u641c\u7d22\u7b49\u5de5\u5177\u3002",
      "label": "Google",
      "name": "google",
      "tools": [
        {
          "description": "\u8c37\u6b4c\u670d\u52a1\u63d0\u4f9b\u5546\uff0c\u6db5\u76d6\u4e86\u8c37\u6b4c\u641c\u7d22\u7b49\u5de5\u5177\u3002",
          "inputs": [
            {
              "description": "\u6267\u884c\u8c37\u6b4c\u641c\u7d22\u7684\u67e5\u8be2\u8bed\u53e5",
              "name": "query",
              "required": true,
              "type": "str"
            }
          ],
          "label": "\u8c37\u6b4c\u641c\u7d22",
          "name": "google_serper",
          "params": []
        }
      ]
    },
    {
      "background": "#E5E7EB",
      "category": "\u5b9e\u7528\u5de5\u5177",
      "description": "\u83b7\u53d6\u5f53\u524d\u65f6\u95f4\u7684\u5de5\u5177",
      "label": "\u65f6\u95f4",
      "name": "time",
      "tools": [
        {
          "description": "\u83b7\u53d6\u5f53\u524d\u65f6\u95f4\u7684\u5de5\u5177",
          "inputs": [],
          "label": "\u83b7\u53d6\u5f53\u524d\u65f6\u95f4",
          "name": "current_time",
          "params": []
        }
      ]
    },
    {
      "background": "#ffffff",
      "category": "\u7f51\u7edc\u641c\u7d22",
      "description": "\u4e00\u4e2a\u6ce8\u91cd\u9690\u79c1\u7684\u641c\u7d22\u5f15\u64ce",
      "label": "DuckDuckGo",
      "name": "duckduckgo",
      "tools": [
        {
          "description": "\u4e00\u4e2a\u6ce8\u91cd\u9690\u79c1\u7684\u641c\u7d22\u5f15\u64ce",
          "inputs": [
            {
              "description": "\u6267\u884cDuckDuckGo\u641c\u7d22\u7684\u67e5\u8be2\u8bed\u53e5",
              "name": "query",
              "required": true,
              "type": "str"
            }
          ],
          "label": "DuckDuckGo \u641c\u7d22",
          "name": "duckduckgo_search",
          "params": []
        }
      ]
    },
    {
      "background": "#e5e7b",
      "category": "\u6587\u751f\u56fe",
      "description": "\u6587\u751f\u56fe\u5de5\u5177",
      "label": "DALLE-\u6587\u751f\u56fe",
      "name": "dalle",
      "tools": [
        {
          "description": "dalle \u662f\u4e00\u4e2a\u6587\u672c\u751f\u6210\u56fe\u50cf\u5de5\u5177",
          "inputs": [
            {
              "description": "\u8f93\u5165\u662f\u751f\u6210\u56fe\u50cf\u7684\u6587\u672c\u63d0\u793a(prompt)",
              "name": "query",
              "required": true,
              "type": "str"
            }
          ],
          "label": "dalle-\u751f\u56fe\u5de5\u5177",
          "name": "dalle3",
          "params": [
            {
              "default": "1024x1024",
              "description": "\u9009\u62e9\u751f\u6210\u56fe\u7247\u7684\u5c3a\u5bf8\u548c\u65b9\u5411",
              "label": "\u56fe\u7247\u5c3a\u5bf8",
              "max": null,
              "min": null,
              "name": "size",
              "options": [
                {
                  "label": "\u65b9 1024x1024",
                  "value": "1024x1024"
                },
                {
                  "label": "\u6a2a\u5c4f 1972x1024",
                  "value": "1972x1024"
                },
                {
                  "label": "\u7ad6\u5c4f 1024x1972",
                  "value": "1024x1972"
                }
              ],
              "required": true,
              "type": "select"
            },
            {
              "default": "vivid",
              "description": "\u9009\u62e9\u56fe\u7247\u7684\u89c6\u89c9\u98ce\u683c\uff08\u751f\u52a8\u6216\u81ea\u7136\uff09",
              "label": "\u56fe\u7247\u98ce\u683c",
              "max": null,
              "min": null,
              "name": "style",
              "options": [
                {
                  "label": "\u751f\u52a8",
                  "value": "vivid"
                },
                {
                  "label": "\u81ea\u7136",
                  "value": "natural"
                }
              ],
              "required": true,
              "type": "select"
            }
          ]
        }
      ]
    },
    {
      "background": "#e5e7eb",
      "category": "\u5b9e\u7528\u5de5\u5177",
      "description": "\u5185\u7f6e\u9ad8\u5fb7\u5929\u6c14\u9884\u62a5\u548cip\u67e5\u8be2",
      "label": "\u9ad8\u5fb7\u5de5\u5177\u5305",
      "name": "gaode",
      "tools": [
        {
          "description": "\u6839\u636e\u4f20\u9012\u7684\u57ce\u5e02\u67e5\u8be2\u8be5\u57ce\u5e02\u7684\u5929\u6c14\u9884\u62a5\u4fe1\u606f",
          "inputs": [
            {
              "description": "\u57ce\u5e02\u540d\u79f0 \u4f8b\u5982: \u5e7f\u544a",
              "name": "city",
              "required": true,
              "type": "str"
            }
          ],
          "label": "\u9ad8\u5fb7\u5929\u6c14\u67e5\u8be2",
          "name": "gaode_weather",
          "params": []
        }
      ]
    },
    {
      "background": "#ffffff",
      "category": "\u767e\u79d1\u5168\u4e66",
      "description": "\u7ef4\u57fa\u767e\u79d1\u662f\u4e00\u4e2a\u5168\u4e16\u754c\u5fd7\u613f\u8005\u521b\u5efa\u7684\u514d\u8d39\u5728\u7ebf\u767e\u79d1\u5168\u4e66",
      "label": "\u7ef4\u57fa\u767e\u79d1",
      "name": "wikipedia",
      "tools": [
        {
          "description": "\u6267\u884c\u7ef4\u57fa\u767e\u79d1\u641c\u7d22\u5e76\u63d0\u53d6\u7247\u6bb5\u548c\u7f51\u9875\u7684\u5de5\u5177",
          "inputs": [
            {
              "description": "query to look up on wikipedia",
              "name": "query",
              "required": true,
              "type": "str"
            }
          ],
          "label": "\u7ef4\u57fa\u767e\u79d1\u641c\u7d22",
          "name": "wikipedia_search",
          "params": []
        }
      ]
    }
  ],
  "message": ""
}
修改于 2026-04-02 15:35:00
上一页
根据消息ID获取建议问题列表
下一页
获取指定工具信息
Built with