Skip to content

Commit

Permalink
py: Stop sending serialized as a separate part (#1061)
Browse files Browse the repository at this point in the history
- This is harder to get to work correctly in api, and not useful given
we mostly don't send these anymore
  • Loading branch information
nfcampos authored Oct 2, 2024
2 parents f0bf4b6 + 847da6f commit 92d8e66
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion python/langsmith/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 92d8e66

Please sign in to comment.