R
Rust
A
本地 ASR
V
VAD
L
LLM 集成

shuo/
├── crates/
│   ├── shuo/            # 应用层,负责 UI、热键和音频编排
│   ├── shuo-asr/        # 本地语音识别,重采样、VAD、分段
│   ├── shuo-audio/      # 音频输入,麦克风访问和采集
│   ├── shuo-assets/     # 静态资源,图标和图片
│   └── shuo-txt/        # 文本处理
├── docs/                # 项目文档
├── Cargo.toml           # Workspace 配置
└── README.mdshuo/
├── crates/
│   ├── shuo/            # Application layer, UI, hotkeys and audio orchestration
│   ├── shuo-asr/        # Local speech recognition, resampling, VAD, segmentation
│   ├── shuo-audio/      # Audio input, microphone access and capture
│   ├── shuo-assets/     # Static assets, icons and images
│   └── shuo-txt/        # Text processing
├── docs/                # Project documentation
├── Cargo.toml           # Workspace configuration
└── README.md