Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alphaxiv/agents",
"version": "0.6.12",
"version": "0.6.13",
"license": "MIT",
"fmt": {
"lineWidth": 120
Expand Down
2 changes: 1 addition & 1 deletion src/adapters/openai_completions/tools.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export function normalizeOpenAICompletionsTools(tools: AnyTool[]): OpenAIComplet
description: compatibility.instructions
? `${tool.description}\n\n${compatibility.instructions}`
: tool.description,
strict: true,
strict: false,
parameters: compatibility.jsonSchema,
},
},
Expand Down
2 changes: 1 addition & 1 deletion tests/adapters/openai-completions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ Deno.test("OpenAI Completions stream maps text, reasoning, and tool calls", asyn
function: {
name: "search",
description: "Search for documents",
strict: true,
strict: false,
parameters: {
type: "object",
properties: {
Expand Down
Loading