What it is
Continue.dev is an open-source tool that lets you chat with Symphony models (LLMs) directly inside Visual Studio Code or JetBrains IDEs (IntelliJ IDEA, PyCharm, WebStorm, etc.). This way you use Symphony’s agents and models without leaving your code editor.Prerequisites
- VS Code or a JetBrains IDE installed.
- Active account in AI Symphony with model usage permission.
- A Symphony API key (see Step 2).
Step 1 — Install Continue.dev
- VS Code
- JetBrains
- Open Visual Studio Code.
- In the left sidebar, click Extensions (blocks icon or Ctrl + Shift + X).
- Search for: Continue - open-source AI code assistant (developer: Continue.dev).
- Click Install.
Step 2 — Configure the LLMs
In the Continue panel, click “Local Config”. Then click the gear next to Local Config to open the configuration file. Replace the content ofconfig.yaml with the template below, paying attention to the models you have authorized and available in Symphony — if you use a model your key doesn’t have access to, the response will return an error.
Update (after 08/04/2026): it is mandatory to add, for each model,
requestOptions → headers → X-Enterprise-Id for the extension to work.config.yaml
How to get your API key in AI Symphony
Open AI Symphony
Go to symphony.fcamara.com.br.
How to find out which models you have available
In the browser console (with Symphony open and logged in), run:model field of config.yaml.
Step 3 — Use Continue.dev
With everything configured, you can:- Ask questions about your code.
- Ask to complete a function.
- Explain complex sections.
- Refactor or generate tests automatically.
Test the route with your key (cURL)
To validate the connection (e.g., in Postman), use:For full API details (body fields, headers, errors, and Python examples), see Connect to Symphony via API.
Best practices
- Keep the extension at the compatible version (1.3.33) to avoid incompatibilities.
- Use in
config.yamlonly models your key has permission to access. - Never version your
apiKeyin repositories — treat it as a secret. - Check the correct
X-Enterprise-Idfor your company.
Frequently asked questions
The extension doesn't respond / gives a model error.
The extension doesn't respond / gives a model error.
Check if the
model exists for your key (run the model listing snippet) and if the X-Enterprise-Id header is present in each model.Can I use custom Symphony agents?
Can I use custom Symphony agents?
Yes. Use the
model corresponding to the agent (e.g., fc-code-assistant) in config.yaml.Does it work in JetBrains and VS Code?
Does it work in JetBrains and VS Code?
Yes, the
config.yaml configuration process is the same.Known limitations
- Compatible with version 1.3.33 of Continue.dev.
- After 08/04/2026, the
X-Enterprise-Idheader is required in each model ofconfig.yaml. - The availability of each model depends on your account/company permissions in Symphony.
More information
- Continue documentation: Continue Docs.
- Extension repository: Continue on GitHub.