Skip to main content

build

Build the speech-swift package (release or debug). Use when preparing for testing, benchmarking, or running demos.

跳到安装

来源信息

仓库
soniqo/speech-swift
最近来源活动
2026年3月23日 19:31
检测到的 SKILL.md 语言
英语
星标
1,180
分支
163

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
build
description
Build the speech-swift package (release or debug). Use when preparing for testing, benchmarking, or running demos.
disable-model-invocation
false
argument-hint
["release|debug"]
allowed-tools
Bash
# Build Build the package in the specified configuration. Default: release. ```bash config="${ARGUMENTS:-release}" if [ "$config" = "debug" ]; then make debug else make build fi ``` The metallib step compiles MLX Metal shaders. Without it, inference runs ~5x slower due to JIT compilation. `make build` handles this automatically.
在 GitHub 查看