Presidentlin's picture
x
f54e377
raw
history blame
331 Bytes
import { Benchmark } from "./types";
import { xaiBenchmarks } from "./xai";
import { googleBenchmarks } from "./google";
// import other sources here as you add them
// import { openaiBenchmarks } from "./openai";
export const benchmarkData: Benchmark[] = [
...xaiBenchmarks,
...googleBenchmarks,
// ...openaiBenchmarks,
];