diff --git a/src/main/java/com/google/genai/Client.java b/src/main/java/com/google/genai/Client.java index 5c3eca48647..ad236f80223 100644 --- a/src/main/java/com/google/genai/Client.java +++ b/src/main/java/com/google/genai/Client.java @@ -51,7 +51,6 @@ public final class Async { public final AsyncFileSearchStores fileSearchStores; // interactions:strip_begin - /** The interactions service is experimental. */ public final InteractionServiceAsync interactions; // interactions:strip_end @@ -87,7 +86,6 @@ public Async(ApiClient apiClient) { public final FileSearchStores fileSearchStores; // interactions:strip_begin - /** The interactions service is experimental. */ public final InteractionService interactions; // interactions:strip_end diff --git a/src/main/java/com/google/genai/interactions/services/async/InteractionServiceAsync.kt b/src/main/java/com/google/genai/interactions/services/async/InteractionServiceAsync.kt index cdfcd693ce0..7fd33ea5a11 100644 --- a/src/main/java/com/google/genai/interactions/services/async/InteractionServiceAsync.kt +++ b/src/main/java/com/google/genai/interactions/services/async/InteractionServiceAsync.kt @@ -36,7 +36,6 @@ import com.google.errorprone.annotations.MustBeClosed import java.util.concurrent.CompletableFuture import java.util.function.Consumer -/**
The interactions service is experimental. */
interface InteractionServiceAsync {
/**
@@ -51,11 +50,7 @@ interface InteractionServiceAsync {
*/
fun withOptions(modifier: Consumer The interactions service is experimental.
- */
+ /** Creates a new interaction. */
fun create(params: InteractionCreateParams): CompletableFuture The interactions service is experimental. */
interface InteractionService {
/**
@@ -49,11 +48,7 @@ interface InteractionService {
*/
fun withOptions(modifier: Consumer The interactions service is experimental.
- */
+ /** Creates a new interaction. */
fun create(params: InteractionCreateParams): Interaction = create(params, RequestOptions.none())
/** @see create */