From 943ddb932fd1cce13338f61a5c63f0baa3ec6d36 Mon Sep 17 00:00:00 2001 From: Daniel Chalef <131175+danielchalef@users.noreply.github.com> Date: Thu, 2 Oct 2025 15:36:52 -0700 Subject: [PATCH] fix: Remove ensure_ascii parameter from to_prompt_json call Align with other to_prompt_json calls that don't use ensure_ascii --- graphiti_core/prompts/extract_edges.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphiti_core/prompts/extract_edges.py b/graphiti_core/prompts/extract_edges.py index e8ce607c..28d9bddc 100644 --- a/graphiti_core/prompts/extract_edges.py +++ b/graphiti_core/prompts/extract_edges.py @@ -88,7 +88,7 @@ def edge(context: dict[str, Any]) -> list[Message]: -{to_prompt_json(context['nodes'], ensure_ascii=context.get('ensure_ascii', False), indent=2)} +{to_prompt_json(context['nodes'], indent=2)}