diff --git a/graphiti_core/llm_client/openai_client.py b/graphiti_core/llm_client/openai_client.py index 30f5e722..08e3cbbf 100644 --- a/graphiti_core/llm_client/openai_client.py +++ b/graphiti_core/llm_client/openai_client.py @@ -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,