@google/genai 0.11.0 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/genai.d.ts +2 -0
- package/dist/index.js +13 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -1
- package/dist/index.mjs.map +1 -1
- package/dist/node/index.js +13 -1
- package/dist/node/index.js.map +1 -1
- package/dist/node/node.d.ts +2 -0
- package/dist/web/index.mjs +13 -1
- package/dist/web/index.mjs.map +1 -1
- package/dist/web/web.d.ts +2 -0
- package/package.json +1 -1
package/dist/web/web.d.ts
CHANGED
|
@@ -2852,6 +2852,8 @@ export declare interface LiveServerContent {
|
|
|
2852
2852
|
turnComplete?: boolean;
|
|
2853
2853
|
/** If true, indicates that a client message has interrupted current model generation. If the client is playing out the content in realtime, this is a good signal to stop and empty the current queue. */
|
|
2854
2854
|
interrupted?: boolean;
|
|
2855
|
+
/** Metadata returned to client when grounding is enabled. */
|
|
2856
|
+
groundingMetadata?: GroundingMetadata;
|
|
2855
2857
|
/** If true, indicates that the model is done generating. When model is
|
|
2856
2858
|
interrupted while generating there will be no generation_complete message
|
|
2857
2859
|
in interrupted turn, it will go through interrupted > turn_complete.
|