docs: add EvoLink custom endpoint example#3
Conversation
There was a problem hiding this comment.
Code Review
This pull request adds EvoLink as an OpenAI-compatible custom endpoint provider in the integrations documentation, including a configuration example. The feedback suggests replacing the non-existent model gpt-5.2 in the example with a placeholder like your-model-id to avoid confusion.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
|
|
||
| ```yaml | ||
| model: | ||
| default: gpt-5.2 |
There was a problem hiding this comment.
Using gpt-5.2 as the default model in the example is misleading because it is a non-existent model. It is better to use a placeholder like your-model-id to align with the instruction below to use a model ID returned by the /v1/models endpoint.
| default: gpt-5.2 | |
| default: your-model-id |
Summary
config.yamlsnippet usinghttps://direct.evolink.ai/v1./v1/modelscatalog for model ids.Validation
git diff --checkGET https://direct.evolink.ai/v1/modelsreturns HTTP 200 with an EvoLink API key.POST https://direct.evolink.ai/v1/chat/completionswithmodel=gpt-5.2returns HTTP 200.