This project uses Continue for AI-assisted development.
When you open this project in VS Code, you should see a prompt to install the recommended extensions. If not:
- Open VS Code Command Palette (
Cmd/Ctrl + Shift + P
) - Type "Show Recommended Extensions"
- Install "Continue" extension
After installing the Continue extension:
-
Copy the template config:
cp .continue/config.template.json .continue/config.json
-
Add your API key in
.continue/config.json
:{ "models": [ { "title": "GPT-4o", "provider": "openai", "model": "gpt-4o", "apiKey": "YOUR_API_KEY_HERE" } ] ... }