Skip to content

Commit

Permalink
fix: Separate rust and compressed ingestion paths
Browse files Browse the repository at this point in the history
  • Loading branch information
angus-langchain committed Dec 27, 2024
1 parent b418e38 commit 64ae652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/langsmith/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1292,7 +1292,7 @@ def create_run(
):
if self._pyo3_client is not None:
self._pyo3_client.create_run(run_create)
if self.compressed_runs is not None:
elif self.compressed_runs is not None:
serialized_op = serialize_run_dict("post", run_create)
multipart_form = (
serialized_run_operation_to_multipart_parts_and_context(
Expand Down

0 comments on commit 64ae652

Please sign in to comment.