Skip to content

Commit 162e93e

Browse files
committed
Fix min/max
1 parent b90d283 commit 162e93e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

specification/base/typespec/chat/models.tsp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -305,8 +305,8 @@ model CreateChatCompletionRequest {
305305
If specified, our system will make a best effort to sample deterministically, such that repeated requests with the same `seed` and parameters should return the same result.
306306
Determinism is not guaranteed, and you should refer to the `system_fingerprint` response parameter to monitor changes in the backend.
307307
""")
308-
@minValue(-9223372036854776000)
309-
@maxValue(9223372036854776000)
308+
@minValue(-9223372036854775808)
309+
@maxValue(9223372036854775807)
310310
seed?: int64 | null;
311311

312312
stream_options?: ChatCompletionStreamOptions | null = null;

0 commit comments

Comments
 (0)