Skip to main content

yao-audio

Audio expert. ALWAYS invoke this skill when the user asks to transcribe, recognize, or convert speech/audio to text.

설치로 이동

소스 정보

저장소
YaoApp/yao
최근 소스 활동
2026년 8월 8일 09:06
감지된 SKILL.md 언어
영어
스타
7,985
포크
712

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
yao-audio
description
Audio expert. ALWAYS invoke this skill when the user asks to transcribe, recognize, or convert speech/audio to text.
# Audio Tools Use these tools to transcribe audio files to text using speech-to-text models. ## audio_transcribe Transcribe an audio file to text. ```bash tai tool audio_transcribe --audio_path /path/to/meeting.m4a ``` ```bash tai tool audio_transcribe --audio_path /path/to/recording.wav --language en --provider llm.my-openai:whisper-1 ``` | Parameter | Type | Required | Description | | ---------- | ------ | -------- | ----------------------------------------------------------------- | | audio_path | string | yes | Audio file path. Supported: mp3, m4a, wav, webm, mp4, mpeg, mpga | | language | string | no | ISO 639-1 language code (e.g. `en`, `zh`, `ja`). Auto-detected if omitted | | provider | string | no | STT provider connector ID. If omitted, uses the default STT provider | ## audio_providers List available speech-to-text providers and models. ### List STT providers (default): ```bash tai tool audio_providers ``` | Parameter | Type | Required | Description | | ---------- | ------ | -------- | ------------------------------------ | | capability | string | no | Filter by capability (default: `audio`) | Returns a list of providers with their available models and connector IDs that can be passed to `audio_transcribe`. ## Constraints Only use the parameters listed above for each tool. Do not pass unsupported parameters — they will be ignored or cause errors.
GitHub에서 보기