mirror of
https://github.com/Alkatrazz24/Funk-lab.git
synced 2026-07-09 06:34:42 +02:00
- cli.py : commande `stt` (--setup, --mode, --no-tts) - config.py : défauts embarqués + ~/.config/stt/stt.toml - voice/engine.py : refactor de hermes-voice en classe avec callbacks d'état - brain/router.py : 3 modes (hermes SSH / local LiteLLM / claude API) + auto-détection LAN - server/app.py : HTTP statique (HUD) + websocket (états → HUD) - memory/store.py : tier local SQLite (Qdrant + sync GitHub = phase 4) - hud/index.html : HUD MVP (visualiseur d'état + conversation) Vérifié hors-LAN : py_compile, --help, config, routeur (→ claude), mémoire SQLite. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_013FmcxGsyXZXogiAHQLjnZT
8 lines
207 B
Python
8 lines
207 B
Python
"""Mémoire STT — tier local (SQLite) en phase 1.
|
|
|
|
Tiers Qdrant (s01) et distillation/sync GitHub : phase 4 (voir admin/ia/stt.md).
|
|
"""
|
|
|
|
from stt.memory.store import LocalMemory
|
|
|
|
__all__ = ["LocalMemory"]
|