[api-sync 2026-07-22] gradientlabs-java: sync to OpenAPI spec#34
Open
jafrog wants to merge 2 commits into
Open
[api-sync 2026-07-22] gradientlabs-java: sync to OpenAPI spec#34jafrog wants to merge 2 commits into
jafrog wants to merge 2 commits into
Conversation
Add bulkUploadConversationMemories for POST /conversations/{id}/memories,
with request/response models and serialization tests.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Minor bump for the new conversation memories bulk-upload endpoint. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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.
What changed
Syncs the Java SDK to the current Gradient Labs public OpenAPI spec. The only drift was a single new endpoint.
POST /conversations/{id}/memories(ConversationMemoriesBulkUpload, Integration role): bulk-uploads a batch of memories scoped to a conversation for the agent to search over on demand.GradientLabsClient.bulkUploadConversationMemories(String conversationId, ConversationMemoriesBulkUploadRequest request)returningConversationMemoriesBulkUploadResponse.ConversationMemoriesBulkUploadRequest:idempotencyKey(required),memories(required,List<Map<String, Object>>— arbitrary JSON objects stored verbatim),createdAtKeys(optional,List<String>).ConversationMemoriesBulkUploadResponse:uploadId(String),memoriesInserted(long).@JsonProperty/@JsonInclude(NON_NULL)style. No new dependencies.GradientLabsClientbean (it does not mirror the method surface), so no starter changes were needed.Version
Minor bump
1.0.1-SNAPSHOT→1.1.0-SNAPSHOTacross the root and both module poms (separate commit).-SNAPSHOTretained; dropping it is a release-time step. The User-Agent version is derived from the package implementation version, so no separate constant needed updating. No CHANGELOG file exists in the repo.How verified
mvn verify—BUILD SUCCESS,Tests run: 11, Failures: 0, Errors: 0, Skipped: 0(including the 4 new tests).