Check Config Exists
Checks whether a custom eval config with the same name and mapping already exists in a project.
POST
https://api.futureagi.com/tracer/custom-eval-config/check_exists/ Authentication
Request body
project_name
Name of the project to check against. If the project does not exist, the message field indicates this.
project_type
Project type to look up. Defaults to "experiment".
eval_tags
Array of eval tag objects to validate. Each object must contain:
custom_eval_name(string) — proposed config name.eval_name(string) — eval template name.mapping(object) — proposed field mapping.
Response
200 OK exists
true if a conflicting config was found, false otherwise. message
Human-readable explanation of the result.
Errors
400
Missing required fields or invalid eval_tags array.
401
Invalid or missing API credentials.
500
Unexpected server error.