diff --git a/src/talemate/agents/director/plan/util.py b/src/talemate/agents/director/plan/util.py index 54494dc8..0a989822 100644 --- a/src/talemate/agents/director/plan/util.py +++ b/src/talemate/agents/director/plan/util.py @@ -6,7 +6,7 @@ import structlog from talemate.emit import emit -from .schema import Beat, Plan, PlanStatus +from .schema import Beat, Plan log = structlog.get_logger("talemate.agents.director.plan.util") diff --git a/src/talemate/agents/tts/openai_compatible.py b/src/talemate/agents/tts/openai_compatible.py index 67de186d..97f841b5 100644 --- a/src/talemate/agents/tts/openai_compatible.py +++ b/src/talemate/agents/tts/openai_compatible.py @@ -4,7 +4,7 @@ import structlog from openai import AsyncOpenAI from talemate.ux.schema import Action from talemate.agents.base import AgentAction, AgentActionConfig, AgentDetail -from .schema import Voice, VoiceLibrary, Chunk, GenerationContext, INFO_CHUNK_SIZE +from .schema import VoiceLibrary, Chunk, GenerationContext, INFO_CHUNK_SIZE log = structlog.get_logger("talemate.agents.tts.openai_compatible")