@agentic-patterns/runtime 0.1.7 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +4 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +13 -8
- package/dist/index.d.ts +13 -8
- package/dist/index.js +4 -7
- package/dist/index.js.map +1 -1
- package/package.json +4 -14
package/dist/index.cjs
CHANGED
|
@@ -2315,10 +2315,7 @@ var ClaudeCodeAPIRunner = class extends ClaudeCodeRunner {
|
|
|
2315
2315
|
const sdkOpts = super._buildOptions(agent, options, context);
|
|
2316
2316
|
sdkOpts.tools = [];
|
|
2317
2317
|
if (this._extraDisallowed.length > 0) {
|
|
2318
|
-
sdkOpts.disallowedTools = [
|
|
2319
|
-
...sdkOpts.disallowedTools ?? [],
|
|
2320
|
-
...this._extraDisallowed
|
|
2321
|
-
];
|
|
2318
|
+
sdkOpts.disallowedTools = [...sdkOpts.disallowedTools ?? [], ...this._extraDisallowed];
|
|
2322
2319
|
}
|
|
2323
2320
|
if (!this._disableSandbox && this._isolatedConfigDir) {
|
|
2324
2321
|
const oauth = loadMaxSubOAuth();
|
|
@@ -2672,9 +2669,9 @@ var openrouterProvider = {
|
|
|
2672
2669
|
var ollamaProvider = {
|
|
2673
2670
|
name: "ollama",
|
|
2674
2671
|
tiers: {
|
|
2675
|
-
opus: "qwen3:
|
|
2676
|
-
sonnet: "qwen3:
|
|
2677
|
-
haiku: "qwen3:4b"
|
|
2672
|
+
opus: "qwen3.6:35b-a3b",
|
|
2673
|
+
sonnet: "qwen3.5:9b",
|
|
2674
|
+
haiku: "qwen3.5:4b"
|
|
2678
2675
|
},
|
|
2679
2676
|
envVars: ["OLLAMA_HOST"],
|
|
2680
2677
|
async load(modelId) {
|