41from langsmith.run_helpers import as_runnable, is_traceable_function
42from langsmith.schemas import Dataset, DataType, Example, Run, TracerSession
43▶from langsmith.utils import LangSmithError
44from requests import HTTPError
45from typing_extensions import TypedDict
· · ·
44▶from requests import HTTPError
45from typing_extensions import TypedDict
46
· · ·
71
72
73▶class InputFormatError(Exception):
74 """Raised when the input format is invalid."""
75
· · ·
106 try:
107 import pandas as pd
108▶ except ImportError as e:
109 msg = (
110 "Pandas is required to convert the results to a dataframe."
· · ·
111 " to install pandas, run `pip install pandas`."
112 )
113▶ raise ImportError(msg) from e
114
115 indices = []
+ 60 more matches in this file