-
Notifications
You must be signed in to change notification settings - Fork 619
[VertexAI] Add initial support to export covered API #6749
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The code is not used in the SDK itself, so sholudn't be part of it.
Also, add missing header
📝 PRs merging into main branchOur main branch should always be in a releasable state. If you are working on a larger change, or if you don't want this change to see the light of the day just yet, consider using a feature branch first, and only merge into the main branch when the code complete and ready to be released. |
Coverage Report 1Affected ProductsNo changes between base commit (a232b6d) and merge commit (3a103b0).Test Logs |
Test Results 22 files + 8 22 suites +8 12s ⏱️ ±0s Results for commit 39e5671. ± Comparison against base commit a232b6d. This pull request removes 23 and adds 121 tests. Note that renamed tests count towards both.
♻️ This comment has been updated with latest results. |
Size Report 1Affected Products
Test Logs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Left some comments, but otherwise LGTM
firebase-vertexai/src/test/java/com/google/firebase/vertexai/SerializationTests.kt
Outdated
Show resolved
Hide resolved
firebase-vertexai/src/test/java/com/google/firebase/vertexai/common/util/descriptorToJson.kt
Show resolved
Hide resolved
firebase-vertexai/src/test/java/com/google/firebase/vertexai/common/util/descriptorToJson.kt
Show resolved
Hide resolved
…erializationTests.kt Co-authored-by: Daymon <[email protected]>
The server produces a discovery document with the details of the API surface. https://aiplatform.googleapis.com/$discovery/rest?version=v1beta1 This change introduces code that can generate similar a description of the API covered by the SDK. This will enable us to track difference between both. In a follow up PR we can implement the logic to fully export the surface. --------- Co-authored-by: Daymon <[email protected]>
The server produces a discovery document with the details of the API surface.
https://aiplatform.googleapis.com/$discovery/rest?version=v1beta1
This change introduces code that can generate similar a description of the API covered by the SDK. This will enable us to track difference between both.
In a follow up PR we can implement the logic to fully export the surface.