@ouro.bot/cli 0.1.0-alpha.122 → 0.1.0-alpha.123
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/changelog.json
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_note": "This changelog is maintained as part of the PR/version-bump workflow. Agent-curated, not auto-generated. Agents read this file directly via read_file to understand what changed between versions.",
|
|
3
3
|
"versions": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.1.0-alpha.123",
|
|
6
|
+
"changes": [
|
|
7
|
+
"Fixed Anthropic API request format: effort parameter moved from thinking object to output_config. Was causing 400 errors that masked real model access restrictions."
|
|
8
|
+
]
|
|
9
|
+
},
|
|
4
10
|
{
|
|
5
11
|
"version": "0.1.0-alpha.122",
|
|
6
12
|
"changes": [
|
|
@@ -234,7 +234,8 @@ async function streamAnthropicMessages(client, model, request) {
|
|
|
234
234
|
max_tokens: maxTokens,
|
|
235
235
|
messages,
|
|
236
236
|
stream: true,
|
|
237
|
-
thinking: { type: "adaptive"
|
|
237
|
+
thinking: { type: "adaptive" },
|
|
238
|
+
output_config: { effort: request.reasoningEffort ?? "medium" },
|
|
238
239
|
};
|
|
239
240
|
if (system)
|
|
240
241
|
params.system = system;
|