├── .github ├── ISSUE_TEMPLATE │ ├── benchmark_submission.yml │ └── bug_report.md └── workflows │ └── csvprep.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LLM-Provider-comparison.csv ├── README.md ├── benchmarks └── Meta-Llama-3.1-8B-Instruct │ ├── A10G │ └── 20-08-2024.json │ ├── H100 │ └── 14-08-2024.json │ └── L4 │ └── 13-06-2024.json ├── csv-prep.py ├── frontend ├── .gitignore ├── README.md ├── components.json ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── compass.svg │ └── vite.svg ├── src │ ├── App.css │ ├── App.tsx │ ├── ThemeContext.tsx │ ├── assets │ │ ├── compass.svg │ │ ├── day-sunny.svg │ │ ├── git.svg │ │ ├── graphs.svg │ │ ├── moon.svg │ │ ├── react.svg │ │ └── x.svg │ ├── components │ │ ├── BarGraph.tsx │ │ ├── Nav.tsx │ │ └── ui │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ └── chart.tsx │ ├── constants │ │ └── llmCompare.json │ ├── index.css │ ├── lib │ │ └── utils.ts │ ├── main.tsx │ ├── pages │ │ ├── LLMPriceCompass.tsx │ │ └── LLMProviderComparison.tsx │ └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json ├── vercel.json └── vite.config.ts ├── gpu-benchmarks.csv ├── gpu-benchmarks.json └── managed-providers.json /.github/ISSUE_TEMPLATE/benchmark_submission.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/.github/ISSUE_TEMPLATE/benchmark_submission.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/csvprep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/.github/workflows/csvprep.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/LICENSE -------------------------------------------------------------------------------- /LLM-Provider-comparison.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/LLM-Provider-comparison.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/Meta-Llama-3.1-8B-Instruct/A10G/20-08-2024.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/benchmarks/Meta-Llama-3.1-8B-Instruct/A10G/20-08-2024.json -------------------------------------------------------------------------------- /benchmarks/Meta-Llama-3.1-8B-Instruct/H100/14-08-2024.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/benchmarks/Meta-Llama-3.1-8B-Instruct/H100/14-08-2024.json -------------------------------------------------------------------------------- /benchmarks/Meta-Llama-3.1-8B-Instruct/L4/13-06-2024.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/benchmarks/Meta-Llama-3.1-8B-Instruct/L4/13-06-2024.json -------------------------------------------------------------------------------- /csv-prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/csv-prep.py -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/components.json -------------------------------------------------------------------------------- /frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/eslint.config.js -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/public/compass.svg -------------------------------------------------------------------------------- /frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/public/vite.svg -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/src/App.tsx -------------------------------------------------------------------------------- /frontend/src/ThemeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/src/ThemeContext.tsx -------------------------------------------------------------------------------- /frontend/src/assets/compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/src/assets/compass.svg -------------------------------------------------------------------------------- /frontend/src/assets/day-sunny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/src/assets/day-sunny.svg -------------------------------------------------------------------------------- /frontend/src/assets/git.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/src/assets/git.svg -------------------------------------------------------------------------------- /frontend/src/assets/graphs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/src/assets/graphs.svg -------------------------------------------------------------------------------- /frontend/src/assets/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/src/assets/moon.svg -------------------------------------------------------------------------------- /frontend/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/src/assets/react.svg -------------------------------------------------------------------------------- /frontend/src/assets/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/src/assets/x.svg -------------------------------------------------------------------------------- /frontend/src/components/BarGraph.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/src/components/BarGraph.tsx -------------------------------------------------------------------------------- /frontend/src/components/Nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/src/components/Nav.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/src/components/ui/button.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/src/components/ui/card.tsx -------------------------------------------------------------------------------- /frontend/src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /frontend/src/constants/llmCompare.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/src/constants/llmCompare.json -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/src/lib/utils.ts -------------------------------------------------------------------------------- /frontend/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/src/main.tsx -------------------------------------------------------------------------------- /frontend/src/pages/LLMPriceCompass.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/src/pages/LLMPriceCompass.tsx -------------------------------------------------------------------------------- /frontend/src/pages/LLMProviderComparison.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/src/pages/LLMProviderComparison.tsx -------------------------------------------------------------------------------- /frontend/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /frontend/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/tsconfig.app.json -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /frontend/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/tsconfig.node.json -------------------------------------------------------------------------------- /frontend/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/vercel.json -------------------------------------------------------------------------------- /frontend/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/frontend/vite.config.ts -------------------------------------------------------------------------------- /gpu-benchmarks.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/gpu-benchmarks.csv -------------------------------------------------------------------------------- /gpu-benchmarks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/gpu-benchmarks.json -------------------------------------------------------------------------------- /managed-providers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arc53/llm-price-compass/HEAD/managed-providers.json --------------------------------------------------------------------------------