@google/genai 1.51.0 → 2.0.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/README.md +1 -4
- package/dist/genai.d.ts +467 -429
- package/dist/index.cjs +80 -15
- package/dist/index.mjs +80 -15
- package/dist/index.mjs.map +1 -1
- package/dist/node/index.cjs +80 -15
- package/dist/node/index.mjs +80 -15
- package/dist/node/index.mjs.map +1 -1
- package/dist/node/node.d.ts +467 -429
- package/dist/tokenizer/node.mjs.map +1 -1
- package/dist/vertex_internal/index.cjs +143 -123
- package/dist/vertex_internal/index.cjs.map +1 -1
- package/dist/vertex_internal/index.d.ts +22 -0
- package/dist/vertex_internal/index.js +143 -123
- package/dist/vertex_internal/index.js.map +1 -1
- package/dist/web/index.mjs +80 -15
- package/dist/web/index.mjs.map +1 -1
- package/dist/web/web.d.ts +467 -429
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -369,10 +369,7 @@ async function main() {
|
|
|
369
369
|
main();
|
|
370
370
|
```
|
|
371
371
|
|
|
372
|
-
## Interactions
|
|
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**.
|
|
372
|
+
## Interactions
|
|
376
373
|
|
|
377
374
|
The Interactions API is a unified interface for interacting with Gemini models
|
|
378
375
|
and agents. It simplifies state management, tool orchestration, and long-running
|