feat: add EvoLink provider config - #104
Open
EvoLinkAI wants to merge 1 commit into
Open
Conversation
Author
|
Validation evidence from local run:
|
EvoLinkAI
force-pushed
the
feat/evolink-provider
branch
from
June 23, 2026 10:49
91ee65c to
b85a6d8
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds EvoLink as a first-class OpenAI-compatible provider in OwnPilot's config-driven provider system.
packages/core/data/providers/evolink.jsonwithhttps://direct.evolink.ai/v1and a curated GPT-5 model setevolinkin the typed provider ID listValidation
pnpm install --frozen-lockfile✅node - <<'NODE' ...provider JSON sanity check ✅ (evolink provider config OK)pnpm --filter @ownpilot/core exec vitest run src/agent/providers/configs/index.test.ts✅ 1 file, 126 tests passed, no type errorspnpm --filter @ownpilot/core typecheck✅pnpm exec eslint packages/core/src/agent/providers/configs/index.ts packages/gateway/src/routes/providers.ts✅pnpm exec prettier --check packages/core/data/providers/evolink.json packages/core/src/agent/providers/configs/index.ts packages/gateway/src/routes/providers.ts✅ all matched files use Prettier stylepnpm --filter @ownpilot/core build✅pnpm --filter @ownpilot/gateway typecheck✅pnpm --filter @ownpilot/gateway exec vitest run src/routes/providers.test.ts✅ 1 file, 19 tests passed, no type errorspnpm --filter @ownpilot/gateway exec node --input-type=module ...✅evolink openai-compatible 4 models default=gpt-5.2EVOLINK_API_KEY✅HTTP 200, responseOKOpenAICompatibleProvider.fromProviderIdWithKey('evolink', ...)✅provider-path gpt-5.2-2025-12-11: OKNotes
EvoLink's language API is OpenAI-compatible for chat completions, so this uses the existing generic
OpenAICompatibleProviderrather than adding a new provider implementation.