---
title: "Minds 背后的 AI 模型"
description: "驱动 Minds 平台各部分的 AI 模型 — Mind 对话、图像与文档分析、Panel 摘要、语音转录。"
canonical_url: "https://getminds.ai/guide/zh/models"
last_updated: "2026-05-28T19:48:20.193Z"
---

# Minds 背后的 AI 模型

平台的不同部分使用不同的 AI 模型 — 针对每项任务挑选,在质量、速度和成本之间取得最佳平衡。下表按功能领域分组,并作为普通 Markdown 表格维护。

<table>
<thead>
  <tr>
    <th>
      Area
    </th>
    
    <th>
      Provider
    </th>
    
    <th>
      Model
    </th>
  </tr>
</thead>

<tbody>
  <tr>
    <td>
      Mind chats
    </td>
    
    <td>
      Anthropic
    </td>
    
    <td>
      <code>
        claude-sonnet-4-6
      </code>
    </td>
  </tr>
  
  <tr>
    <td>
      Creating & training Minds
    </td>
    
    <td>
      Anthropic, OpenAI
    </td>
    
    <td>
      <code>
        claude-sonnet-4-6
      </code>
      
      , <code>
        gpt-4.1-mini
      </code>
      
      , <code>
        gpt-4.1-nano
      </code>
      
      , <code>
        gpt-5-mini
      </code>
      
      , <code>
        gpt-5.1
      </code>
    </td>
  </tr>
  
  <tr>
    <td>
      Document & link analysis
    </td>
    
    <td>
      Google, OpenAI
    </td>
    
    <td>
      <code>
        gemini-3-flash-preview
      </code>
      
      , <code>
        gpt-4.1-mini
      </code>
    </td>
  </tr>
  
  <tr>
    <td>
      Image generation (avatars, group covers)
    </td>
    
    <td>
      Google, OpenAI, Replicate
    </td>
    
    <td>
      <code>
        gemini-3.1-flash-image-preview
      </code>
      
      , <code>
        google/nano-banana-2
      </code>
      
      , <code>
        gpt-4.1-mini
      </code>
    </td>
  </tr>
  
  <tr>
    <td>
      Panels
    </td>
    
    <td>
      Anthropic, Google, OpenAI
    </td>
    
    <td>
      <code>
        claude-sonnet-4-6
      </code>
      
      , <code>
        gemini-3.1-flash-lite
      </code>
      
      , <code>
        gpt-4.1-mini
      </code>
    </td>
  </tr>
  
  <tr>
    <td>
      Chat utilities (moderation, naming, summarization)
    </td>
    
    <td>
      OpenAI
    </td>
    
    <td>
      <code>
        gpt-4.1-mini
      </code>
      
      , <code>
        gpt-5-mini
      </code>
    </td>
  </tr>
  
  <tr>
    <td>
      Suggestions
    </td>
    
    <td>
      Google
    </td>
    
    <td>
      <code>
        gemini-3.1-flash-lite
      </code>
    </td>
  </tr>
  
  <tr>
    <td>
      Voice (transcription, speaker ID)
    </td>
    
    <td>
      Google, OpenAI
    </td>
    
    <td>
      <code>
        gemini-2.5-flash
      </code>
      
      , <code>
        gpt-4.1-mini
      </code>
      
      , <code>
        whisper-1
      </code>
    </td>
  </tr>
  
  <tr>
    <td>
      Ideas & campaign authoring
    </td>
    
    <td>
      OpenAI
    </td>
    
    <td>
      <code>
        gpt-5-mini
      </code>
      
      , <code>
        gpt-5.1
      </code>
    </td>
  </tr>
  
  <tr>
    <td>
      Safety, detection & orchestration
    </td>
    
    <td>
      Google, OpenAI
    </td>
    
    <td>
      <code>
        gemini-3.1-flash-lite
      </code>
      
      , <code>
        gpt-4.1-mini
      </code>
      
      , <code>
        gpt-5-mini
      </code>
    </td>
  </tr>
  
  <tr>
    <td>
      Web search & inline media tools
    </td>
    
    <td>
      OpenAI
    </td>
    
    <td>
      <code>
        dall-e-3
      </code>
    </td>
  </tr>
</tbody>
</table>

> **图像理解并非独立模型。当你在聊天中附加图片时，由当前对话所用的模型直接处理 —— 详见 Mind chats 一行。**

## 如何阅读此表

- **领域** 是平台内的功能分组(Mind 对话、图像分析、Panel、语音 …)。
- **提供方** 是模型的托管方 — Anthropic (Claude)、OpenAI (GPT / o 系列) 或 Google (Gemini)。
- **模型** 是底层 AI 模型名称(例如 `claude-sonnet-4-6`、`gpt-4.1-mini`、`gemini-2.5-flash`)。如果一个领域内部运行多个任务,会显示去重后的全部模型列表。

## 按请求覆盖模型

如果你通过编程方式调用平台,可以按请求覆盖模型(用于基准测试、成本调优或测试新版本),在 API 调用中传入 `model` 和 `provider` 参数即可。

请参阅 [API 模型覆盖文档](/api/chat#model-override),了解完整的受支持提供方列表和自动检测规则。

## 跟进版本更新

默认模型选择会定期审查,只要提供方发布有意义的升级就会更新。请在更改模型选择的同一个 PR 中更新上方 Markdown 表格。
