File size: 494 Bytes
829c0ca
 
 
5a1ab27
58de9fb
713e157
90ec376
3999c2c
829c0ca
 
 
 
58de9fb
80fc9d2
 
 
829c0ca
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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,
];