AI Agent Frameworks / Quiz
Datasets, Evaluators, Experiments
evaluate(app, data=dataset, evaluators=[...]) is the unit test of the LLM world, except the assert returns a score and the suite is a dataset.
- Difficulty
- Medium
- Format
- Quiz
- Points
- 150
- Estimate
- 10 min
// MISSION BRIEF
Your Mission
LangSmith evals have three parts: a dataset of examples, a target function to test, and evaluators that score each result. Every run of evaluate() becomes an experiment you can compare against the last one. This quiz covers the mechanics.
Scoring: equal weight per question.
// FIRST CONTACT
Battle teaser
A LangSmith dataset is:
- AA versioned collection of examples (inputs plus optional reference outputs) that experiments run against
- BA SQL database of user accounts
- CA fine-tuning corpus that retrains the model
- DA cache of previous model responses
Answers, scoring, hints, and the full battle stay sealed.
// SKILL TAGS
langsmithdatasetsevaluatorsexperimentsai-agents