File size: 358 Bytes
829c0ca 5a1ab27 58de9fb 829c0ca 58de9fb 829c0ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import { Benchmark } from "./types";
import { xaiBenchmarks } from "./xai";
import { googleBenchmarks } from "./google";
import { anthropicBenchmarks } from "./anthropic";
import { openaiBenchmarks } from "./openai";
export const benchmarkData: Benchmark[] = [
...xaiBenchmarks,
...googleBenchmarks,
...anthropicBenchmarks,
...openaiBenchmarks,
];
|