From 57c7b779283e810fc8b8c392001027e00a878d72 Mon Sep 17 00:00:00 2001 From: "caozouying.czy" Date: Tue, 25 Nov 2025 23:35:32 +0800 Subject: [PATCH] fix: Resolve Internal Server Error when action=delete in vector_store_action_op by converting the Elasticsearch response to a serializable format --- reme_ai/vector_store/vector_store_action_op.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reme_ai/vector_store/vector_store_action_op.py b/reme_ai/vector_store/vector_store_action_op.py index 7df2d68c..670e85b0 100644 --- a/reme_ai/vector_store/vector_store_action_op.py +++ b/reme_ai/vector_store/vector_store_action_op.py @@ -99,4 +99,4 @@ class VectorStoreActionOp(BaseAsyncOp): else: raise ValueError(f"invalid action={action}") - self.context.response.metadata["action_result"] = result + self.context.response.metadata["action_result"] = str(result)