fix(openrouter): ignored when tools are configured but unused#3041
Merged
icecrasher321 merged 1 commit intostagingfrom Jan 28, 2026
Merged
fix(openrouter): ignored when tools are configured but unused#3041icecrasher321 merged 1 commit intostagingfrom
icecrasher321 merged 1 commit intostagingfrom
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
Contributor
Greptile OverviewGreptile SummaryFixed a logic bug in the OpenRouter provider where structured output formatting ( Key Changes:
Impact:
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant Client
participant OpenRouterProvider
participant OpenAI_API as OpenRouter API
participant Tools
Client->>OpenRouterProvider: executeRequest(request with tools & responseFormat)
OpenRouterProvider->>OpenRouterProvider: prepareToolsWithUsageControl()
OpenRouterProvider->>OpenRouterProvider: hasActiveTools = true
OpenRouterProvider->>OpenAI_API: Initial API call with tools
OpenAI_API-->>OpenRouterProvider: Response (no tool calls)
Note over OpenRouterProvider: toolCalls.length = 0<br/>(model didn't use tools)
alt OLD BEHAVIOR (Bug)
OpenRouterProvider->>OpenRouterProvider: Check: hasActiveTools && toolCalls.length > 0
Note over OpenRouterProvider: Condition FALSE<br/>Skip responseFormat
OpenRouterProvider-->>Client: Return without structured output
end
alt NEW BEHAVIOR (Fixed)
OpenRouterProvider->>OpenRouterProvider: Check: hasActiveTools
Note over OpenRouterProvider: Condition TRUE<br/>Apply responseFormat
OpenRouterProvider->>OpenAI_API: Final call with responseFormat
OpenAI_API-->>OpenRouterProvider: Structured JSON response
OpenRouterProvider-->>Client: Return with structured output
end
|
This was referenced Jan 30, 2026
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Should not ignore when tools are unused but active.
Type of Change
Testing
Tested manually.
Checklist