@@ -32,7 +32,6 @@ export const POSSIBLE_ROLES = ['user', 'model', 'function', 'system'] as const;
32
32
* @public
33
33
*/
34
34
export enum HarmCategory {
35
- HARM_CATEGORY_UNSPECIFIED = 'HARM_CATEGORY_UNSPECIFIED' ,
36
35
HARM_CATEGORY_HATE_SPEECH = 'HARM_CATEGORY_HATE_SPEECH' ,
37
36
HARM_CATEGORY_SEXUALLY_EXPLICIT = 'HARM_CATEGORY_SEXUALLY_EXPLICIT' ,
38
37
HARM_CATEGORY_HARASSMENT = 'HARM_CATEGORY_HARASSMENT' ,
@@ -44,8 +43,6 @@ export enum HarmCategory {
44
43
* @public
45
44
*/
46
45
export enum HarmBlockThreshold {
47
- // Threshold is unspecified.
48
- HARM_BLOCK_THRESHOLD_UNSPECIFIED = 'HARM_BLOCK_THRESHOLD_UNSPECIFIED' ,
49
46
// Content with NEGLIGIBLE will be allowed.
50
47
BLOCK_LOW_AND_ABOVE = 'BLOCK_LOW_AND_ABOVE' ,
51
48
// Content with NEGLIGIBLE and LOW will be allowed.
@@ -60,8 +57,6 @@ export enum HarmBlockThreshold {
60
57
* @public
61
58
*/
62
59
export enum HarmBlockMethod {
63
- // The harm block method is unspecified.
64
- HARM_BLOCK_METHOD_UNSPECIFIED = 'HARM_BLOCK_METHOD_UNSPECIFIED' ,
65
60
// The harm block method uses both probability and severity scores.
66
61
SEVERITY = 'SEVERITY' ,
67
62
// The harm block method uses the probability score.
@@ -73,8 +68,6 @@ export enum HarmBlockMethod {
73
68
* @public
74
69
*/
75
70
export enum HarmProbability {
76
- // Probability is unspecified.
77
- HARM_PROBABILITY_UNSPECIFIED = 'HARM_PROBABILITY_UNSPECIFIED' ,
78
71
// Content has a negligible chance of being unsafe.
79
72
NEGLIGIBLE = 'NEGLIGIBLE' ,
80
73
// Content has a low chance of being unsafe.
@@ -90,8 +83,6 @@ export enum HarmProbability {
90
83
* @public
91
84
*/
92
85
export enum HarmSeverity {
93
- // Harm severity unspecified.
94
- HARM_SEVERITY_UNSPECIFIED = 'HARM_SEVERITY_UNSPECIFIED' ,
95
86
// Negligible level of harm severity.
96
87
HARM_SEVERITY_NEGLIGIBLE = 'HARM_SEVERITY_NEGLIGIBLE' ,
97
88
// Low level of harm severity.
@@ -107,8 +98,6 @@ export enum HarmSeverity {
107
98
* @public
108
99
*/
109
100
export enum BlockReason {
110
- // A blocked reason was not specified.
111
- BLOCKED_REASON_UNSPECIFIED = 'BLOCKED_REASON_UNSPECIFIED' ,
112
101
// Content was blocked by safety settings.
113
102
SAFETY = 'SAFETY' ,
114
103
// Content was blocked, but the reason is uncategorized.
@@ -120,8 +109,6 @@ export enum BlockReason {
120
109
* @public
121
110
*/
122
111
export enum FinishReason {
123
- // Default value. This value is unused.
124
- FINISH_REASON_UNSPECIFIED = 'FINISH_REASON_UNSPECIFIED' ,
125
112
// Natural stop point of the model or provided stop sequence.
126
113
STOP = 'STOP' ,
127
114
// The maximum number of tokens as specified in the request was reached.
@@ -138,8 +125,6 @@ export enum FinishReason {
138
125
* @public
139
126
*/
140
127
export enum FunctionCallingMode {
141
- // Unspecified function calling mode. This value should not be used.
142
- MODE_UNSPECIFIED = 'MODE_UNSPECIFIED' ,
143
128
// Default model behavior, model decides to predict either a function call
144
129
// or a natural language response.
145
130
AUTO = 'AUTO' ,
0 commit comments