From 1f8b2d173a80f861bcb69aa0dcc368a2b3dd4f27 Mon Sep 17 00:00:00 2001 From: Tim Connors Date: Thu, 27 Feb 2025 16:49:07 -0500 Subject: [PATCH] feat: add seed to generationconfig --- src/types/content.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types/content.ts b/src/types/content.ts index d7b8a94d..e509f8a2 100644 --- a/src/types/content.ts +++ b/src/types/content.ts @@ -227,6 +227,8 @@ export declare interface GenerationConfig { * If set, a compatible responseMimeType must also be set. */ responseSchema?: ResponseSchema; + /** Optional. The seed to use for generation. */ + seed?: number; } /**