Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion src/main/java/com/google/genai/types/EndSensitivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ public class EndSensitivity {

/** Enum representing the known values for EndSensitivity. */
public enum Known {
/** The default is END_SENSITIVITY_LOW. */
/**
* The default is END_SENSITIVITY_LOW for Gemini Enterprise Agent Platform and
* END_SENSITIVITY_HIGH for Gemini Live.
*/
END_SENSITIVITY_UNSPECIFIED,

/** Automatic detection ends speech more often. */
Expand Down
5 changes: 4 additions & 1 deletion src/main/java/com/google/genai/types/StartSensitivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ public class StartSensitivity {

/** Enum representing the known values for StartSensitivity. */
public enum Known {
/** The default is START_SENSITIVITY_LOW. */
/**
* The default is START_SENSITIVITY_LOW for Gemini Enterprise Agent Platform and
* START_SENSITIVITY_HIGH for Gemini Live.
*/
START_SENSITIVITY_UNSPECIFIED,

/** Automatic detection will detect the start of speech more often. */
Expand Down
Loading