Skip to content

Commit

Permalink
seq
Browse files Browse the repository at this point in the history
  • Loading branch information
hinthornw committed Jul 21, 2023
1 parent f5b556c commit 0debb1c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/langsmith/run_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from concurrent.futures import ThreadPoolExecutor
from contextlib import contextmanager
from functools import wraps
from typing import Any, Callable, Dict, Generator, List, Mapping, Optional, Union
from typing import Any, Callable, Dict, Generator, Mapping, Optional, Sequence, Union
from uuid import UUID

from langsmith.run_trees import RunTree
Expand Down Expand Up @@ -56,7 +56,7 @@ def traceable(
extra: Optional[Dict] = None,
executor: Optional[ThreadPoolExecutor] = None,
metadata: Optional[Mapping[str, Any]] = None,
tags: Optional[List[str]] = None,
tags: Optional[Sequence[str]] = None,
) -> Callable:
"""Decorator for creating or adding a run to a run tree."""
_warn_once()
Expand Down Expand Up @@ -241,7 +241,7 @@ def trace(
executor: Optional[ThreadPoolExecutor] = None,
project_name: Optional[str] = None,
run_tree: Optional[RunTree] = None,
tags: Optional[List[str]] = None,
tags: Optional[Sequence[str]] = None,
metadata: Optional[Mapping[str, Any]] = None,
) -> Generator[RunTree, None, None]:
"""Context manager for creating a run tree."""
Expand Down

0 comments on commit 0debb1c

Please sign in to comment.