Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3438,8 +3438,10 @@ paths:
]
description: The new status for the job
results:
type: object
description: Job results (required when status is 'completed')
oneOf:
- $ref: '#/components/schemas/EvaluationClassifyResults'
- $ref: '#/components/schemas/EvaluationScoreResults'
- $ref: '#/components/schemas/EvaluationCompareResults'
error:
type: string
description: Error message
Expand Down Expand Up @@ -6798,6 +6800,7 @@ components:
parameters:
type: object
description: The parameters used for this evaluation
additionalProperties: true
created_at:
type: string
format: date-time
Expand Down Expand Up @@ -6878,7 +6881,16 @@ components:
properties:
aggregated_scores:
type: object
description: Aggregated score statistics
properties:
mean_score:
type: number
format: float
std_score:
type: number
format: float
pass_percentage:
type: number
format: float
generation_fail_count:
type: number
format: integer
Expand Down