"""AI provider service — routes requests to configured provider.""" from __future__ import annotations class AIProviderService: """Manages AI provider selection and routes chat/summarize requests.""" # TODO: Implement provider routing # - Select provider based on config (local, openai, anthropic, litellm) # - Forward chat messages # - Handle streaming responses pass