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