We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
running 10+ evals on different browsers in parallel locally can become computationally challenging.
Braintrust offers a concurrency semaphor: https://www.braintrust.dev/docs/guides/evals/run
import { Factuality, Levenshtein } from "autoevals"; import { Eval } from "braintrust"; Eval("Say Hi Bot", { data: () => Array.from({ length: 100 }, (_, i) => ({ input: `${i}`, expected: `${i + 1}`, })), task: (input) => { return input + 1; }, scores: [Factuality, Levenshtein], maxConcurrency: 5, // Run 5 tests concurrently });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
running 10+ evals on different browsers in parallel locally can become computationally challenging.
Braintrust offers a concurrency semaphor:
https://www.braintrust.dev/docs/guides/evals/run
The text was updated successfully, but these errors were encountered: