services: restructure base AI services into modules

This commit is contained in:
Aleix Conchillo Flaqué
2025-03-31 13:48:00 -07:00
parent c9a93f2504
commit 9eba8f1637
52 changed files with 1267 additions and 1160 deletions

View File

@@ -17,9 +17,9 @@ from pipecat.processors.aggregators.openai_llm_context import (
OpenAILLMContext,
OpenAILLMContextFrame,
)
from pipecat.services.ai_services import LLMService
from pipecat.services.anthropic.llm import AnthropicLLMService
from pipecat.services.google.llm import GoogleLLMService
from pipecat.services.llm_service import LLMService
from pipecat.services.openai.llm import OpenAILLMService
from pipecat.tests.utils import run_test