Hello World

Your first document

Welcome to the docs! You can start writing documents in /content/docs.

H1

hahah

Go to benchmarkthing.com

What is Next?

Code Block

run.ts
import { Bench } from "benchthing";
 
const bench = new Bench("super-glue");
 
await bench.run({
    benchmark: "super-glue",
    taskId: "1",
    models: yourLanguageModels 
});
 
const result = await bench.getResult("1");
run.py
from benchthing import Bench
 
bench = Bench("webarena")
 
bench.run(
    benchmark="webarena",
    task_id="1",
    agents=your_agents
)
 
result = bench.get_result("1")