From 0de263e8a42af5fc5a061d25d53a2e2e35a348e6 Mon Sep 17 00:00:00 2001 From: Annie Luc Date: Wed, 17 Dec 2025 16:31:19 -0800 Subject: [PATCH] chore: Remove the 'object' field from Interaction PiperOrigin-RevId: 845963785 --- google/genai/_interactions/types/interaction.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/google/genai/_interactions/types/interaction.py b/google/genai/_interactions/types/interaction.py index e264cdbdf..c3a054ee3 100644 --- a/google/genai/_interactions/types/interaction.py +++ b/google/genai/_interactions/types/interaction.py @@ -142,9 +142,6 @@ class Interaction(BaseModel): model: Optional[Model] = None """The name of the `Model` used for generating the interaction.""" - object: Optional[Literal["interaction"]] = None - """Output only. The object type of the interaction. Always set to `interaction`.""" - outputs: Optional[List[Output]] = None """Output only. Responses from the model."""