Billy D. f1dd96a42b
All checks were successful
CI / Test (push) Successful in 3m2s
CI / Lint (push) Successful in 3m7s
CI / Release (push) Successful in 1m55s
CI / Notify Downstream (stt-module) (push) Successful in 1s
CI / Notify Downstream (voice-assistant) (push) Successful in 1s
CI / Notify (push) Successful in 2s
CI / Notify Downstream (chat-handler) (push) Successful in 1s
CI / Notify Downstream (pipeline-bridge) (push) Successful in 1s
CI / Notify Downstream (tts-module) (push) Successful in 1s
style: gofmt + fix errcheck lint warning
2026-02-21 15:35:37 -05:00
2026-02-02 01:35:14 +00:00

handler-base

Go module providing shared infrastructure for NATS-based handler services.

Packages

Package Purpose
config Environment-based configuration via struct fields
health HTTP health/readiness server for Kubernetes probes
natsutil NATS/JetStream client with msgpack serialization
telemetry OpenTelemetry tracing and metrics setup
clients HTTP clients for LLM, embeddings, reranker, STT, TTS
handler Base Handler runner wiring NATS + health + telemetry

Usage

package main

import (
    "context"
    "git.daviestechlabs.io/daviestechlabs/handler-base/config"
    "git.daviestechlabs.io/daviestechlabs/handler-base/handler"
    "github.com/nats-io/nats.go"
)

func main() {
    cfg := config.Load()
    cfg.ServiceName = "my-service"

    h := handler.New("my.subject", cfg)
    h.OnMessage(func(ctx context.Context, msg *nats.Msg, data map[string]any) (map[string]any, error) {
        return map[string]any{"ok": true}, nil
    })
    h.Run()
}

Testing

go test ./...
Description
No description provided
Readme MIT 903 KiB
Languages
Go 100%