Onboarding: add vLLM provider support

This commit is contained in:
gejifeng
2026-02-09 10:20:45 +00:00
committed by Peter Steinberger
parent 54bf5d0f41
commit e73d881c50
19 changed files with 555 additions and 3 deletions

View File

@@ -134,4 +134,14 @@ describe("buildAuthChoiceOptions", () => {
expect(options.some((opt) => opt.value === "xai-api-key")).toBe(true);
});
it("includes vLLM auth choice", () => {
const store: AuthProfileStore = { version: 1, profiles: {} };
const options = buildAuthChoiceOptions({
store,
includeSkip: false,
});
expect(options.some((opt) => opt.value === "vllm")).toBe(true);
});
});