formatting

This commit is contained in:
Dev-Khant
2025-04-28 22:57:18 +05:30
parent aa23a7b1e6
commit 5354e5d891
2 changed files with 3 additions and 2 deletions

View File

@@ -44,6 +44,7 @@ The bot runs as part of a pipeline that processes audio frames and manages the c
import argparse
import os
from typing import Union
from dotenv import load_dotenv
from loguru import logger
@@ -64,7 +65,7 @@ from pipecat.transports.network.webrtc_connection import SmallWebRTCConnection
load_dotenv(override=True)
try:
from mem0 import MemoryClient, Memory
from mem0 import Memory, MemoryClient # noqa: F401
except ModuleNotFoundError as e:
logger.error(f"Exception: {e}")
logger.error(

View File

@@ -17,7 +17,7 @@ from pipecat.processors.aggregators.openai_llm_context import (
from pipecat.processors.frame_processor import FrameDirection, FrameProcessor
try:
from mem0 import MemoryClient, Memory # noqa: F401
from mem0 import Memory, MemoryClient # noqa: F401
except ModuleNotFoundError as e:
logger.error(f"Exception: {e}")
logger.error(