Skip to content

Commit

Permalink
fix(docs): typos in code snippet
Browse files Browse the repository at this point in the history
  • Loading branch information
FilippoPaganelli committed Jan 17, 2025
1 parent 808d2aa commit e16a331
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/evaluation/how_to_guides/langchain_runnable.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ To evaluate our chain we can pass it directly to the `evaluate()` / `aevaluate()
return actual == expected
results = await aevaluate(
results = await evaluate(
chain,
data=dataset,
evaluators=[correct],
Expand All @@ -123,7 +123,7 @@ To evaluate our chain we can pass it directly to the `evaluate()` / `aevaluate()
await evaluate(chain, {
data: dataset.name,
evaluators: [correct],
experimentPrefix: "gpt-4o, ba
experimentPrefix: "gpt-4o, baseline",
});
`,

Expand Down

0 comments on commit e16a331

Please sign in to comment.