Skip to content

Commit

Permalink
services(openpipe): use OpenAILLMService to get access to aggregators
Browse files Browse the repository at this point in the history
  • Loading branch information
aconchillo committed Dec 11, 2024
1 parent 9e6fabf commit ecf0c61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pipecat/services/openpipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from typing import Dict, List

from pipecat.processors.aggregators.openai_llm_context import OpenAILLMContext
from pipecat.services.openai import BaseOpenAILLMService
from pipecat.services.openai import OpenAILLMService

from loguru import logger

Expand All @@ -22,7 +22,7 @@
raise Exception(f"Missing module: {e}")


class OpenPipeLLMService(BaseOpenAILLMService):
class OpenPipeLLMService(OpenAILLMService):
def __init__(
self,
*,
Expand Down

0 comments on commit ecf0c61

Please sign in to comment.