@blade-ai/orca 0.1.100-linux-x64 → 0.1.101-darwin-arm64

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/README.md CHANGED
@@ -33,7 +33,7 @@ Set `INSTALL_DIR` to choose a destination and `ORCA_VERSION` to pin a version:
33
33
 
34
34
  ```bash
35
35
  curl -fsSL https://orcaagent.dev/install.sh | \
36
- INSTALL_DIR=/usr/local/bin ORCA_VERSION=0.1.100 sh
36
+ INSTALL_DIR=/usr/local/bin ORCA_VERSION=0.1.101 sh
37
37
  ```
38
38
 
39
39
  ### GitHub Releases
@@ -69,6 +69,7 @@ Priority chain (highest wins): Environment variables > CLI arguments > Config fi
69
69
  - `DEEPSEEK_API_KEY` — API key (required)
70
70
  - `DEEPSEEK_MODEL` — Model override
71
71
  - `DEEPSEEK_BASE_URL` — API base URL override
72
+ - `DEEPSEEK_REASONING_EFFORT` — Reasoning effort override (`high` or `max`; default `max`)
72
73
  - `ORCA_NODE_PATH` — Node.js executable used by workflow scripts when `node` is not on `PATH` (npm installs set this automatically)
73
74
 
74
75
  ### Config File
@@ -77,6 +78,7 @@ Priority chain (highest wins): Environment variables > CLI arguments > Config fi
77
78
 
78
79
  ```toml
79
80
  model = "auto"
81
+ reasoning_effort = "max"
80
82
  api_key = "sk-..."
81
83
  base_url = "https://api.deepseek.com"
82
84
  ```
@@ -117,6 +119,7 @@ output_truncation = { mode = "tokens", limit = 2000 }
117
119
  ### Defaults
118
120
 
119
121
  - Model: `auto` (main loop uses `deepseek-v4-pro`, auxiliary tasks use `deepseek-v4-flash`)
122
+ - Reasoning effort: `max`
120
123
  - Base URL: `https://api.deepseek.com`
121
124
  - Approval mode: `suggest`
122
125
  - Output format: `text`
package/package.json CHANGED
@@ -13,12 +13,12 @@
13
13
  "node": ">=16"
14
14
  },
15
15
  "name": "@blade-ai/orca",
16
- "version": "0.1.100-linux-x64",
17
- "description": "Native Orca binary for linux/x64.",
16
+ "version": "0.1.101-darwin-arm64",
17
+ "description": "Native Orca binary for darwin/arm64.",
18
18
  "os": [
19
- "linux"
19
+ "darwin"
20
20
  ],
21
21
  "cpu": [
22
- "x64"
22
+ "arm64"
23
23
  ]
24
24
  }
index 3e3613d..6426faf 100755
Binary file