> ## Documentation Index
> Fetch the complete documentation index at: https://enterprise-docs.dify.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# 获取可用模型

> 返回指定类型的可用模型。用它查找可配置到知识库的 `text-embedding` 和 `rerank` 模型。



## OpenAPI

````yaml /zh/3.11.x/develop/api/openapi_service.json get /workspaces/current/models/model-types/{model_type}
openapi: 3.0.1
info:
  title: Dify 服务 API
  description: 用于 Dify 应用与知识库的 REST API。应用类接口使用应用 API 密钥认证，知识库类接口使用知识库 API 密钥认证。
  version: 1.0.0
servers:
  - url: https://{api_base_url}
    description: Dify 服务 API 的基础 URL。替换为你部署的 API 基础 URL。
    variables:
      api_base_url:
        default: api.example.com/v1
        description: API 基础 URL 的主机与路径，不含 `https://` 前缀。
security:
  - ApiKeyAuth: []
tags:
  - name: 对话消息
    description: 与聊天消息和交互相关的操作。
  - name: 文件操作
    description: 文件上传和预览操作。
  - name: 终端用户
    description: 终端用户信息相关操作。
  - name: 消息反馈
    description: 用户反馈操作。
  - name: 会话管理
    description: 与管理会话相关的操作。
  - name: 语音与文字转换
    description: 文字转语音和语音转文字操作。
  - name: 应用配置
    description: 获取应用设置和信息的操作。
  - name: 标注管理
    description: 与管理标注直接回复相关的操作。
  - name: 人工介入
    description: 暂停等待人工输入的工作流恢复操作。
  - name: 工作流运行
    description: 用于执行和管理工作流的操作。
  - name: 文本生成消息
    description: 文本生成相关操作。
  - name: 知识库
    description: 用于管理知识库的操作，包括创建、配置和检索。
  - name: 文档
    description: 用于在知识库中创建、更新和管理文档的操作。
  - name: 分段
    description: 用于管理分段和子分段的操作。
  - name: 元数据
    description: 用于管理知识库元数据字段和文档元数据值的操作。
  - name: 标签
    description: 用于管理知识库标签和标签绑定的操作。
  - name: 模型
    description: 用于获取可用模型的操作。
  - name: 知识流水线
    description: 用于管理和运行知识流水线的操作，包括数据源插件和流水线执行。
paths:
  /workspaces/current/models/model-types/{model_type}:
    get:
      tags:
        - 模型
      summary: 获取可用模型
      description: 返回指定类型的可用模型。用它查找可配置到知识库的 `text-embedding` 和 `rerank` 模型。
      operationId: getAvailableModelsZh
      parameters:
        - name: model_type
          in: path
          required: true
          schema:
            type: string
            enum:
              - text-embedding
              - rerank
              - llm
              - tts
              - speech2text
              - moderation
          description: 要获取的模型类型。对于知识库配置，使用 `text-embedding` 获取嵌入模型，使用 `rerank` 获取重排序模型。
      responses:
        '200':
          description: 指定类型的可用模型。
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    description: 模型供应商及其可用模型的列表。
                    items:
                      type: object
                      properties:
                        provider:
                          type: string
                          description: >-
                            模型供应商标识符，格式为
                            `organization/plugin_name/provider_name`（例如
                            `langgenius/openai/openai`）。旧版供应商可能返回简写形式（例如
                            `openai`）。
                        label:
                          type: object
                          description: 供应商的本地化显示名称。
                          properties:
                            en_US:
                              type: string
                              description: 英文显示名称。
                            zh_Hans:
                              type: string
                              description: 中文显示名称。
                        icon_small:
                          type: object
                          description: 供应商小图标的 URL。
                          properties:
                            en_US:
                              type: string
                              description: 小图标 URL。
                            zh_Hans:
                              type: string
                              description: 中文图标 URL。
                        status:
                          type: string
                          description: 供应商状态。凭证已配置且有效时为 `active`。
                        models:
                          type: array
                          description: 该供应商的可用模型列表。
                          items:
                            type: object
                            properties:
                              model:
                                type: string
                                description: 模型标识符。创建或更新知识库时，将此值作为 `embedding_model` 参数使用。
                              label:
                                type: object
                                description: 模型的本地化显示名称。
                                properties:
                                  en_US:
                                    type: string
                                    description: 英文模型名称。
                                  zh_Hans:
                                    type: string
                                    description: 中文模型名称。
                              model_type:
                                type: string
                                description: 模型类型，与 `model_type` 路径参数匹配。
                              features:
                                type: array
                                nullable: true
                                description: 模型支持的功能，无功能时为 `null`。
                                items:
                                  type: string
                              fetch_from:
                                type: string
                                description: >-
                                  模型定义的来源。`predefined-model`
                                  表示内置模型，`customizable-model` 表示用户自配置的模型。
                              model_properties:
                                type: object
                                description: 模型特定的属性，例如 `context_size`。
                              status:
                                type: string
                                description: 模型可用状态。就绪时为 `active`。
                              deprecated:
                                type: boolean
                                description: 模型是否已弃用。
                              load_balancing_enabled:
                                type: boolean
                                description: 模型是否启用负载均衡。
                              has_invalid_load_balancing_configs:
                                type: boolean
                                description: 模型是否存在无效的负载均衡配置。
                        tenant_id:
                          type: string
                          description: 该供应商配置所属的工作空间 ID。
                        icon_small_dark:
                          type: object
                          description: 深色模式图标 URL；供应商没有时为 `null`。
                          properties:
                            en_US:
                              type: string
                            zh_Hans:
                              type: string
              examples:
                success:
                  summary: 响应示例
                  value:
                    data:
                      - provider: langgenius/openai/openai
                        label:
                          en_US: OpenAI
                          zh_Hans: OpenAI
                        icon_small:
                          en_US: https://example.com/openai-small.svg
                          zh_Hans: https://example.com/openai-small.svg
                        status: active
                        models:
                          - model: text-embedding-3-small
                            label:
                              en_US: text-embedding-3-small
                              zh_Hans: text-embedding-3-small
                            model_type: text-embedding
                            features: null
                            fetch_from: predefined-model
                            model_properties:
                              context_size: 8191
                            status: active
                            deprecated: false
                            load_balancing_enabled: false
                            has_invalid_load_balancing_configs: false
                        tenant_id: 11223344-5566-7788-99aa-bbccddeeff00
                        icon_small_dark: null
components:
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      bearerFormat: API_KEY
      description: >-
        每个请求都通过 API Key 认证：`Authorization: Bearer {API_KEY}`。应用接口使用应用 API
        Key，知识库接口使用知识库 API
        Key（[快速开始](/zh/3.11.x/develop/api/guides/get-started)）。


        API Key 应保存在服务端，切勿嵌入客户端代码。缺失或无效的 Key 会返回 HTTP `401`（`unauthorized`）。

````