├── .dockerignore ├── .env.example ├── .github ├── dependabot.yml └── workflows │ ├── audit.yml │ └── dependency-audit.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc ├── Dockerfile ├── LICENSE ├── README.md ├── audit-report.json ├── docker-compose.yml ├── eslint.config.js ├── graphics └── llm_calc.psd ├── index.html ├── package.json ├── public ├── llm_calc_icon.png └── vite.svg ├── src ├── App.css ├── App.tsx ├── assets │ └── react.svg ├── calculations.ts ├── components │ ├── ThemeToggle.css │ ├── ThemeToggle.tsx │ ├── Tooltip.css │ └── Tooltip.tsx ├── contexts │ └── ThemeContext.tsx ├── index.css ├── main.tsx ├── types.ts └── vite-env.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | PORT=8080 -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/.github/workflows/audit.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-audit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/.github/workflows/dependency-audit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/README.md -------------------------------------------------------------------------------- /audit-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/audit-report.json -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/eslint.config.js -------------------------------------------------------------------------------- /graphics/llm_calc.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/graphics/llm_calc.psd -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/package.json -------------------------------------------------------------------------------- /public/llm_calc_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/public/llm_calc_icon.png -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/public/vite.svg -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/src/assets/react.svg -------------------------------------------------------------------------------- /src/calculations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/src/calculations.ts -------------------------------------------------------------------------------- /src/components/ThemeToggle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/src/components/ThemeToggle.css -------------------------------------------------------------------------------- /src/components/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/src/components/ThemeToggle.tsx -------------------------------------------------------------------------------- /src/components/Tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/src/components/Tooltip.css -------------------------------------------------------------------------------- /src/components/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/src/components/Tooltip.tsx -------------------------------------------------------------------------------- /src/contexts/ThemeContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/src/contexts/ThemeContext.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexziskind1/llm-inference-calculator/HEAD/vite.config.ts --------------------------------------------------------------------------------