Skip to content

Commit

Permalink
Merge pull request #824 from pipecat-ai/aleix/openpipe-use-openai-bas…
Browse files Browse the repository at this point in the history
…e-service

services(openpipe): use OpenAILLMService to get access to aggregators
  • Loading branch information
aconchillo authored Dec 11, 2024
2 parents b034c6e + ecf0c61 commit 9a358b2
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 9a358b2

Please sign in to comment.