Remove unused import and tweak a comment

This commit is contained in:
Paul Kompfner
2025-06-24 11:05:52 -04:00
parent ce3ca418c2
commit e01c20be84
2 changed files with 1 additions and 1 deletions

View File

@@ -10,7 +10,6 @@ import os
from dotenv import load_dotenv
from loguru import logger
from pipecat.adapters.schemas.function_schema import FunctionSchema
from pipecat.adapters.schemas.tools_schema import ToolsSchema
from pipecat.audio.vad.silero import SileroVADAnalyzer
from pipecat.frames.frames import TTSSpeakFrame

View File

@@ -217,6 +217,7 @@ class DirectFunctionWrapper(BaseDirectFunctionWrapper):
Wrapper around a DirectFunction that:
- extracts metadata from the function signature and docstring
- generates a corresponding FunctionSchema
- helps with function invocation
"""
@classmethod