29 Commits

Author SHA1 Message Date
b01057e11a fix: use docker login CLI instead of login-action for Gitea compat
Some checks failed
CI / Test (push) Successful in 2m55s
CI / Lint (push) Successful in 2m49s
CI / Release (push) Successful in 1m53s
CI / Notify (push) Has been cancelled
CI / Docker Build & Push (push) Has been cancelled
docker/login-action@v3 fails with 'Username and password required' on
Gitea Actions — secrets not passed to action with: inputs. Switch to
direct docker login CLI which reliably interpolates secrets in run: steps.
v0.1.2
2026-02-21 19:34:30 -05:00
7c0be6d00e fix: switch Docker registry to HTTPS endpoint with login-action
Some checks failed
CI / Test (push) Successful in 2m52s
CI / Lint (push) Successful in 2m48s
CI / Release (push) Successful in 1m36s
CI / Docker Build & Push (push) Failing after 8m21s
CI / Notify (push) Successful in 2s
- Replace gitea-http.gitea.svc.cluster.local:3000 with registry.lab.daviestechlabs.io
- Use docker/login-action@v3 for Gitea registry auth (proper buildx integration)
- Remove manual base64 auth to ~/.docker/config.json (not picked up by buildkit)
- Remove insecure registry daemon.json config and Docker restart
- Remove buildkitd insecure registry config
- Remove cache-from/cache-to type=gha (not supported on Gitea Actions)

Fixes 401 Unauthorized: reqPackageAccess on Docker push
v0.1.1
2026-02-21 18:05:43 -05:00
6e498cc0d5 feat: migrate from msgpack to protobuf (handler-base v1.0.0)
Some checks failed
CI / Test (push) Successful in 3m0s
CI / Lint (push) Successful in 3m0s
CI / Release (push) Successful in 59s
CI / Notify (push) Successful in 2s
CI / Docker Build & Push (push) Failing after 8m4s
- Replace msgpack encoding with protobuf wire format
- Update field names to proto convention
- Use pointer slices for repeated message fields ([]*DocumentSource)
- Rewrite tests for proto round-trips
v0.1.0
2026-02-21 15:30:26 -05:00
d891140817 chore: bump handler-base to v0.1.5, add netrc secret mount to Dockerfile
Some checks failed
CI / Lint (push) Successful in 2m58s
CI / Test (push) Successful in 2m58s
CI / Release (push) Successful in 1m34s
CI / Docker Build & Push (push) Failing after 8m30s
CI / Notify (push) Successful in 1s
v0.0.7 v0.0.8
2026-02-20 18:17:00 -05:00
d0115790e0 ci: retrigger build
Some checks failed
CI / Test (push) Successful in 2m26s
CI / Lint (push) Successful in 3m17s
CI / Release (push) Successful in 1m19s
CI / Docker Build & Push (push) Failing after 7m5s
CI / Notify (push) Successful in 2s
v0.0.6
2026-02-20 10:06:35 -05:00
ef4ef41404 fix: unignore .gitea workflow yaml files, add build-push.yaml
Some checks failed
CI / Lint (push) Successful in 2m55s
CI / Test (push) Successful in 2m38s
CI / Release (push) Successful in 56s
CI / Docker Build & Push (push) Failing after 4m3s
CI / Notify (push) Successful in 1s
The .gitignore had *.yaml for compiled KFP pipelines which was
preventing .gitea/workflows/build-push.yaml from being tracked.
v0.0.5
2026-02-20 09:29:29 -05:00
39b1199617 fix: add GOPRIVATE and git auth for private handler-base module
- Set GOPRIVATE=git.daviestechlabs.io to bypass public Go module proxy
- Configure git URL insteadOf with DISPATCH_TOKEN for private repo access
2026-02-20 09:22:38 -05:00
3a82afd483 fix: rename GITEA_TOKEN to DISPATCH_TOKEN 2026-02-20 09:10:23 -05:00
fb2d58a87f ci: add handler-base auto-update workflow, remove old Python CI 2026-02-20 09:06:02 -05:00
653445b005 fix: use tagged handler-base v0.1.3, remove local replace directive
Some checks failed
CI / Lint (push) Failing after 1m21s
CI / Test (push) Failing after 1m20s
CI / Release (push) Has been cancelled
CI / Notify (push) Has been cancelled
2026-02-20 09:00:48 -05:00
b4ed7dd5b4 fix: resolve golangci-lint errcheck warnings
Some checks failed
CI / Lint (push) Has been cancelled
CI / Test (push) Has been cancelled
CI / Release (push) Has been cancelled
CI / Notify (push) Has been cancelled
- Add error checks for unchecked return values (errcheck)
- Remove unused struct fields (unused)
- Fix gofmt formatting issues
2026-02-20 08:45:43 -05:00
32b7420c34 Merge pull request 'feature/go-handler-refactor' (#1) from feature/go-handler-refactor into main
Some checks failed
CI / Lint (push) Failing after 1m22s
CI / Test (push) Failing after 1m24s
CI / Release (push) Has been skipped
CI / Notify (push) Successful in 1s
Reviewed-on: #1
2026-02-20 12:33:52 +00:00
8ef0c93e47 feat: migrate to typed messages, drop base64
Some checks failed
CI / Lint (pull_request) Failing after 1m22s
CI / Test (pull_request) Failing after 1m21s
CI / Release (pull_request) Has been skipped
CI / Notify (pull_request) Successful in 1s
- Switch OnMessage → OnTypedMessage with natsutil.Decode[messages.VoiceRequest]
- Return *messages.VoiceResponse with raw []byte audio (no base64)
- Use messages.DocumentSource for RAG sources
- Remove strVal/boolVal helpers
- Add .dockerignore, GOAMD64=v3 in Dockerfile
- Update tests for typed structs (7 tests pass)
2026-02-20 07:10:51 -05:00
f41198d8f2 feat: add e2e tests + benchmarks, fix config API
- e2e_test.go: full voice pipeline (STT->Embed->Rerank->LLM->TTS)
- main.go: fix config field->method references
- Benchmarks: full pipeline 481µs/op
2026-02-20 06:45:21 -05:00
2e66cac1e9 feat: rewrite voice-assistant in Go
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
2026-02-19 18:00:58 -05:00
e028d078d8 fix: replace astral-sh/setup-uv action with shell install
All checks were successful
CI / Lint (push) Successful in 1m33s
CI / Test (push) Successful in 1m36s
CI / Release (push) Successful in 5s
CI / Notify (push) Successful in 1s
The JS-based GitHub Action doesn't work on Gitea's act runner.
Use curl installer + GITHUB_PATH instead.
v0.0.4
2026-02-13 19:40:54 -05:00
8fb683d63e chore: add Renovate config for automated dependency updates
All checks were successful
CI / Lint (push) Successful in 1m35s
CI / Test (push) Successful in 1m37s
CI / Notify (push) Successful in 1s
CI / Release (push) Successful in 5s
Ref: ADR-0057
v0.0.3
2026-02-13 15:33:49 -05:00
4048870392 chore: add pre-commit config with ruff hooks
All checks were successful
CI / Lint (push) Successful in 2m30s
CI / Test (push) Successful in 2m59s
CI / Release (push) Successful in 56s
CI / Notify (push) Successful in 2s
- Add .pre-commit-config.yaml for local development
- Update .gitignore to allow .pre-commit-config.yaml
v0.0.2
2026-02-02 09:10:27 -05:00
0462412353 fix: ruff formatting, allow-direct-references, and noqa for Kubeflow pipeline vars
All checks were successful
CI / Lint (push) Successful in 51s
CI / Test (push) Successful in 55s
CI / Release (push) Successful in 7s
CI / Notify (push) Successful in 2s
v0.0.1
2026-02-02 08:44:14 -05:00
58465b77d8 fix: upgrade setup-uv to v7 with explicit activate-environment: false
Some checks failed
CI / Test (push) Failing after 22s
CI / Release (push) Has been skipped
CI / Lint (push) Failing after 28s
CI / Notify (push) Successful in 1s
2026-02-02 08:26:09 -05:00
9841fd3819 fix: downgrade setup-uv to v4 for act_runner compatibility
Some checks failed
CI / Release (push) Has been cancelled
CI / Notify (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Test (push) Has been cancelled
2026-02-02 08:25:23 -05:00
d5767a31da fix: use --extra dev for optional dependencies
Some checks failed
CI / Lint (push) Failing after 30s
CI / Test (push) Failing after 19s
CI / Release (push) Has been skipped
CI / Notify (push) Successful in 1s
2026-02-02 08:14:58 -05:00
61002a8f4b fix: add --all-groups to uv sync to install dev dependencies
Some checks failed
CI / Lint (push) Failing after 12s
CI / Test (push) Failing after 23s
CI / Release (push) Has been skipped
CI / Notify (push) Successful in 2s
2026-02-02 08:11:13 -05:00
c9ba9e22bb feat: add ntfy notifications and semantic versioning (ADR-0015)
Some checks failed
CI / Lint (push) Failing after 24s
CI / Test (push) Failing after 19s
CI / Release (push) Has been skipped
CI / Notify (push) Successful in 2s
2026-02-02 08:00:29 -05:00
a7863566d3 ci: re-trigger pipeline
Some checks failed
CI / Lint (push) Failing after 1s
CI / Test (push) Failing after 1s
2026-02-02 07:51:07 -05:00
dd4aea53e6 ci: add Gitea Actions workflow, add uv.lock
Some checks failed
CI / Lint (push) Failing after 1s
CI / Test (push) Failing after 1s
2026-02-02 07:16:04 -05:00
77d6822a63 refactor: consolidate to handler-base, migrate to pyproject.toml, add tests 2026-02-02 07:10:54 -05:00
f0b626a5e7 feat: Add voice assistant handler and Kubeflow pipeline
- voice_assistant.py: Standalone NATS handler with full RAG pipeline
- voice_assistant_v2.py: Handler-base implementation
- pipelines/voice_pipeline.py: KFP SDK pipeline definitions
- Dockerfiles for both standalone and handler-base versions

Pipeline: STT → Embeddings → Milvus → Rerank → LLM → TTS
2026-02-01 20:32:37 -05:00
08a17ebd8e Initial commit 2026-02-01 20:05:19 +00:00