Remove fallback print statement in openai_client.py

Removed print statement for fallback to chat completions.
This commit is contained in:
Jialong Liu 2025-11-06 19:13:53 +08:00 committed by GitHub
parent 998e60baf8
commit bdf5600471
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -116,7 +116,7 @@ class OpenAIClient(BaseOpenAIClient):
# Some providers require a schema name; use model class name by default
schema_name = getattr(response_model, '__name__', 'structured_response')
print(f'Falling back to chat.completions with JSON schema for model {model}...')
# Falling back to chat.completions with JSON schema for model
completion = await self.client.chat.completions.create(
model=model,
messages=messages,