delete unsupported $schema param from vertex and google#1071
Merged
VisargD merged 2 commits intoMay 5, 2025
Merged
Conversation
VisargD
approved these changes
May 5, 2025
Contributor
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.
Description
Summary By MatterAI
🔄 What Changed
This PR removes the unsupported
$schemaparameter from requests sent to Google Vertex AI by adding it to the list of parameters that are recursively deleted in the utility function.🔍 Impact of the Change
This change prevents potential errors or rejections from the Google Vertex AI API when requests contain the
$schemaparameter, which is not supported by the API.📁 Total Files Changed
1 file changed with 1 line added and 0 lines deleted.
🧪 Test Added
N/A
🔒 Security Vulnerabilities
No security vulnerabilities identified.
Motivation
The
$schemaparameter is not supported by Google Vertex AI API and needs to be removed from requests to prevent potential errors.Type of Change
How Has This Been Tested?
Screenshots (if applicable)
N/A
Checklist
Related Issues
N/A
Quality Recommendations
Sequence Diagram
sequenceDiagram participant Client as Client participant Gateway as Portkey Gateway participant Utils as recursivelyDeleteUnsupportedParameters participant GoogleVertexAI as Google Vertex AI API Client->>Gateway: Send request with parameters Gateway->>Utils: Process request parameters Utils->>Utils: Delete unsupported parameters Note over Utils: Now also deletes '$schema' parameter Utils-->>Gateway: Return cleaned parameters Gateway->>GoogleVertexAI: Forward request with cleaned parameters GoogleVertexAI-->>Gateway: Return response Gateway-->>Client: Return processed response