You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
seed
integer or null
Optional
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.
Determinism is not guaranteed, and you should refer to the system_fingerprint response parameter to monitor changes in the backend.
In your implementation you are using Double. Was this a change in the api or is this intentional?
The text was updated successfully, but these errors were encountered:
Using the seed the following error is also returned:
Unsuccessful response with HTTP status code 400 and error body: {
"error": {
"message": "1710180280865.0 is not of type 'integer' - 'seed'",
"type": "invalid_request_error",
"param": null,
"code": null
}
}
In the ChatCompletionRequest it is a Double, in the CompletionRequest an Integer :D
The official API states:
seed
integer or null
Optional
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.
Determinism is not guaranteed, and you should refer to the system_fingerprint response parameter to monitor changes in the backend.
In your implementation you are using Double. Was this a change in the api or is this intentional?
The text was updated successfully, but these errors were encountered: