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