├── .gitignore ├── README.md ├── bun.lockb ├── eslint.config.js ├── index.html ├── package.json ├── postcss.config.js ├── prettier.config.js ├── public ├── apple-touch-icon.png ├── codenames-icon-1024-transparent.png ├── codenames-icon-1024.png ├── codenames-screenshot.png ├── favicon-96x96.png ├── favicon.ico ├── favicon.svg ├── og-codenames-banner.png ├── site.webmanifest ├── web-app-manifest-192x192.png └── web-app-manifest-512x512.png ├── src ├── App.tsx ├── assets │ ├── assassin-animated.gif │ ├── card-front-edited.png │ ├── card-front.png │ ├── logos │ │ ├── anthropic.svg │ │ ├── deepseek.svg │ │ ├── gemini.svg │ │ ├── meta.svg │ │ ├── openai.svg │ │ └── xai.svg │ └── wordlist-eng.txt ├── components │ ├── Card.tsx │ ├── Chat.tsx │ ├── ModelPill.tsx │ └── Scoreboard.tsx ├── index.css ├── main.tsx ├── prompts │ ├── baseSysPrompt.ts │ ├── opSysPrompt.ts │ ├── spySysPrompt.ts │ └── userPrompt.ts ├── utils │ ├── colors.tsx │ ├── game.ts │ ├── llm.ts │ └── models.ts └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/README.md -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/bun.lockb -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/postcss.config.js -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/prettier.config.js -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/codenames-icon-1024-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/public/codenames-icon-1024-transparent.png -------------------------------------------------------------------------------- /public/codenames-icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/public/codenames-icon-1024.png -------------------------------------------------------------------------------- /public/codenames-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/public/codenames-screenshot.png -------------------------------------------------------------------------------- /public/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/public/favicon-96x96.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/og-codenames-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/public/og-codenames-banner.png -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/public/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /public/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/public/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/assets/assassin-animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/assets/assassin-animated.gif -------------------------------------------------------------------------------- /src/assets/card-front-edited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/assets/card-front-edited.png -------------------------------------------------------------------------------- /src/assets/card-front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/assets/card-front.png -------------------------------------------------------------------------------- /src/assets/logos/anthropic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/assets/logos/anthropic.svg -------------------------------------------------------------------------------- /src/assets/logos/deepseek.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/assets/logos/deepseek.svg -------------------------------------------------------------------------------- /src/assets/logos/gemini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/assets/logos/gemini.svg -------------------------------------------------------------------------------- /src/assets/logos/meta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/assets/logos/meta.svg -------------------------------------------------------------------------------- /src/assets/logos/openai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/assets/logos/openai.svg -------------------------------------------------------------------------------- /src/assets/logos/xai.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/assets/logos/xai.svg -------------------------------------------------------------------------------- /src/assets/wordlist-eng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/assets/wordlist-eng.txt -------------------------------------------------------------------------------- /src/components/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/components/Card.tsx -------------------------------------------------------------------------------- /src/components/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/components/Chat.tsx -------------------------------------------------------------------------------- /src/components/ModelPill.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/components/ModelPill.tsx -------------------------------------------------------------------------------- /src/components/Scoreboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/components/Scoreboard.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/prompts/baseSysPrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/prompts/baseSysPrompt.ts -------------------------------------------------------------------------------- /src/prompts/opSysPrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/prompts/opSysPrompt.ts -------------------------------------------------------------------------------- /src/prompts/spySysPrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/prompts/spySysPrompt.ts -------------------------------------------------------------------------------- /src/prompts/userPrompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/prompts/userPrompt.ts -------------------------------------------------------------------------------- /src/utils/colors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/utils/colors.tsx -------------------------------------------------------------------------------- /src/utils/game.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/utils/game.ts -------------------------------------------------------------------------------- /src/utils/llm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/utils/llm.ts -------------------------------------------------------------------------------- /src/utils/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/src/utils/models.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ilya-aby/llm-codenames/HEAD/vite.config.ts --------------------------------------------------------------------------------