Create Evaluation
Use OpenAI chat completions endpoint to run evaluations
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
A request to an Atla evaluator via the /eval/chat/completions
endpoint.
A list of messages comprising the conversation so far. See the OpenAI API reference for more information.
The ID or name of the Atla evaluator model to use. This may point to a specific model version or a model family. If a model family is provided, the default model version for that family will be used.
An upper bound for the number of tokens that can be generated for an evaluation. See the OpenAI API reference for more information.
The maximum number of tokens that can be generated in the evaluation. This value is now deprecated in favor of max_completion_tokens
. See the OpenAI API reference for more information.
What sampling temperature to use, between 0 and 2. See the OpenAI API reference for more information
An alternative to sampling with temperature, called nucleus sampling, wherethe model considers the results of the tokens with top_p probability mass. See the OpenAI API reference for more information.