Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

stepfun-step-audio-r1-1stepfun 步音频 r1 1

Agent Skill

用于辅助音频、音乐、语音转写、语音合成或声音素材处理。它适合让 Agent 生成配乐说明、整理音频流程、调用语音工具或处理播客和视频配音素材。使用时需要确认输入音频来源、输出格式、时长和模型限制;涉及人声克隆、版权音乐或公开发布时,应先核对授权和合规边界。

总安装

4,290

周安装

177

GitHub Stars

1

下载量

1,402
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:stepfun-step-audio-r1-1(stepfun 步音频 r1 1)
来源仓库:https://github.com/praanmichael/stepfun-step-audio-r1-1
安装命令:
openclaw skills install stepfun-step-audio-r1-1
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install stepfun-step-audio-r1-1

简介

使用 StepFun 的 step-audio-r1.1 模型进行非流式语音对话。

  • 支持带本地音频输入的文本交互与结果保存功能。
  • 适用于语音合成、音频理解或多轮语音任务处理。
  • 需配置 StepFun API 密钥并确认模型配额可用性。
  • 注意单次请求音频长度限制与响应延迟情况。stepfun-step-audio-r1-1 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
stepfun-step-audio-r1-1
description
Use StepFun Chat Completions with model step-audio-r1.1 for non-streaming speech turns that can send text with optional local audio input and save the returned audio, transcript, and raw response object.
metadata
openclaw
emoji
🔊
requires
bins
["python3"]
env
["STEPFUN_API_KEY", "STEP_API_KEY"]
primaryEnv
STEPFUN_API_KEY

StepFun step-audio-r1.1

Call StepFun's POST /v1/chat/completions endpoint with stream: false and model: step-audio-r1.1.

Use this skill when the user explicitly wants StepFun audio generation, speech-style replies through the Chat API, a standard non-streaming chat completion object, or local audio input encoded as input_audio.

Do not use this skill for realtime duplex voice sessions. Use StepFun Realtime API instead when the user wants low-latency live conversation.

step-audio-r1.1 does not support tool call. If the user needs tool calling, prefer step-audio-2 instead of this skill.

Quick Start

Text in, audio out:

python3 {baseDir}/scripts/stepfun_audio_chat.py \
  --prompt "用中文介绍一下苏州的春天,语气自然一点。" \
  --voice wenrounansheng \
  --format wav

Check available voice ids before a run:

python3 {baseDir}/scripts/stepfun_audio_chat.py \
  --list-voices

Text + local audio in, audio out:

python3 {baseDir}/scripts/stepfun_audio_chat.py \
  --prompt "听完这段语音后,总结重点,并用更简洁的话复述。" \
  --input-audio /path/to/input.wav \
  --voice wenrounansheng \
  --format wav

Build and inspect the non-streaming request without sending it:

python3 {baseDir}/scripts/stepfun_audio_chat.py \
  --prompt "测试 step-audio-r1.1 非流式 payload" \
  --dry-run \
  --print-json

What The Script Produces

The helper writes a fresh output directory for each run unless --output-dir is provided. Typical files are:

  • request.json: saved only for --dry-run
  • response.json: full non-streaming response object
  • response.<format>: decoded audio from choices[0].message.audio.data
  • transcript.txt: choices[0].message.audio.transcript
  • content.txt: textual assistant content when present

Common Flags

python3 {baseDir}/scripts/stepfun_audio_chat.py --help

Important flags:

  • --prompt: user text to send with the request
  • --input-audio: local audio file that will be base64-encoded into

input_audio; non-WAV files are converted to WAV first when ffmpeg or afconvert is available

  • --system: optional system instruction
  • --voice: output voice name
  • --list-voices: query StepFun for account-level custom/cloned voices and

print a few official voice hints

  • --format: non-streaming output audio format; this skill uses wav
  • --no-audio-output: request text-only output while still using the Chat API
  • --temperature: optional sampling override
  • --max-tokens: optional generation cap
  • --print-json: echo request or response JSON to stdout
  • --dry-run: build payload and stop before the network call

Configuration

Set STEPFUN_API_KEY in the environment, or inject it through OpenClaw skill config:

{
  skills: {
    entries: {
      "stepfun-step-audio-r1-1": {
        env: {
          STEPFUN_API_KEY: "STEP_KEY_HERE",
        },
      },
    },
  },
}

The script still accepts STEP_API_KEY as a legacy alias for backward compatibility, but the official name is STEPFUN_API_KEY.

Optional environment variables:

  • STEP_API_BASE_URL: overrides the default https://api.stepfun.com

Input audio note:

  • StepFun expects input_audio.data in data:audio/wav;base64,... format
  • Official docs mention WAV and MP3 input support
  • This script normalizes local input to WAV for maximum compatibility
  • If you pass m4a, mp3, aiff, or similar, this script will try to convert

to WAV via ffmpeg or macOS afconvert

  • The normalized input_audio payload must stay within StepFun's 10MB base64

limit

Voice selection note:

  • step-audio-r1.1 needs audio.voice whenever you request audio output
  • The script defaults to wenrounansheng, which was validated in real smoke

tests for this skill

  • For production use, prefer passing --voice explicitly
  • Use --list-voices to inspect account-level custom/cloned voice ids
  • Read references/stepfun-voices.md for how

step-audio-r1.1, step-audio-2, and step-tts-* differ in voice usage

Workflow

  1. Confirm the user wants StepFun step-audio-r1.1 through Chat API.
  2. Choose whether the turn is text-only or text plus local audio input.
  3. Run the helper script with stream: false.
  4. Return the saved transcript, the audio file path, and any important response

fields to the user.

Reference

Read references/stepfun-chat-api.md when you need the exact request shape, supported audio fields, or the non-streaming response layout. Read references/stepfun-voices.md when you need voice-selection guidance.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

73.28%
按下载量换算1,027

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills