Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/main/java/com/google/genai/Client.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ import com.google.errorprone.annotations.MustBeClosed
import java.util.concurrent.CompletableFuture
import java.util.function.Consumer

/** <p>The interactions service is experimental. */
interface InteractionServiceAsync {

/**
Expand All @@ -51,11 +50,7 @@ interface InteractionServiceAsync {
*/
fun withOptions(modifier: Consumer<ClientOptions.Builder>): InteractionServiceAsync

/**
* Creates a new interaction.
*
* <p>The interactions service is experimental.
*/
/** Creates a new interaction. */
fun create(params: InteractionCreateParams): CompletableFuture<Interaction> =
create(params, RequestOptions.none())

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ import com.google.genai.interactions.models.interactions.InteractionSseEvent
import com.google.errorprone.annotations.MustBeClosed
import java.util.function.Consumer

/** <p>The interactions service is experimental. */
interface InteractionService {

/**
Expand All @@ -49,11 +48,7 @@ interface InteractionService {
*/
fun withOptions(modifier: Consumer<ClientOptions.Builder>): InteractionService

/**
* Creates a new interaction.
*
* <p>The interactions service is experimental.
*/
/** Creates a new interaction. */
fun create(params: InteractionCreateParams): Interaction = create(params, RequestOptions.none())

/** @see create */
Expand Down
Loading