From 847da6f39db6d6b0bf788e4ded1cf70004251b6f Mon Sep 17 00:00:00 2001 From: Nuno Campos Date: Wed, 2 Oct 2024 14:37:33 -0700 Subject: [PATCH] py: Stop sending serialized as a separate part - This is harder to get to work correctly in api, and not useful given we mostly don't send these anymore --- python/langsmith/client.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/langsmith/client.py b/python/langsmith/client.py index d0c57f8a2..d796bd694 100644 --- a/python/langsmith/client.py +++ b/python/langsmith/client.py @@ -1650,7 +1650,6 @@ def multipart_ingest_runs( fields = [ ("inputs", payload.pop("inputs", None)), ("outputs", payload.pop("outputs", None)), - ("serialized", payload.pop("serialized", None)), ("events", payload.pop("events", None)), ] # encode the main run payload