---
title: "Hermes Agent x MiniMax H3 使用指南"
url: "https://runapi.ai/zh-TW/hermes-minimax-h3.md"
canonical: "https://runapi.ai/zh-TW/hermes-minimax-h3"
locale: "zh-TW"
model_line: "minimax-h3"
---

# Hermes Agent x MiniMax H3

文字生成影片與圖片生成影片共用一個 RunAPI 模型 ID。參考模式最多支援 9 張圖片、3 段影片和 3 段音訊；音訊參考必須搭配圖片或影片參考。

## 公開版本與端點

| 模型 ID | 版本 | 端點 | 起始價格 |
| --- | --- | --- | --- |
| `minimax-h3` | 文字、首尾幀或多模態參考生成 4-15 秒、最高 2K 影片 | /api/v1/minimax_h3/text_to_video, /api/v1/minimax_h3/image_to_video | $0.370 |

## 設定

設定 `RUNAPI_API_KEY`，再向 `<endpoint>` 傳送包含 `<model-id>` 的請求。只有端點回傳非同步 Task 時才需輪詢。

```shell
export RUNAPI_API_KEY=your_api_key

curl -X POST https://runapi.ai/api/v1/minimax_h3/text_to_video \
  -H "Authorization: Bearer $RUNAPI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "model": "minimax-h3",
  "prompt": "A slow aerial view of a quiet coastline at sunrise.",
  "aspect_ratio": "16:9"
}'
```

POST /api/v1/minimax_h3/text_to_video，並儲存回傳的 Task ID。
GET /api/v1/minimax_h3/text_to_video/<task-id>，直到狀態為 completed 或 failed。
確認 completed 回應包含 API 參考中記載的端點專屬輸出。

## 其他操作


## 使用流程

1. **選擇模型 ID.** 選擇公開模型 ID，並查看其端點與目前起始價格。
2. **設定 RunAPI.** 呼叫端點前設定 RUNAPI_API_KEY。
3. **驗證結果.** 對非同步端點輪詢同一路徑，直到 Task 進入終態。

## 常見問題

### 應該使用哪個模型 ID？

從版本表選擇公開模型 ID。每個 ID 可用的端點都列在對應資料列。

### 本指南會設定聊天模型嗎？

不會。此 Model Line 使用頁面所示的端點流程，不會被描述為 Agent 聊天模型。


## 相關連結

- [Hermes Agent](https://runapi.ai/zh-TW/hermes-agent)
- [MiniMax H3 - 模型目錄](https://runapi.ai/zh-TW/models/minimax-h3)
- [minimax-h3](https://runapi.ai/zh-TW/models/minimax-h3/minimax-h3)

```json
{
  "@context": "https://schema.org",
  "@type": "SoftwareApplication",
  "name": "Hermes Agent x MiniMax H3",
  "url": "https://runapi.ai/zh-TW/hermes-minimax-h3"
}
```
