File size: 331 Bytes
f54e377 |
1 2 3 4 5 6 7 8 9 10 11 12 |
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,
];
|