[PR #200] [MERGED] datasets and evals guides #286

Closed
opened 2026-02-21 17:17:44 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langsmith-docs/pull/200
Author: @agola11
Created: 4/30/2024
Status: Merged
Merged: 5/2/2024
Merged by: @agola11

Base: mainHead: ankush/evaluation-how-to-cont


📝 Commits (10+)

📊 Changes

57 files changed (+1838 additions, -231 deletions)

View changed files

.vscode/settings.json (+4 -0)
📝 docs/evaluation/faq/custom-evaluators.mdx (+1 -1)
📝 package.json (+1 -0)
📝 src/components/InstructionsWithCode.js (+18 -0)
versioned_docs/version-2.0/how_to_guides/datasets/manage_datasets_in_application.mdx (+68 -0)
versioned_docs/version-2.0/how_to_guides/datasets/manage_datasets_programmatically.mdx (+346 -0)
versioned_docs/version-2.0/how_to_guides/datasets/share_dataset.mdx (+28 -0)
versioned_docs/version-2.0/how_to_guides/datasets/version_datasets.mdx (+49 -0)
versioned_docs/version-2.0/how_to_guides/evaluation/compare_experiment_results.mdx (+64 -0)
versioned_docs/version-2.0/how_to_guides/evaluation/evaluate_llm_application.mdx (+499 -0)
📝 versioned_docs/version-2.0/how_to_guides/evaluation/evaluate_on_intermediate_steps.mdx (+277 -138)
versioned_docs/version-2.0/how_to_guides/evaluation/run_evaluation_from_prompt_playground.mdx (+52 -0)
versioned_docs/version-2.0/how_to_guides/evaluation/use_langchain_off_the_shelf_evaluators.mdx (+250 -0)
📝 versioned_docs/version-2.0/how_to_guides/index.md (+60 -37)
versioned_docs/version-2.0/how_to_guides/static/add_evaluator.png (+0 -0)
versioned_docs/version-2.0/how_to_guides/static/add_manual_example.png (+0 -0)
versioned_docs/version-2.0/how_to_guides/static/add_to_dataset.png (+0 -0)
versioned_docs/version-2.0/how_to_guides/static/create_dataset_csv.png (+0 -0)
versioned_docs/version-2.0/how_to_guides/static/create_evaluator.png (+0 -0)
versioned_docs/version-2.0/how_to_guides/static/enter_dataset_details.png (+0 -0)

...and 37 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/langsmith-docs/pull/200 **Author:** [@agola11](https://github.com/agola11) **Created:** 4/30/2024 **Status:** ✅ Merged **Merged:** 5/2/2024 **Merged by:** [@agola11](https://github.com/agola11) **Base:** `main` ← **Head:** `ankush/evaluation-how-to-cont` --- ### 📝 Commits (10+) - [`9365ba3`](https://github.com/langchain-ai/langsmith-docs/commit/9365ba3497f5fff414552314453ae9103800f46e) dataset guides and eval playground guide - [`7ee8a14`](https://github.com/langchain-ai/langsmith-docs/commit/7ee8a14a03ff39e773b018a32ca562156da61838) update datasets guide - [`f5ed070`](https://github.com/langchain-ai/langsmith-docs/commit/f5ed070b5f4a2085700a1e2fe42e3c01e4f01389) edit index - [`cb6c4b8`](https://github.com/langchain-ai/langsmith-docs/commit/cb6c4b8f0a24c41ea4338dd33337cb6a71857f58) more eval how-to guides - [`222efd6`](https://github.com/langchain-ai/langsmith-docs/commit/222efd6021bd880f4b6857ea6377886d0d571f75) Add first step TS - [`df5322b`](https://github.com/langchain-ai/langsmith-docs/commit/df5322bb17bdd9bc42685bf03cce7ec56bde746a) Avoid VSCode removing whitespace - [`e12b9d0`](https://github.com/langchain-ai/langsmith-docs/commit/e12b9d03cb371ea057cccb9f4e2b7623288c1dc3) Add tagged template literals for readability - [`77a9552`](https://github.com/langchain-ai/langsmith-docs/commit/77a9552fea15942c70a17a9d4b4fab660221d5ff) Add TS code blocks - [`2bb7101`](https://github.com/langchain-ai/langsmith-docs/commit/2bb71018631e9c6cfb28533568b0c360a362db98) Fix dev dependency - [`8e8ba03`](https://github.com/langchain-ai/langsmith-docs/commit/8e8ba03ba370bd2783708909d9dd6702d5176fd3) Fix broken link ### 📊 Changes **57 files changed** (+1838 additions, -231 deletions) <details> <summary>View changed files</summary> ➕ `.vscode/settings.json` (+4 -0) 📝 `docs/evaluation/faq/custom-evaluators.mdx` (+1 -1) 📝 `package.json` (+1 -0) 📝 `src/components/InstructionsWithCode.js` (+18 -0) ➕ `versioned_docs/version-2.0/how_to_guides/datasets/manage_datasets_in_application.mdx` (+68 -0) ➕ `versioned_docs/version-2.0/how_to_guides/datasets/manage_datasets_programmatically.mdx` (+346 -0) ➕ `versioned_docs/version-2.0/how_to_guides/datasets/share_dataset.mdx` (+28 -0) ➕ `versioned_docs/version-2.0/how_to_guides/datasets/version_datasets.mdx` (+49 -0) ➕ `versioned_docs/version-2.0/how_to_guides/evaluation/compare_experiment_results.mdx` (+64 -0) ➕ `versioned_docs/version-2.0/how_to_guides/evaluation/evaluate_llm_application.mdx` (+499 -0) 📝 `versioned_docs/version-2.0/how_to_guides/evaluation/evaluate_on_intermediate_steps.mdx` (+277 -138) ➕ `versioned_docs/version-2.0/how_to_guides/evaluation/run_evaluation_from_prompt_playground.mdx` (+52 -0) ➕ `versioned_docs/version-2.0/how_to_guides/evaluation/use_langchain_off_the_shelf_evaluators.mdx` (+250 -0) 📝 `versioned_docs/version-2.0/how_to_guides/index.md` (+60 -37) ➕ `versioned_docs/version-2.0/how_to_guides/static/add_evaluator.png` (+0 -0) ➕ `versioned_docs/version-2.0/how_to_guides/static/add_manual_example.png` (+0 -0) ➕ `versioned_docs/version-2.0/how_to_guides/static/add_to_dataset.png` (+0 -0) ➕ `versioned_docs/version-2.0/how_to_guides/static/create_dataset_csv.png` (+0 -0) ➕ `versioned_docs/version-2.0/how_to_guides/static/create_evaluator.png` (+0 -0) ➕ `versioned_docs/version-2.0/how_to_guides/static/enter_dataset_details.png` (+0 -0) _...and 37 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-21 17:17:44 -05:00
yindo closed this issue 2026-02-21 17:17:44 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langsmith-docs#286