14 lines
399 B
Python
14 lines
399 B
Python
|
|
"""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
|