Files
vi/services/oracle/llm/__init__.py
Alex Kazaiev ee1cb5540a 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.

🦊
2026-01-02 13:19:15 -06:00

5 lines
94 B
Python

# LLM module for Oracle service
from .llm_manager import LLMManager
__all__ = ['LLMManager']