Add Oracle service - LLM wrapper

First service for Vi's nervous system:
- Oracle service with NATS integration
- vLLM backend for Qwen3-32B
- GPTQ quantization support
- Thinking mode sampling configs

Simplified from Lyra's patterns, ready to test.

🦊
This commit is contained in:
Alex Kazaiev
2026-01-02 13:19:15 -06:00
parent e2d24a66f1
commit ee1cb5540a
8 changed files with 552 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
# Oracle Service - LLM wrapper for Vi
from .oracle_service import OracleService, oracle_service
__all__ = ['OracleService', 'oracle_service']