LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
  • Overview
  • Client
  • AsyncClient
  • Run Helpers
  • Run Trees
  • Evaluation
  • Schemas
  • Utilities
  • Wrappers
  • Anonymizer
  • Testing
  • Expect API
  • Middleware
  • Pytest Plugin
  • Deployment SDK
⌘I

LangChain Assistant

Ask a question to get started

Enter to send•Shift+Enter new line

Menu

OverviewClientAsyncClientRun HelpersRun TreesEvaluationSchemasUtilitiesWrappersAnonymizerTestingExpect APIMiddlewarePytest PluginDeployment SDK
Language
Theme
Pythonlangsmithevaluation_runnerExperimentResults
Class●Since v0.1

ExperimentResults

Copy
ExperimentResults(
  self,
  experiment_manager: _ExperimentManager,
  blocking: bool = True
)

Constructors

Attributes

Methods

View source on GitHub
constructor
__init__
NameType
experiment_manager_ExperimentManager
blockingbool
attribute
experiment_name: str
attribute
experiment_id: uuid.UUID

The ID of the experiment.

attribute
url: Optional[str]

The URL of the experiment in the LangSmith UI.

attribute
comparison_url: Optional[str]

The URL to the comparison view for this experiment.

method
get_dataset_id

Get the ID of the dataset associated with this experiment.

method
to_pandas
method
wait

Wait for the evaluation runner to complete.

This method blocks the current thread until the evaluation runner has finished its execution.

Represents the results of an evaluate() call.

This class provides an iterator interface to iterate over the experiment results as they become available. It also provides methods to access the experiment name, the number of results, and to wait for the results to be processed.