├── .keep ├── README.md ├── backend ├── .env ├── .env.example ├── Dockerfile ├── app │ ├── __init__.py │ ├── agents.py │ ├── bet.py │ ├── cache.py │ ├── config.py │ ├── deps.py │ ├── firestore.py │ ├── main.py │ ├── models.py │ ├── odds.py │ ├── schemas.py │ └── ws.py └── requirements.txt ├── docker-compose.yml └── frontend ├── .env ├── .env.example ├── Dockerfile ├── app ├── dashboard │ ├── agents.tsx │ └── page.tsx ├── globals.css ├── layout.tsx └── page.tsx ├── package.json ├── postcss.config.js ├── public └── logos │ ├── claude.png │ ├── deepseek.png │ ├── gemini.png │ ├── gpt4o.png │ └── llama.png ├── tailwind.config.js └── tsconfig.json /.keep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/README.md -------------------------------------------------------------------------------- /backend/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/backend/.env -------------------------------------------------------------------------------- /backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/backend/.env.example -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/app/__init__.py: -------------------------------------------------------------------------------- 1 | # empty 2 | -------------------------------------------------------------------------------- /backend/app/agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/backend/app/agents.py -------------------------------------------------------------------------------- /backend/app/bet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/backend/app/bet.py -------------------------------------------------------------------------------- /backend/app/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/backend/app/cache.py -------------------------------------------------------------------------------- /backend/app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/backend/app/config.py -------------------------------------------------------------------------------- /backend/app/deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/backend/app/deps.py -------------------------------------------------------------------------------- /backend/app/firestore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/backend/app/firestore.py -------------------------------------------------------------------------------- /backend/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/backend/app/main.py -------------------------------------------------------------------------------- /backend/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/backend/app/models.py -------------------------------------------------------------------------------- /backend/app/odds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/backend/app/odds.py -------------------------------------------------------------------------------- /backend/app/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/backend/app/schemas.py -------------------------------------------------------------------------------- /backend/app/ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/backend/app/ws.py -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/backend/requirements.txt -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /frontend/.env: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_WS_URL=ws://localhost:8000/ws 2 | -------------------------------------------------------------------------------- /frontend/.env.example: -------------------------------------------------------------------------------- 1 | NEXT_PUBLIC_WS_URL=ws://localhost:8000/ws 2 | -------------------------------------------------------------------------------- /frontend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/frontend/Dockerfile -------------------------------------------------------------------------------- /frontend/app/dashboard/agents.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/frontend/app/dashboard/agents.tsx -------------------------------------------------------------------------------- /frontend/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/frontend/app/dashboard/page.tsx -------------------------------------------------------------------------------- /frontend/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/frontend/app/globals.css -------------------------------------------------------------------------------- /frontend/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/frontend/app/layout.tsx -------------------------------------------------------------------------------- /frontend/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/frontend/app/page.tsx -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/logos/claude.png: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /frontend/public/logos/deepseek.png: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /frontend/public/logos/gemini.png: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /frontend/public/logos/gpt4o.png: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /frontend/public/logos/llama.png: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/bet_swarm/HEAD/frontend/tsconfig.json --------------------------------------------------------------------------------