generated from amazon-archives/__template_Custom
-
Notifications
You must be signed in to change notification settings - Fork 221
Add agentic query support to the Java client #1893
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
Closed
ocuenca-coursera
wants to merge
2
commits into
opensearch-project:main
from
ocuenca-coursera:feature/add-agentic-query
Closed
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
304 changes: 304 additions & 0 deletions
304
...nt/src/generated/java/org/opensearch/client/opensearch/_types/query_dsl/AgenticQuery.java
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,304 @@ | ||
| /* | ||
| * SPDX-License-Identifier: Apache-2.0 | ||
| * | ||
| * The OpenSearch Contributors require contributions made to | ||
| * this file be licensed under the Apache-2.0 license or a | ||
| * compatible open source license. | ||
| */ | ||
|
|
||
| /* | ||
| * Licensed to Elasticsearch B.V. under one or more contributor | ||
| * license agreements. See the NOTICE file distributed with | ||
| * this work for additional information regarding copyright | ||
| * ownership. Elasticsearch B.V. licenses this file to you under | ||
| * the Apache License, Version 2.0 (the "License"); you may | ||
| * not use this file except in compliance with the License. | ||
| * You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, | ||
| * software distributed under the License is distributed on an | ||
| * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| * KIND, either express or implied. See the License for the | ||
| * specific language governing permissions and limitations | ||
| * under the License. | ||
| */ | ||
|
|
||
| /* | ||
| * Modifications Copyright OpenSearch Contributors. See | ||
| * GitHub history for details. | ||
| */ | ||
|
|
||
| //---------------------------------------------------- | ||
| // THIS CODE IS GENERATED. MANUAL EDITS WILL BE LOST. | ||
| //---------------------------------------------------- | ||
|
|
||
| package org.opensearch.client.opensearch._types.query_dsl; | ||
|
|
||
| import jakarta.json.stream.JsonGenerator; | ||
| import java.util.List; | ||
| import java.util.Objects; | ||
| import java.util.function.Function; | ||
| import javax.annotation.Generated; | ||
| import javax.annotation.Nonnull; | ||
| import javax.annotation.Nullable; | ||
| import org.opensearch.client.json.JsonpDeserializable; | ||
| import org.opensearch.client.json.JsonpDeserializer; | ||
| import org.opensearch.client.json.JsonpMapper; | ||
| import org.opensearch.client.json.ObjectBuilderDeserializer; | ||
| import org.opensearch.client.json.ObjectDeserializer; | ||
| import org.opensearch.client.util.ApiTypeHelper; | ||
| import org.opensearch.client.util.CopyableBuilder; | ||
| import org.opensearch.client.util.ObjectBuilder; | ||
| import org.opensearch.client.util.ToCopyableBuilder; | ||
|
|
||
| // typedef: _types.query_dsl.AgenticQuery | ||
|
|
||
| @JsonpDeserializable | ||
| @Generated("org.opensearch.client.codegen.CodeGenerator") | ||
| public class AgenticQuery extends QueryBase implements QueryVariant, ToCopyableBuilder<AgenticQuery.Builder, AgenticQuery> { | ||
|
|
||
| @Nullable | ||
| private final String memoryId; | ||
|
|
||
| @Nonnull | ||
| private final List<String> queryFields; | ||
|
|
||
| @Nonnull | ||
| private final String queryText; | ||
|
|
||
| // --------------------------------------------------------------------------------------------- | ||
|
|
||
| private AgenticQuery(Builder builder) { | ||
| super(builder); | ||
| this.memoryId = builder.memoryId; | ||
| this.queryFields = ApiTypeHelper.unmodifiable(builder.queryFields); | ||
| this.queryText = ApiTypeHelper.requireNonNull(builder.queryText, this, "queryText"); | ||
| } | ||
|
|
||
| public static AgenticQuery of(Function<AgenticQuery.Builder, ObjectBuilder<AgenticQuery>> fn) { | ||
| return fn.apply(new Builder()).build(); | ||
| } | ||
|
|
||
| /** | ||
| * {@link Query} variant kind. | ||
| */ | ||
| @Override | ||
| public Query.Kind _queryKind() { | ||
| return Query.Kind.Agentic; | ||
| } | ||
|
|
||
| /** | ||
| * Memory ID for conversational context. | ||
| * <p> | ||
| * API name: {@code memory_id} | ||
| * </p> | ||
| */ | ||
| @Nullable | ||
| public final String memoryId() { | ||
| return this.memoryId; | ||
| } | ||
|
|
||
| /** | ||
| * Index fields the agent should consider. | ||
| * <p> | ||
| * API name: {@code query_fields} | ||
| * </p> | ||
| */ | ||
| @Nonnull | ||
| public final List<String> queryFields() { | ||
| return this.queryFields; | ||
| } | ||
|
|
||
| /** | ||
| * Required - The natural language question. | ||
| * <p> | ||
| * API name: {@code query_text} | ||
| * </p> | ||
| */ | ||
| @Nonnull | ||
| public final String queryText() { | ||
| return this.queryText; | ||
| } | ||
|
|
||
| protected void serializeInternal(JsonGenerator generator, JsonpMapper mapper) { | ||
| super.serializeInternal(generator, mapper); | ||
| if (this.memoryId != null) { | ||
| generator.writeKey("memory_id"); | ||
| generator.write(this.memoryId); | ||
| } | ||
|
|
||
| if (ApiTypeHelper.isDefined(this.queryFields)) { | ||
| generator.writeKey("query_fields"); | ||
| generator.writeStartArray(); | ||
| for (String item0 : this.queryFields) { | ||
| generator.write(item0); | ||
| } | ||
| generator.writeEnd(); | ||
| } | ||
|
|
||
| generator.writeKey("query_text"); | ||
| generator.write(this.queryText); | ||
| } | ||
|
|
||
| // --------------------------------------------------------------------------------------------- | ||
|
|
||
| @Override | ||
| @Nonnull | ||
| public Builder toBuilder() { | ||
| return new Builder(this); | ||
| } | ||
|
|
||
| @Nonnull | ||
| public static Builder builder() { | ||
| return new Builder(); | ||
| } | ||
|
|
||
| /** | ||
| * Builder for {@link AgenticQuery}. | ||
| */ | ||
| public static class Builder extends QueryBase.AbstractBuilder<Builder> implements CopyableBuilder<Builder, AgenticQuery> { | ||
| @Nullable | ||
| private String memoryId; | ||
| @Nullable | ||
| private List<String> queryFields; | ||
| private String queryText; | ||
|
|
||
| public Builder() {} | ||
|
|
||
| private Builder(AgenticQuery o) { | ||
| super(o); | ||
| this.memoryId = o.memoryId; | ||
| this.queryFields = _listCopy(o.queryFields); | ||
| this.queryText = o.queryText; | ||
| } | ||
|
|
||
| private Builder(Builder o) { | ||
| super(o); | ||
| this.memoryId = o.memoryId; | ||
| this.queryFields = _listCopy(o.queryFields); | ||
| this.queryText = o.queryText; | ||
| } | ||
|
|
||
| @Override | ||
| @Nonnull | ||
| public Builder copy() { | ||
| return new Builder(this); | ||
| } | ||
|
|
||
| @Override | ||
| @Nonnull | ||
| protected Builder self() { | ||
| return this; | ||
| } | ||
|
|
||
| /** | ||
| * Memory ID for conversational context. | ||
| * <p> | ||
| * API name: {@code memory_id} | ||
| * </p> | ||
| */ | ||
| @Nonnull | ||
| public final Builder memoryId(@Nullable String value) { | ||
| this.memoryId = value; | ||
| return this; | ||
| } | ||
|
|
||
| /** | ||
| * Index fields the agent should consider. | ||
| * <p> | ||
| * API name: {@code query_fields} | ||
| * </p> | ||
| * | ||
| * <p> | ||
| * Adds all elements of <code>list</code> to <code>queryFields</code>. | ||
| * </p> | ||
| */ | ||
| @Nonnull | ||
| public final Builder queryFields(List<String> list) { | ||
| this.queryFields = _listAddAll(this.queryFields, list); | ||
| return this; | ||
| } | ||
|
|
||
| /** | ||
| * Index fields the agent should consider. | ||
| * <p> | ||
| * API name: {@code query_fields} | ||
| * </p> | ||
| * | ||
| * <p> | ||
| * Adds one or more values to <code>queryFields</code>. | ||
| * </p> | ||
| */ | ||
| @Nonnull | ||
| public final Builder queryFields(String value, String... values) { | ||
| this.queryFields = _listAdd(this.queryFields, value, values); | ||
| return this; | ||
| } | ||
|
|
||
| /** | ||
| * Required - The natural language question. | ||
| * <p> | ||
| * API name: {@code query_text} | ||
| * </p> | ||
| */ | ||
| @Nonnull | ||
| public final Builder queryText(String value) { | ||
| this.queryText = value; | ||
| return this; | ||
| } | ||
|
|
||
| /** | ||
| * Builds a {@link AgenticQuery}. | ||
| * | ||
| * @throws NullPointerException if some of the required fields are null. | ||
| */ | ||
| @Override | ||
| @Nonnull | ||
| public AgenticQuery build() { | ||
| _checkSingleUse(); | ||
|
|
||
| return new AgenticQuery(this); | ||
| } | ||
| } | ||
|
|
||
| // --------------------------------------------------------------------------------------------- | ||
|
|
||
| /** | ||
| * Json deserializer for {@link AgenticQuery} | ||
| */ | ||
| public static final JsonpDeserializer<AgenticQuery> _DESERIALIZER = ObjectBuilderDeserializer.lazy( | ||
| Builder::new, | ||
| AgenticQuery::setupAgenticQueryDeserializer | ||
| ); | ||
|
|
||
| protected static void setupAgenticQueryDeserializer(ObjectDeserializer<AgenticQuery.Builder> op) { | ||
| setupQueryBaseDeserializer(op); | ||
| op.add(Builder::memoryId, JsonpDeserializer.stringDeserializer(), "memory_id"); | ||
| op.add(Builder::queryFields, JsonpDeserializer.arrayDeserializer(JsonpDeserializer.stringDeserializer()), "query_fields"); | ||
| op.add(Builder::queryText, JsonpDeserializer.stringDeserializer(), "query_text"); | ||
| } | ||
|
|
||
| @Override | ||
| public int hashCode() { | ||
| int result = super.hashCode(); | ||
| result = 31 * result + Objects.hashCode(this.memoryId); | ||
| result = 31 * result + Objects.hashCode(this.queryFields); | ||
| result = 31 * result + this.queryText.hashCode(); | ||
| return result; | ||
| } | ||
|
|
||
| @Override | ||
| public boolean equals(Object o) { | ||
| if (!super.equals(o)) { | ||
| return false; | ||
| } | ||
| if (this == o) return true; | ||
| if (o == null || this.getClass() != o.getClass()) return false; | ||
| AgenticQuery other = (AgenticQuery) o; | ||
| return Objects.equals(this.memoryId, other.memoryId) | ||
| && Objects.equals(this.queryFields, other.queryFields) | ||
| && this.queryText.equals(other.queryText); | ||
| } | ||
| } | ||
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
Thank you @ocuenca-coursera , I am wondering how this code was generated?
Uh oh!
There was an error while loading. Please reload this page.
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.
The class was created by claude code agent and not for the codegen tool, first time didn't noticed about the codegen tool, I just found out this project uses a 3-stage pipeline in java-codegen/:
And that I needed to run
./gradlew :java-codegen:runto generate the new query fromopensearch-openapi.yaml. Including those changes in a moment...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.
Besides of that command, do you recommend me to run any other?
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.
Oh I see, so we do regenerate models from latest specs automatically, every week (see please #1890). Once the agentic query is in specification (https://github.com/opensearch-project/opensearch-api-specification), it will be available.