sapoepsilon/whispera-voice-commands

🤗 Hugging Face 来源text-generationmit494M 参数988 MBsafetensors✓ 2 个校验和今天更新
一条命令提交

在你的模型文件夹旁边运行它。它会制作种子、将文件与 Hugging Face 比对,然后提交。你只需开始做种,并粘贴你账户中的密钥。它只读取你的文件,绝不修改。如果愿意,可以先阅读脚本。

curl -fsSL https://pirateface.co/package.sh | bash -s -- --repo sapoepsilon/whispera-voice-commands ./model-folder
需要做种者 →

Whispera Voice Commands (MLX)

This repo hosts a small MLX-compatible model fine-tuned to convert natural-language (voice-like) macOS commands into structured JSON:

{"category":"apps","operation":"open","app":"chrome"}

That JSON is intended to be mapped to real shell commands using the templates/patterns in macos_operations.json from the main project repo.

Project: https://github.com/sapoepsilon/whisperaModel

Usage (mlx_lm)

mlx_lm.generate --model sapoepsilon/whispera-voice-commands --prompt "open safari" --max-tokens 100 --temp 0.1

Notes

  • This is a fused (merged) model for convenience (base + LoRA adapters).
  • Outputs are JSON only; you should parse the first {...} block and then apply your own command templates.