├── .gitignore ├── .python-version ├── CLAUDE.md ├── README.md ├── backend ├── __init__.py ├── config.py ├── council.py ├── main.py ├── openrouter.py └── storage.py ├── frontend ├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── public │ └── vite.svg ├── src │ ├── App.css │ ├── App.jsx │ ├── api.js │ ├── assets │ │ └── react.svg │ ├── components │ │ ├── ChatInterface.css │ │ ├── ChatInterface.jsx │ │ ├── Sidebar.css │ │ ├── Sidebar.jsx │ │ ├── Stage1.css │ │ ├── Stage1.jsx │ │ ├── Stage2.css │ │ ├── Stage2.jsx │ │ ├── Stage3.css │ │ └── Stage3.jsx │ ├── index.css │ └── main.jsx └── vite.config.js ├── header.jpg ├── main.py ├── pyproject.toml ├── start.sh └── uv.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/README.md -------------------------------------------------------------------------------- /backend/__init__.py: -------------------------------------------------------------------------------- 1 | """LLM Council backend package.""" 2 | -------------------------------------------------------------------------------- /backend/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/backend/config.py -------------------------------------------------------------------------------- /backend/council.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/backend/council.py -------------------------------------------------------------------------------- /backend/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/backend/main.py -------------------------------------------------------------------------------- /backend/openrouter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/backend/openrouter.py -------------------------------------------------------------------------------- /backend/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/backend/storage.py -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/.gitignore -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/eslint.config.js -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/public/vite.svg -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/src/App.jsx -------------------------------------------------------------------------------- /frontend/src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/src/api.js -------------------------------------------------------------------------------- /frontend/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/src/assets/react.svg -------------------------------------------------------------------------------- /frontend/src/components/ChatInterface.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/src/components/ChatInterface.css -------------------------------------------------------------------------------- /frontend/src/components/ChatInterface.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/src/components/ChatInterface.jsx -------------------------------------------------------------------------------- /frontend/src/components/Sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/src/components/Sidebar.css -------------------------------------------------------------------------------- /frontend/src/components/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/src/components/Sidebar.jsx -------------------------------------------------------------------------------- /frontend/src/components/Stage1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/src/components/Stage1.css -------------------------------------------------------------------------------- /frontend/src/components/Stage1.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/src/components/Stage1.jsx -------------------------------------------------------------------------------- /frontend/src/components/Stage2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/src/components/Stage2.css -------------------------------------------------------------------------------- /frontend/src/components/Stage2.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/src/components/Stage2.jsx -------------------------------------------------------------------------------- /frontend/src/components/Stage3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/src/components/Stage3.css -------------------------------------------------------------------------------- /frontend/src/components/Stage3.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/src/components/Stage3.jsx -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/src/main.jsx -------------------------------------------------------------------------------- /frontend/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/frontend/vite.config.js -------------------------------------------------------------------------------- /header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/header.jpg -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/main.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/pyproject.toml -------------------------------------------------------------------------------- /start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/start.sh -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/llm-council/HEAD/uv.lock --------------------------------------------------------------------------------