File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -369,7 +369,10 @@ async function main() {
369369main();
370370```
371371
372- ## Interactions
372+ ## Interactions (Experimental)
373+
374+ > ** Warning:** The Interactions API is in ** Beta** . This is a preview of an
375+ experimental feature. Features and schemas are subject to **breaking changes**.
373376
374377The Interactions API is a unified interface for interacting with Gemini models
375378and agents. It simplifies state management, tool orchestration, and long-running
Original file line number Diff line number Diff line change @@ -187,6 +187,10 @@ export class GoogleGenAI {
187187 return this . _interactions ;
188188 }
189189
190+ console . warn (
191+ 'GoogleGenAI.interactions: Interactions usage is experimental and may change in future versions.' ,
192+ ) ;
193+
190194 this . _interactions = this . getNextGenClient ( ) . interactions ;
191195 return this . _interactions ;
192196 }
Original file line number Diff line number Diff line change @@ -163,6 +163,10 @@ export class GoogleGenAI {
163163 return this . _interactions ;
164164 }
165165
166+ console . warn (
167+ 'GoogleGenAI.interactions: Interactions usage is experimental and may change in future versions.' ,
168+ ) ;
169+
166170 this . _interactions = this . getNextGenClient ( ) . interactions ;
167171 return this . _interactions ;
168172 }
Original file line number Diff line number Diff line change @@ -115,6 +115,10 @@ export class GoogleGenAI {
115115 return this . _interactions ;
116116 }
117117
118+ console . warn (
119+ 'GoogleGenAI.interactions: Interactions usage is experimental and may change in future versions.' ,
120+ ) ;
121+
118122 this . _interactions = this . getNextGenClient ( ) . interactions ;
119123 return this . _interactions ;
120124 }
You can’t perform that action at this time.
0 commit comments