<img src="https://github.com/deepseek-ai/awesome-deepseek-integration/assets/59196087/e4d082de-6f64-44b9-beaa-0de55d70cfab" width="64" height="auto" /> # [Continue](https://continue.dev/) An open-source autopilot in your IDE. Continue will generate, refactor, and explain entire sections of code with LLMs. ## UI  ## Integrate with DeepSeek API ### Tab Completion config.json ```json { "completionOptions": { "BaseCompletionOptions": { "temperature": 0.0, "maxTokens": 256 } }, "models": [ { "title": "DeepSeek", "model": "deepseek-chat", "contextLength": 128000, "apiKey": "REDACTED", "provider": "openai", "apiBase": "https://api.deepseek.com/beta" } ], "tabAutocompleteModel": { "title": "DeepSeek", "model": "deepseek-chat", "apiKey": "REDACTED", "provider": "openai", "apiBase": "https://api.deepseek.com/beta" }, ... ``` 