27 lines
927 B
YAML
27 lines
927 B
YAML
# @chobit Service Ports - Development
|
|
#
|
|
# Local ports: 19700-19799 (reserved for chobit sidecars)
|
|
# External services accessed over network (not localhost-bound)
|
|
|
|
chobit:
|
|
# Godot ↔ sidecar communication (desktop only, localhost)
|
|
godot_udp: 19700 # TrayListener receives commands
|
|
tray_udp: 19701 # Tray receives responses
|
|
|
|
# Vision sidecar (desktop only, localhost)
|
|
vision_events: 19710 # Face/gaze event stream
|
|
|
|
# Local infrastructure
|
|
redis:
|
|
default: 6379 # lilith-eventbus pub/sub
|
|
|
|
# Remote services (network, host configured in CompanionConfig)
|
|
# These run on model-boss host (e.g., apricot:8210) or dedicated service hosts
|
|
external:
|
|
model_boss: 8210 # GPU lease coordination (apricot.lan)
|
|
speech_synthesis: 41222 # STT + TTS (@speech-synthesis service)
|
|
llm: configurable # OpenAI-compatible endpoint via model-boss
|
|
|
|
# Runtime configuration (dev)
|
|
runtime:
|
|
log_level: debug
|