Remove unconditional debug print from Responses model

This commit is contained in:
segunakinfenwa-sketch 2026-04-23 03:45:17 +01:00
parent 7ec0b4ccf2
commit 092bce679b
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ class OpenAIResponsesModel(Model):
model: str | ChatModel,
openai_client: AsyncOpenAI,
) -> None:
print(f"\nDEBUG: OpenAIResponsesModel initialized with model: {model}\n")
logger.debug(f"OpenAIResponsesModel initialized with model: {model}")
self.model = model
self._client = openai_client