"""Inference gateway clients. Exports: OpenAICompatibleClient - Client for OpenAI-compatible endpoints (vLLM, OpenAI, etc.) OllamaNativeClient - Client for Ollama /api/chat native endpoints. """ from services.shared.inference.clients.ollama_native import OllamaNativeClient from services.shared.inference.clients.openai_compatible import OpenAICompatibleClient __all__ = ["OpenAICompatibleClient", "OllamaNativeClient"]