Skip to content

PyCharm Configuration

Configure Any API in PyCharm to use AI coding features.

Step 1: Install AI Assistant Plugin

  1. Open PyCharm and go to Settings (Ctrl+Alt+S / Mac: Cmd+,)
  2. Go to Plugins
  3. Search for "Continue" in the Marketplace tab
  4. Click Install and restart PyCharm

Method 2: Codeium Plugin

  1. Open Settings > Plugins
  2. Search for "Codeium"
  3. Install and restart

Step 2: Configure API

Continue Configuration

  1. Click the Continue icon in the sidebar to open the panel

  2. Click the gear icon to open settings

  3. Add an OpenAI Compatible model

  4. Fill in:

    SettingValue
    API Basehttps://anyapi.pro
    API KeyYour API key
    ModelEnter the model name (e.g., claude-sonnet-4-7)

Manual Config File

Edit ~/.continue/config.json:

json
{
  "models": [
    {
      "title": "Claude",
      "provider": "openai",
      "model": "claude-sonnet-4-7",
      "apiBase": "https://anyapi.pro",
      "apiKey": "your_api_key"
    }
  ]
}

Step 3: Start Using

FeatureShortcutDescription
Open Chat PanelClick Continue icon in sidebarOpen AI conversation
Inline EditSelect code, then Ctrl+I / Mac Cmd+IModify selected code
Code CompletionTabAccept auto-completion suggestions

API PLAT