Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
isahers1 committed Dec 17, 2024
1 parent 86e2a0f commit 1207bb0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 3 additions & 1 deletion python/langsmith/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,9 @@ class RunBase(BaseModel):
tags: Optional[List[str]] = None
"""Tags for categorizing or annotating the run."""

attachments: Union[Attachments, Dict[str, AttachmentInfo]] = Field(default_factory=dict)
attachments: Union[Attachments, Dict[str, AttachmentInfo]] = Field(
default_factory=dict
)
"""Attachments associated with the run.
Each entry is a tuple of (mime_type, bytes)."""

Expand Down
3 changes: 0 additions & 3 deletions python/tests/integration_tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -941,9 +941,6 @@ def test_multipart_ingest_create_with_attachments(
langchain_client: Client, caplog: pytest.LogCaptureFixture
) -> None:
_session = "__test_multipart_ingest_create_with_attachments"
langchain_client = Client(
api_key="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"
)
trace_a_id = uuid4()
current_time = datetime.datetime.now(datetime.timezone.utc).strftime(
"%Y%m%dT%H%M%S%fZ"
Expand Down

0 comments on commit 1207bb0

Please sign in to comment.