Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,12 @@ class Model @JsonCreator private constructor(private val value: JsonField<String
*/
@JvmField val GEMINI_3_1_FLASH_IMAGE_PREVIEW = of("gemini-3.1-flash-image-preview")

/**
* Our most cost-efficient model, optimized for high-volume agentic tasks, translation, and
* simple data processing.
*/
@JvmField val GEMINI_3_1_FLASH_LITE = of("gemini-3.1-flash-lite")

/**
* Our most cost-efficient model, optimized for high-volume agentic tasks, translation, and
* simple data processing.
Expand Down Expand Up @@ -226,6 +232,11 @@ class Model @JsonCreator private constructor(private val value: JsonField<String
* capabilities.
*/
GEMINI_3_1_FLASH_IMAGE_PREVIEW,
/**
* Our most cost-efficient model, optimized for high-volume agentic tasks, translation, and
* simple data processing.
*/
GEMINI_3_1_FLASH_LITE,
/**
* Our most cost-efficient model, optimized for high-volume agentic tasks, translation, and
* simple data processing.
Expand Down Expand Up @@ -327,6 +338,11 @@ class Model @JsonCreator private constructor(private val value: JsonField<String
* capabilities.
*/
GEMINI_3_1_FLASH_IMAGE_PREVIEW,
/**
* Our most cost-efficient model, optimized for high-volume agentic tasks, translation, and
* simple data processing.
*/
GEMINI_3_1_FLASH_LITE,
/**
* Our most cost-efficient model, optimized for high-volume agentic tasks, translation, and
* simple data processing.
Expand Down Expand Up @@ -376,6 +392,7 @@ class Model @JsonCreator private constructor(private val value: JsonField<String
GEMINI_3_PRO_PREVIEW -> Value.GEMINI_3_PRO_PREVIEW
GEMINI_3_1_PRO_PREVIEW -> Value.GEMINI_3_1_PRO_PREVIEW
GEMINI_3_1_FLASH_IMAGE_PREVIEW -> Value.GEMINI_3_1_FLASH_IMAGE_PREVIEW
GEMINI_3_1_FLASH_LITE -> Value.GEMINI_3_1_FLASH_LITE
GEMINI_3_1_FLASH_LITE_PREVIEW -> Value.GEMINI_3_1_FLASH_LITE_PREVIEW
GEMINI_3_1_FLASH_TTS_PREVIEW -> Value.GEMINI_3_1_FLASH_TTS_PREVIEW
LYRIA_3_CLIP_PREVIEW -> Value.LYRIA_3_CLIP_PREVIEW
Expand Down Expand Up @@ -410,6 +427,7 @@ class Model @JsonCreator private constructor(private val value: JsonField<String
GEMINI_3_PRO_PREVIEW -> Known.GEMINI_3_PRO_PREVIEW
GEMINI_3_1_PRO_PREVIEW -> Known.GEMINI_3_1_PRO_PREVIEW
GEMINI_3_1_FLASH_IMAGE_PREVIEW -> Known.GEMINI_3_1_FLASH_IMAGE_PREVIEW
GEMINI_3_1_FLASH_LITE -> Known.GEMINI_3_1_FLASH_LITE
GEMINI_3_1_FLASH_LITE_PREVIEW -> Known.GEMINI_3_1_FLASH_LITE_PREVIEW
GEMINI_3_1_FLASH_TTS_PREVIEW -> Known.GEMINI_3_1_FLASH_TTS_PREVIEW
LYRIA_3_CLIP_PREVIEW -> Known.LYRIA_3_CLIP_PREVIEW
Expand Down
Loading