fix(arcee): disable tools for Trinity thinking · openclaw/openclaw@dd09e6f
steipete
·
2026-05-07
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -92,6 +92,12 @@ describe("arcee provider plugin", () => {
|
92 | 92 | "trinity-large-preview", |
93 | 93 | "trinity-large-thinking", |
94 | 94 | ]); |
| 95 | +expect( |
| 96 | +catalogProvider.models?.find((model) => model.id === "trinity-large-thinking")?.compat, |
| 97 | +).toMatchObject({ |
| 98 | +supportsTools: false, |
| 99 | +supportsReasoningEffort: false, |
| 100 | +}); |
95 | 101 | }); |
96 | 102 | |
97 | 103 | it("builds the OpenRouter-backed Arcee AI model catalog", async () => { |
@@ -112,6 +118,12 @@ describe("arcee provider plugin", () => {
|
112 | 118 | "arcee/trinity-large-preview", |
113 | 119 | "arcee/trinity-large-thinking", |
114 | 120 | ]); |
| 121 | +expect( |
| 122 | +catalogProvider.models?.find((model) => model.id === "arcee/trinity-large-thinking")?.compat, |
| 123 | +).toMatchObject({ |
| 124 | +supportsTools: false, |
| 125 | +supportsReasoningEffort: false, |
| 126 | +}); |
115 | 127 | }); |
116 | 128 | |
117 | 129 | it("normalizes Arcee OpenRouter models to vendor-prefixed runtime ids", async () => { |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。