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

# 托管智能体定价

> 查看 Kimi 托管智能体（Hosted Agents）的沙箱、模型推理和插件定价。

export const DocTable = ({columns = [], rows = []}) => {
  return <div className="doc-table-wrap">
      <table className="doc-table">
        {columns.length > 0 ? <colgroup>
            {columns.map((column, index) => <col key={index} style={column.width ? {
    width: column.width
  } : undefined} />)}
          </colgroup> : null}
        <thead>
          <tr>
            {columns.map((column, index) => <th key={index}>{column.title}</th>)}
          </tr>
        </thead>
        <tbody>
          {rows.map((row, rowIndex) => <tr key={rowIndex}>
              {row.map((cell, cellIndex) => <td key={cellIndex}>{cell}</td>)}
            </tr>)}
        </tbody>
      </table>
    </div>;
};

## 沙箱定价

托管智能体的每个会话运行在一个独立的云沙箱中，沙箱按运行时长计费。

<DocTable
  columns={[
{ title: "项目", width: "24%" },
{ title: "规格", width: "28%" },
{ title: "价格", width: "20%" },
{ title: "计费说明", width: "28%" },
]}
  rows={[
["云沙箱", "1 核 CPU / 1 GB 内存", "¥0.072 / 小时", "按运行时长计费，最小按秒计费"],
]}
/>

## 模型推理定价

托管智能体执行过程中产生的模型 token 消耗，按所选模型的推理价格计费，详见各模型的定价页面：[模型推理价格说明](/docs/pricing/chat)。

## 插件定价

为智能体挂载插件后，插件按调用次数计费。下表按千次使用费用分组列出各价格档位的插件：

<DocTable
  columns={[
{ title: "千次使用费用（元）", width: "18%" },
{ title: "插件", width: "82%" },
]}
  rows={[
["¥1", "IMF 国际货币基金组织数据库-if、国际组织官方数据、金融投资分析、金融投资分析-if、金融投资分析-sr、金融投资分析-wa、金融投资分析-ye、金融投资分析插件、企业财务会计、企业财务会计-if、企业财务会计-sr、企业财务会计-wa、企业财务会计-ye、全球金融数据库-ye、世界银行公开数据-wa、投资银行私募股权、投资银行私募股权-wa、投资银行私募股权-if、投资银行私募股权-sr、投资银行私募股权-ye"],
["¥20", "金融投资分析-ta、企业财务会计-ta、天眼查-ta、投资银行私募股权-ta"],
["¥30", "联网搜索"],
["¥45", "搜图"],
["¥60", "金融数据库-id、金融投资分析-id、企业财务会计-id、投资银行私募股权-id"],
["¥110", "金融投资分析-xj"],
["¥150", "金融投资分析-sa、金融投资分析插件、企业财务会计-ga、企业财务会计-sa、全球市场财智、投资银行私募股权-ga、投资银行私募股权-sa"],
["¥450", "金融数据服务-wd、金融投资分析-wd、企业财务会计-wd、投资银行私募股权-wd"],
]}
/>
