Skip to content

Commit e7ae611

Browse files
committed
Consistently handle AI temperature parameter between services, expecting a value between 0.0 and 1.0.
1 parent 06b2340 commit e7ae611

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

includes/Google/Google_AI_Model.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,8 @@ private static function get_generation_config_transformers(): array {
505505
return $config->get_max_output_tokens();
506506
},
507507
'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;
509510
},
510511
'topP' => static function ( Generation_Config $config ) {
511512
return $config->get_top_p();

includes/Services/API/Types/Generation_Config.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ public function get_max_output_tokens(): int {
133133
*
134134
* @since 0.2.0
135135
*
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.
137137
*/
138138
public function get_temperature(): float {
139139
return $this->sanitized_args['temperature'] ?? 0.0;
@@ -282,7 +282,7 @@ public static function get_json_schema(): array {
282282
'description' => __( 'Floating point value to control the randomness of the output.', 'ai-services' ),
283283
'type' => 'number',
284284
'minimum' => 0.0,
285-
'maximum' => 2.0,
285+
'maximum' => 1.0,
286286
),
287287
'topP' => array(
288288
'description' => __( 'The maximum cumulative probability of tokens to consider when sampling.', 'ai-services' ),
@@ -366,8 +366,8 @@ private function sanitize_args( array $args ): array {
366366
* @throws InvalidArgumentException Thrown if the type is not supported.
367367
*/
368368
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.' );
371371
}
372372

373373
switch ( $type ) {

0 commit comments

Comments
 (0)