My place to experiment with latest tech & ideas.
- Model Router - routes AI interactions to the right model using evaluators like Typesafe AI's Jev.
- Custom AI Agent
- Extendable AI Widget
- CLIP x GPT Captioning
git clone git@github.com:jmisilo/lab-jakubmisilo.git
cd lab-jakubmisilo
corepack enable
pnpm installRequires Node.js 24+, pnpm 10, and Vercel CLI.
pnpm add -g vercelModel Router is linked at apps/model-router as a Git submodule.
To fetch its source after cloning:
git submodule update --init apps/model-routerIt maintains its own workspace and dependencies and is excluded from this repository's pnpm workspace.
Create local env files:
cp apps/api/.env.local.example apps/api/.env.local
cp apps/agent/.env.local.example apps/agent/.env.localFill the provider keys if you want to use real AI calls locally.
pnpm devThis starts:
- web: http://localhost:3000
- api: http://localhost:8080
- agent: TUI
Health check:
curl http://localhost:8080/healthvercel deploy --prod --project lab-jm-<project>