Replace Python voice assistant with Go for smaller container images. Uses handler-base Go module for NATS, health, telemetry, and all service clients. - Full pipeline: STT → embed → Milvus → rerank → LLM → TTS - Base64 audio encode/decode - Dockerfile: multi-stage golang:1.25-alpine → scratch - CI: Gitea Actions with lint/test/release/docker/notify
45 lines
380 B
Plaintext
45 lines
380 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Virtual environments
|
|
venv/
|
|
.venv/
|
|
ENV/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Compiled KFP pipelines
|
|
*.yaml
|
|
!.pre-commit-config.yaml
|
|
!pipelines/*.py
|
|
|
|
# Local
|
|
.env
|
|
.env.local
|
|
*.log
|
|
voice-assistant
|