| 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, | |
| ]; | |