File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -505,7 +505,8 @@ private static function get_generation_config_transformers(): array {
505
505
return $ config ->get_max_output_tokens ();
506
506
},
507
507
'temperature ' => static function ( Generation_Config $ config ) {
508
- return $ config ->get_temperature ();
508
+ // In the Google AI API temperature ranges from 0.0 to 2.0.
509
+ return $ config ->get_temperature () * 2.0 ;
509
510
},
510
511
'topP ' => static function ( Generation_Config $ config ) {
511
512
return $ config ->get_top_p ();
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ public function get_max_output_tokens(): int {
133
133
*
134
134
* @since 0.2.0
135
135
*
136
- * @return float The temperature (between 0.0 and 2 .0), or 0.0 if not set.
136
+ * @return float The temperature (between 0.0 and 1 .0), or 0.0 if not set.
137
137
*/
138
138
public function get_temperature (): float {
139
139
return $ this ->sanitized_args ['temperature ' ] ?? 0.0 ;
@@ -282,7 +282,7 @@ public static function get_json_schema(): array {
282
282
'description ' => __ ( 'Floating point value to control the randomness of the output. ' , 'ai-services ' ),
283
283
'type ' => 'number ' ,
284
284
'minimum ' => 0.0 ,
285
- 'maximum ' => 2 .0 ,
285
+ 'maximum ' => 1 .0 ,
286
286
),
287
287
'topP ' => array (
288
288
'description ' => __ ( 'The maximum cumulative probability of tokens to consider when sampling. ' , 'ai-services ' ),
@@ -366,8 +366,8 @@ private function sanitize_args( array $args ): array {
366
366
* @throws InvalidArgumentException Thrown if the type is not supported.
367
367
*/
368
368
private function sanitize_arg ( $ value , string $ type , string $ arg_name ) {
369
- if ( 'temperature ' === $ arg_name && ( (float ) $ value < 0.0 || (float ) $ value > 2 .0 ) ) {
370
- throw new InvalidArgumentException ( 'Temperature must be between 0.0 and 2 .0. ' );
369
+ if ( 'temperature ' === $ arg_name && ( (float ) $ value < 0.0 || (float ) $ value > 1 .0 ) ) {
370
+ throw new InvalidArgumentException ( 'Temperature must be between 0.0 and 1 .0. ' );
371
371
}
372
372
373
373
switch ( $ type ) {
You can’t perform that action at this time.
0 commit comments