惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

B
Blog
Microsoft Security Blog
Microsoft Security Blog
Jina AI
Jina AI
博客园 - 叶小钗
J
Java Code Geeks
博客园 - 聂微东
博客园 - 司徒正美
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
美团技术团队
WordPress大学
WordPress大学
M
MIT News - Artificial intelligence
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
GbyAI
GbyAI
罗磊的独立博客
T
The Blog of Author Tim Ferriss
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
The Cloudflare Blog
Stack Overflow Blog
Stack Overflow Blog
N
Netflix TechBlog - Medium
小众软件
小众软件

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(ollama): preserve configured API during discovery (#9...
zhangguiping · 2026-06-17 · via Recent Commits to openclaw:main

@@ -467,6 +467,68 @@ describe("ollama plugin", () => {

467467

}

468468

});

469469470+

it("preserves explicit api for configured dynamic Ollama models", async () => {

471+

const provider = registerProvider();

472+

const previous = process.env.OLLAMA_API_KEY;

473+

process.env.OLLAMA_API_KEY = "ollama-live";

474+

buildOllamaProviderMock.mockResolvedValueOnce({

475+

baseUrl: "https://ollama.example.com",

476+

api: "ollama",

477+

models: [

478+

{

479+

id: "qwen3-coder:cloud",

480+

name: "qwen3-coder:cloud",

481+

reasoning: false,

482+

input: ["text"],

483+

cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },

484+

contextWindow: 8192,

485+

maxTokens: 2048,

486+

},

487+

],

488+

});

489+490+

try {

491+

const config = {

492+

models: {

493+

providers: {

494+

ollama: {

495+

baseUrl: "https://ollama.example.com/v1",

496+

api: "openai-completions",

497+

models: [],

498+

},

499+

},

500+

},

501+

};

502+503+

await provider.prepareDynamicModel?.({

504+

config,

505+

provider: "ollama",

506+

modelId: "qwen3-coder:cloud",

507+

modelRegistry: { find: vi.fn(() => null) },

508+

} as never);

509+510+

const resolved = provider.resolveDynamicModel?.({

511+

config,

512+

provider: "ollama",

513+

modelId: "qwen3-coder:cloud",

514+

modelRegistry: { find: vi.fn(() => null) },

515+

} as never);

516+

expect(resolved?.provider).toBe("ollama");

517+

expect(resolved?.id).toBe("qwen3-coder:cloud");

518+

expect(resolved?.api).toBe("openai-completions");

519+

expect(resolved?.baseUrl).toBe("https://ollama.example.com/v1");

520+

expect(buildOllamaProviderMock).toHaveBeenCalledWith("https://ollama.example.com/v1", {

521+

quiet: true,

522+

});

523+

} finally {

524+

if (previous === undefined) {

525+

delete process.env.OLLAMA_API_KEY;

526+

} else {

527+

process.env.OLLAMA_API_KEY = previous;

528+

}

529+

}

530+

});

531+470532

it("resolves requested Ollama cloud models that are omitted from tags but confirmed by show", async () => {

471533

const provider = registerProvider();

472534

const previous = process.env.OLLAMA_API_KEY;

@@ -1335,7 +1397,7 @@ describe("ollama plugin", () => {

1335139713361398

provider.createStreamFn?.({

13371399

config: {},

1338-

model: { id: "kimi-k2.5:cloud" },

1400+

model: { api: "ollama", id: "kimi-k2.5:cloud" },

13391401

provider: "ollama-cloud",

13401402

} as never);

13411403

expect(requireConfiguredStreamParams().providerBaseUrl).toBe("https://ollama.com");

@@ -1434,6 +1496,55 @@ describe("ollama plugin", () => {

14341496

expect(nativePolicy?.validateAnthropicTurns).toBe(true);

14351497

});

143614981499+

it.each([

1500+

{

1501+

providerId: "ollama",

1502+

register: registerProvider,

1503+

nativeBaseUrl: "http://127.0.0.1:11434",

1504+

},

1505+

{

1506+

providerId: "ollama-cloud",

1507+

register: registerOllamaCloudProvider,

1508+

nativeBaseUrl: "https://ollama.com",

1509+

},

1510+

])(

1511+

"$providerId selects native /api/chat transport only for api=ollama",

1512+

({ providerId, register, nativeBaseUrl }) => {

1513+

const provider = register();

1514+

const createStream = (api: "ollama" | "openai-completions", baseUrl: string) =>

1515+

provider.createStreamFn?.({

1516+

config: {

1517+

models: {

1518+

providers: {

1519+

[providerId]: {

1520+

api,

1521+

baseUrl,

1522+

models: [],

1523+

},

1524+

},

1525+

},

1526+

},

1527+

model: {

1528+

api,

1529+

id: "qwen3:32b",

1530+

provider: providerId,

1531+

},

1532+

provider: providerId,

1533+

} as never);

1534+1535+

const compatibleStream = createStream("openai-completions", `${nativeBaseUrl}/v1`);

1536+1537+

expect(compatibleStream).toBeUndefined();

1538+

expect(createConfiguredOllamaStreamFnMock).not.toHaveBeenCalled();

1539+1540+

const nativeStream = createStream("ollama", nativeBaseUrl);

1541+1542+

expect(nativeStream).toBeDefined();

1543+

expect(createConfiguredOllamaStreamFnMock).toHaveBeenCalledOnce();

1544+

expect(requireConfiguredStreamParams().providerBaseUrl).toBe(nativeBaseUrl);

1545+

},

1546+

);

1547+14371548

it("routes createStreamFn to the correct provider baseUrl for ollama2", () => {

14381549

const provider = registerProvider();

14391550

const config = {

@@ -1452,7 +1563,7 @@ describe("ollama plugin", () => {

14521563

},

14531564

},

14541565

};

1455-

const model = { id: "llama3.2", provider: "ollama2", baseUrl: undefined };

1566+

const model = { id: "llama3.2", provider: "ollama2", api: "ollama", baseUrl: undefined };

1456156714571568

provider.createStreamFn?.({ config, model, provider: "ollama2" } as never);

14581569

@@ -1472,7 +1583,7 @@ describe("ollama plugin", () => {

14721583

},

14731584

},

14741585

};

1475-

const model = { id: "llama3.2", provider: "ollama2", baseUrl: undefined };

1586+

const model = { id: "llama3.2", provider: "ollama2", api: "ollama", baseUrl: undefined };

1476158714771588

provider.createStreamFn?.({ config, model, provider: "ollama2" } as never);

14781589

@@ -1497,7 +1608,7 @@ describe("ollama plugin", () => {

14971608

},

14981609

},

14991610

};

1500-

const model = { id: "llama3.2", provider: "ollama", baseUrl: undefined };

1611+

const model = { id: "llama3.2", provider: "ollama", api: "ollama", baseUrl: undefined };

1501161215021613

provider.createStreamFn?.({ config, model, provider: "ollama" } as never);

15031614