Skip to content
Open
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
20 changes: 10 additions & 10 deletions google/genai/_interactions/resources/interactions.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def create(

model: The name of the `Model` used for generating the interaction.

background: Whether to run the model interaction in the background.
background: Input only. Whether to run the model interaction in the background.

generation_config: Input only. Configuration parameters for the model interaction.

Expand Down Expand Up @@ -161,7 +161,7 @@ def create(

stream: Input only. Whether the interaction will be streamed.

background: Whether to run the model interaction in the background.
background: Input only. Whether to run the model interaction in the background.

generation_config: Input only. Configuration parameters for the model interaction.

Expand Down Expand Up @@ -224,7 +224,7 @@ def create(

agent_config: Configuration for the agent.

background: Whether to run the model interaction in the background.
background: Input only. Whether to run the model interaction in the background.

previous_interaction_id: The ID of the previous interaction, if any.

Expand Down Expand Up @@ -289,7 +289,7 @@ def create(

agent_config: Configuration for the agent.

background: Whether to run the model interaction in the background.
background: Input only. Whether to run the model interaction in the background.

previous_interaction_id: The ID of the previous interaction, if any.

Expand Down Expand Up @@ -350,7 +350,7 @@ def create(

stream: Input only. Whether the interaction will be streamed.

background: Whether to run the model interaction in the background.
background: Input only. Whether to run the model interaction in the background.

generation_config: Input only. Configuration parameters for the model interaction.

Expand Down Expand Up @@ -713,7 +713,7 @@ async def create(

model: The name of the `Model` used for generating the interaction.

background: Whether to run the model interaction in the background.
background: Input only. Whether to run the model interaction in the background.

generation_config: Input only. Configuration parameters for the model interaction.

Expand Down Expand Up @@ -778,7 +778,7 @@ async def create(

stream: Input only. Whether the interaction will be streamed.

background: Whether to run the model interaction in the background.
background: Input only. Whether to run the model interaction in the background.

generation_config: Input only. Configuration parameters for the model interaction.

Expand Down Expand Up @@ -841,7 +841,7 @@ async def create(

agent_config: Configuration for the agent.

background: Whether to run the model interaction in the background.
background: Input only. Whether to run the model interaction in the background.

previous_interaction_id: The ID of the previous interaction, if any.

Expand Down Expand Up @@ -906,7 +906,7 @@ async def create(

agent_config: Configuration for the agent.

background: Whether to run the model interaction in the background.
background: Input only. Whether to run the model interaction in the background.

previous_interaction_id: The ID of the previous interaction, if any.

Expand Down Expand Up @@ -967,7 +967,7 @@ async def create(

stream: Input only. Whether the interaction will be streamed.

background: Whether to run the model interaction in the background.
background: Input only. Whether to run the model interaction in the background.

generation_config: Input only. Configuration parameters for the model interaction.

Expand Down
4 changes: 2 additions & 2 deletions google/genai/_interactions/types/interaction_create_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class BaseCreateModelInteractionParams(TypedDict, total=False):
api_version: str

background: bool
"""Whether to run the model interaction in the background."""
"""Input only. Whether to run the model interaction in the background."""

generation_config: GenerationConfigParam
"""Input only. Configuration parameters for the model interaction."""
Expand Down Expand Up @@ -136,7 +136,7 @@ class BaseCreateAgentInteractionParams(TypedDict, total=False):
"""Configuration for the agent."""

background: bool
"""Whether to run the model interaction in the background."""
"""Input only. Whether to run the model interaction in the background."""

previous_interaction_id: str
"""The ID of the previous interaction, if any."""
Expand Down