From 7dbd65c4ae85415c964f19002933f7160826499d Mon Sep 17 00:00:00 2001 From: vowelparrot <130414180+vowelparrot@users.noreply.github.com> Date: Wed, 10 May 2023 14:28:17 -0700 Subject: [PATCH] Newline --- examples/src/client/tracing_datasets.ts | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/examples/src/client/tracing_datasets.ts b/examples/src/client/tracing_datasets.ts index a3bedbe000fa..4b1d92e82811 100644 --- a/examples/src/client/tracing_datasets.ts +++ b/examples/src/client/tracing_datasets.ts @@ -5,11 +5,16 @@ import { SerpAPI } from "langchain/tools"; import { Calculator } from "langchain/tools/calculator"; import { initializeAgentExecutorWithOptions } from "langchain/agents"; -// Developing applications with language models can be uniquely challenging. To manage this complexity and ensure reliable performance, LangChain provides tracing and evaluation functionality. This notebook demonstrates how to run Chains, which are language model functions, as well as Chat models, and LLMs on previously captured datasets or traces. Some common use cases for this approach include: - -// - Running an evaluation chain to grade previous runs. -// - Comparing different chains, LLMs, and agents on traced datasets. -// - Executing a stochastic chain multiple times over a dataset to generate metrics before deployment. +// LangChain wants to make developing and deploying safe, high-quality +// language model applications as easy as possible. +// To manage the complexity and challenges of working with LLMs, +// LangChain provides tracing and evaluation functionality. +// This notebook demonstrates how to run Chains, +// which are language model functions on traced datasets. +// Some common use cases for this approach include: +// - Running an evaluation chain to grade previous runs. +// - Comparing different chains, LLMs, and agents on traced datasets. +// - Executing a stochastic chain multiple times over a dataset to generate metrics before deployment. // Please note that this example assumes you have LangChain+ tracing running in the background. // It is configured to work only with the V2 endpoints.