├── .gitignore ├── Dockerfile ├── README.md ├── api.py ├── components.json ├── eslint.config.js ├── index.html ├── package.json ├── parallel_eval ├── README.md ├── game.py ├── proctor.py ├── requirements.txt └── supernodes.json ├── public └── vite.svg ├── requirements.txt ├── results ├── popular_nodes.json ├── qwen3-30B-A3-results.json └── qwen3.json ├── src ├── App.tsx ├── assets │ └── react.svg ├── components │ ├── about-tab.tsx │ ├── force-directed-graph.tsx │ ├── game-component.tsx │ ├── play-tab.tsx │ ├── reasoning-trace.tsx │ ├── runs-list.tsx │ ├── sign-in-with-hf-button.tsx │ ├── ui │ │ ├── badge.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── command.tsx │ │ ├── dialog.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── popover.tsx │ │ ├── select.tsx │ │ ├── separator.tsx │ │ ├── tabs.tsx │ │ ├── tooltip.tsx │ │ └── virtualized-combobox.tsx │ └── viewer-tab.tsx ├── index.css ├── lib │ ├── constants.ts │ ├── inference.tsx │ └── utils.ts ├── main.tsx └── vite-env.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/README.md -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/api.py -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/components.json -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/package.json -------------------------------------------------------------------------------- /parallel_eval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/parallel_eval/README.md -------------------------------------------------------------------------------- /parallel_eval/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/parallel_eval/game.py -------------------------------------------------------------------------------- /parallel_eval/proctor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/parallel_eval/proctor.py -------------------------------------------------------------------------------- /parallel_eval/requirements.txt: -------------------------------------------------------------------------------- 1 | litellm>=1.10.0 2 | asyncio 3 | tqdm 4 | sqlite3-wrapper 5 | aiohttp -------------------------------------------------------------------------------- /parallel_eval/supernodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/parallel_eval/supernodes.json -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/public/vite.svg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/requirements.txt -------------------------------------------------------------------------------- /results/popular_nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/results/popular_nodes.json -------------------------------------------------------------------------------- /results/qwen3-30B-A3-results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/results/qwen3-30B-A3-results.json -------------------------------------------------------------------------------- /results/qwen3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/results/qwen3.json -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/components/about-tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/components/about-tab.tsx -------------------------------------------------------------------------------- /src/components/force-directed-graph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/components/force-directed-graph.tsx -------------------------------------------------------------------------------- /src/components/game-component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/components/game-component.tsx -------------------------------------------------------------------------------- /src/components/play-tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/components/play-tab.tsx -------------------------------------------------------------------------------- /src/components/reasoning-trace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/components/reasoning-trace.tsx -------------------------------------------------------------------------------- /src/components/runs-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/components/runs-list.tsx -------------------------------------------------------------------------------- /src/components/sign-in-with-hf-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/components/sign-in-with-hf-button.tsx -------------------------------------------------------------------------------- /src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/components/ui/card.tsx -------------------------------------------------------------------------------- /src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/components/ui/command.tsx -------------------------------------------------------------------------------- /src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/components/ui/select.tsx -------------------------------------------------------------------------------- /src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /src/components/ui/virtualized-combobox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/components/ui/virtualized-combobox.tsx -------------------------------------------------------------------------------- /src/components/viewer-tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/components/viewer-tab.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/index.css -------------------------------------------------------------------------------- /src/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/lib/constants.ts -------------------------------------------------------------------------------- /src/lib/inference.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/lib/inference.tsx -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/vite.config.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/wikirace-llms/HEAD/yarn.lock --------------------------------------------------------------------------------