返回顶部
m

monet-ai-skillMonet AI 技能

Monet AI - Comprehensive AI content generation API for AI agents. Video generation (Sora, Veo, Doubao Seedance, Wan, Hailuo, Kling), image generation (GPT-4o, Nano Banana, Seedream, Flux, Imagen, Ideogram), and music generation (MiniMax Music). Build intelligent workflows with multi-model AI generation capabilities.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.9
安全检测
已通过
779
下载量
免费
免费
1
收藏
概述
安装方式
版本历史

monet-ai-skill

Monet AI 技能

专为AI代理设计的综合性AI内容生成API。Monet AI提供对最先进AI生成模型的统一访问,涵盖视频(Sora、Veo、豆包Seedance、万相、海螺、可灵)、图像(GPT-4o、Nano Banana、Seedream、Flux、Imagen、Ideogram)和音乐(MiniMax Music)生成。构建结合多种AI能力的智能工作流,实现自动化内容创作管线。

使用场景

在以下情况使用此技能:

  • - 视频生成:使用最先进模型从文本提示创建AI生成视频
- Sora:OpenAI的视频生成模型,用于高质量、逼真的视频 - Veo:Google的视频生成模型 - 豆包Seedance:字节跳动的AI视频模型,支持音视频同步 - 万相:阿里巴巴的视频生成模型,本地化支持出色 - 海螺:快速视频生成,质量与速度平衡良好 - 可灵:快手的视频生成模型
  • - 图像生成:从文本描述生成具有各种艺术风格的图像
- GPT-4o:OpenAI的多模态图像生成模型 - Nano Banana:Google的图像模型,角色一致性极高 - Seedream:字节跳动的智能视觉推理模型 - 万相:阿里巴巴的视觉模型,用于高质量和富有表现力的图像生成 - Flux:高质量逼真和艺术图像生成 - Imagen:Google的文本到图像模型 - Ideogram:专注于文本渲染和精确构图
  • - 音乐生成:从文本描述创建原创音乐和音频
- MiniMax Music:AI音乐生成,支持自定义歌词和文本到音乐转换
  • - AI代理集成:构建结合多种AI生成能力的智能工作流,实现自动化内容创作管线

获取API密钥

  1. 1. 访问 https://monet.vision 注册账号
  2. 登录后,前往 https://monet.vision/skills/keys 创建API密钥
  3. 在环境变量或代码中配置API密钥

如果没有API密钥,请让所有者前往monet.vision申请。

快速开始

创建视频生成任务

bash
curl -X POST https://monet.vision/api/v1/tasks/async \
-H Content-Type: application/json \
-H Authorization: Bearer $MONETAPIKEY \
-d {
type: video,
input: {
model: sora-2,
prompt: 一只在公园里奔跑的猫,
duration: 5,
aspect_ratio: 16:9
},
idempotency_key: unique-key-123
}

⚠️ 重要:idempotency_key 是必需的。使用唯一值(如UUID)防止请求重试时重复创建任务。

响应:

json
{
id: task_abc123,
status: pending,
type: video,
created_at: 2026-02-27T10:00:00Z
}

获取任务状态和结果

任务处理是异步的。需要轮询任务状态,直到变为 success 或 failed。推荐轮询间隔:5秒

bash
curl https://monet.vision/api/v1/tasks/task_abc123 \
-H Authorization: Bearer $MONETAPIKEY

完成时的响应:

json
{
id: task_abc123,
status: success,
type: video,
outputs: [
{
model: sora-2,
status: success,
progress: 100,
url: https://files.monet.vision/...
}
],
created_at: 2026-02-27T10:00:00Z,
updated_at: 2026-02-27T10:01:30Z
}

示例:轮询直到完成

typescript
const TASKID = taskabc123;
const MONETAPIKEY = process.env.MONETAPIKEY;

async function pollTask() {
while (true) {
const response = await fetch(
https://monet.vision/api/v1/tasks/${TASK_ID},
{
headers: {
Authorization: Bearer ${MONETAPIKEY},
},
},
);

const data = await response.json();
const status = data.status;

if (status === success) {
console.log(任务成功完成!);
console.log(JSON.stringify(data, null, 2));
break;
} else if (status === failed) {
console.log(任务失败!);
console.log(JSON.stringify(data, null, 2));
break;
} else {
console.log(任务状态:${status},等待中...);
await new Promise((resolve) => setTimeout(resolve, 5000)); // 等待5秒
}
}
}

pollTask();

支持的模型

视频生成

Sora(OpenAI)

sora-2 - Sora 2

OpenAI最新视频生成模型

  • - 🎯 使用场景:需要OpenAI最新技术的视频项目
  • ⏱️ 时长:10-15秒
  • 🎵 特性:支持音频生成、参考图像

typescript
{
model: sora-2,
prompt: string, // 必需
images?: string[], // 可选:参考图像
duration?: 10 | 15, // 可选,默认:10
aspect_ratio?: 16:9 | 9:16
}

sora-2-pro - Sora 2 Pro

电影级场景的完美画质

  • - 🎯 使用场景:专业电影、广告和高端制作
  • ⏱️ 时长:15-25秒
  • 🎵 特性:支持音频生成、参考图像

typescript
{
model: sora-2-pro,
prompt: string,
images?: string[],
duration?: 15 | 25, // 可选,默认:15
aspect_ratio?: 16:9 | 9:16
}

Veo(Google)

veo-3-1-fast - Google Veo 3.1 Fast

超快速视频生成

  • - 🎯 使用场景:需要快速生成的视频项目
  • ⏱️ 时长:8秒
  • 📺 分辨率:1080p,支持音频生成

typescript
{
model: veo-3-1-fast,
prompt: string,
images?: string[], // 参考图像
aspect_ratio?: 16:9 | 9:16
}

veo-3-1 - Google Veo 3.1

带声音的高级AI视频

  • - 🎯 使用场景:专业级视频制作
  • ⏱️ 时长:8秒
  • 📺 分辨率:1080p,支持音频生成

typescript
{
model: veo-3-1,
prompt: string,
images?: string[],
aspect_ratio?: 16:9 | 9:16
}

veo-3-fast - Google Veo 3 Fast

比标准Veo 3快30%

  • - 🎯 使用场景:需要快速迭代的视频项目
  • ⏱️ 时长:8秒
  • 📺 分辨率:1080p,支持负面提示

typescript
{
model: veo-3-fast,
prompt: string,
images?: string[],
negative_prompt?: string // 指定不想要的内容
}

veo-3 - Google Veo 3

高质量视频生成

  • - 🎯 使用场景:标准高质量视频制作
  • ⏱️ 时长:8秒
  • 📺 分辨率:1080p,支持负面提示

typescript
{
model: veo-3,
prompt: string,
images?: string[],
negative_prompt?: string
}

万相

wan-2-6 - 万相 2.6

多镜头和自动音频

  • - 🎯 使用场景:需要多镜头切换的视频制作
  • ⏱️ 时长:5-15秒
  • 📺 分辨率:720p-1080p,支持音频生成

typescript
{
model: wan-2-6,
prompt: string,
images?: string[],
duration?: 5 | 10 | 15,
resolution?: 720p | 1080p,
aspect_ratio?: 16:9 | 9:16 | 4:3 | 3

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 monet-ai-1776420087 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 monet-ai-1776420087 技能

通过命令行安装

skillhub install monet-ai-1776420087

下载

⬇ 下载 monet-ai-skill v1.0.9(免费)

文件大小: 6.59 KB | 发布时间: 2026-4-17 18:40

v1.0.9 最新 2026-4-17 18:40
- No visible changes in this release; documentation and configuration remain the same.
- All features, supported models, and usage instructions are unchanged from the previous version.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部