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
  • RemoteGraph
⌘I

LangChain Assistant

Ask a question to get started

Enter to send•Shift+Enter new line

Menu

OverviewClientAsyncClientRun HelpersRun TreesEvaluationSchemasUtilitiesWrappersAnonymizerTestingExpect APIMiddlewarePytest PluginDeployment SDKRemoteGraph
Language
Theme
PythonlangsmithschemasExperimentResults
Class●Since v0.4

ExperimentResults

Results container for experiment data with stats and examples.

Breaking change in v0.4.32: The 'stats' field has been split into 'feedback_stats' and 'run_stats'.

Copy
ExperimentResults()

Bases

TypedDict

Constructors

constructor
__init__
NameType
feedback_statsdict
run_statsExperimentRunStats
examples_with_runsIterator[ExampleWithRuns]

Attributes

attribute
feedback_stats: dict

Feedback statistics for the experiment.

attribute
run_stats: ExperimentRunStats

Run statistics (latency, token count, etc.).

attribute
examples_with_runs: Iterator[ExampleWithRuns]
View source on GitHub