# Use Hanzo AI with Continue.dev — Hanzo AI > Configure Continue.dev VS Code / JetBrains extension to use Hanzo AI as your coding assistant. Add Hanzo as a custom OpenAI-compatible provider in your config. [Integrations](https://hanzo.ai/integrations)/Continue.dev 🔄Platforms & Editors # Use Hanzo AI with Continue.dev Configure Continue.dev VS Code / JetBrains extension to use Hanzo AI as your coding assistant. Add Hanzo as a custom OpenAI-compatible provider in your config. Base URL: `https://api.hanzo.ai/v1` API Key: Get yours at [hanzo.ai/signup](https://hanzo.ai/signup) · Fully OpenAI-compatible · 500+ models available 🔄 Created by [Continue.dev](https://continue.dev) License: Apache-2.0 · [View source on GitHub →](https://github.com/continuedev/continue) Hanzo AI is OpenAI-compatible, so existing Continue.dev code works with zero refactoring. We deeply appreciate the Continue.dev team for building and maintaining this open-source project. ## ~/.continue/config.json json ``` { "models": [ { "title": "Hanzo zen4-pro", "provider": "openai", "model": "zen4-pro", "apiKey": "your-hanzo-api-key", "apiBase": "https://api.hanzo.ai/v1" }, { "title": "Hanzo zen4-coder", "provider": "openai", "model": "zen4-coder", "apiKey": "your-hanzo-api-key", "apiBase": "https://api.hanzo.ai/v1" } ], "tabAutocompleteModel": { "title": "Hanzo Autocomplete", "provider": "openai", "model": "zen4-coder", "apiKey": "your-hanzo-api-key", "apiBase": "https://api.hanzo.ai/v1" } } ``` ## Embeddings config json ``` { "embeddingsProvider": { "provider": "openai", "model": "openai/text-embedding-3-large", "apiKey": "your-hanzo-api-key", "apiBase": "https://api.hanzo.ai/v1" } } ``` ## Install Continue bash ``` # VS Code code --install-extension Continue.continue # JetBrains: install from marketplace # Then edit ~/.continue/config.json ``` ## Test API bash ``` curl https://api.hanzo.ai/v1/chat/completions \ -H "Authorization: Bearer $HANZO_API_KEY" \ -d '{"model":"zen4-coder","messages":[{"role":"user","content":"Complete this: def hello():"}]}' ``` ## Ready to get started? Create a free account and get your API key. 100K API calls/month free forever. [Get API Key — Free](https://hanzo.ai/signup)[Browse Models](https://hanzo.ai/models) ## More integrations [OpenAI Python SDK](https://hanzo.ai/integrations/openai-sdk)[Anthropic SDK](https://hanzo.ai/integrations/anthropic-sdk)[LangChain](https://hanzo.ai/integrations/langchain)[LlamaIndex](https://hanzo.ai/integrations/llamaindex)[Vercel AI SDK](https://hanzo.ai/integrations/vercel-ai-sdk)[Hugging Face](https://hanzo.ai/integrations/huggingface)[AutoGen](https://hanzo.ai/integrations/autogen)[CrewAI](https://hanzo.ai/integrations/crewai)[DSPy](https://hanzo.ai/integrations/dspy)[Haystack](https://hanzo.ai/integrations/haystack)[Cursor](https://hanzo.ai/integrations/cursor)[GitHub Copilot](https://hanzo.ai/integrations/github-copilot)[Docker](https://hanzo.ai/integrations/docker)[Kubernetes](https://hanzo.ai/integrations/kubernetes)[Python](https://hanzo.ai/integrations/python)[TypeScript](https://hanzo.ai/integrations/typescript)[Go](https://hanzo.ai/integrations/go)[Rust](https://hanzo.ai/integrations/rust)