Skip to content
Draft
Show file tree
Hide file tree
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
17 changes: 12 additions & 5 deletions .mock/definition/__package__.yml
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ types:
model_version:
type: optional<string>
docs: Machine learning model version
num_tasks_with_annotations: integer
num_tasks_with_annotations: optional<integer>
organization: optional<integer>
overlap_cohort_percentage:
type: optional<integer>
Expand Down Expand Up @@ -3031,6 +3031,9 @@ types:
validation:
min: -2147483648
max: 2147483647
precomputed_agreement:
type: optional<double>
docs: Average agreement score for the task
predictions: optional<list<PredictionRequest>>
total_annotations:
type: optional<integer>
Expand Down Expand Up @@ -3815,9 +3818,7 @@ types:
model_version:
type: optional<string>
docs: Machine learning model version
num_tasks_with_annotations:
type: integer
docs: Tasks with annotations count
num_tasks_with_annotations: optional<integer>
organization: optional<integer>
overlap_cohort_percentage:
type: optional<integer>
Expand Down Expand Up @@ -3920,7 +3921,7 @@ types:
type: integer
docs: Honeypot annotation number in project
id: integer
num_tasks_with_annotations: integer
num_tasks_with_annotations: optional<integer>
queue_done: integer
queue_left: integer
queue_total: string
Expand Down Expand Up @@ -4952,6 +4953,9 @@ types:
validation:
min: -2147483648
max: 2147483647
precomputed_agreement:
type: optional<double>
docs: Average agreement score for the task
predictions:
docs: Predictions for this task
type: list<LseTaskPredictionsItem>
Expand Down Expand Up @@ -5406,6 +5410,9 @@ types:
validation:
min: -2147483648
max: 2147483647
precomputed_agreement:
type: optional<double>
docs: Average agreement score for the task
predictions:
docs: Predictions for this task
type: list<LseTaskSerializerForReviewersPredictionsItem>
Expand Down
2 changes: 1 addition & 1 deletion .mock/definition/annotationHistory.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ service:
the Annotation History panel during labeling.
source:
openapi: openapi/openapi.yaml
display-name: List all annotation history items for annotation
display-name: 👑 List all annotation history items for annotation
request:
name: AnnotationHistoryListRequest
query-parameters:
Expand Down
7 changes: 7 additions & 0 deletions .mock/definition/tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ service:
meta:
key: value
overlap: 1
precomputed_agreement: 1.1
predictions:
- {}
predictions_model_versions: predictions_model_versions
Expand Down Expand Up @@ -349,6 +350,7 @@ service:
meta:
key: value
overlap: 1
precomputed_agreement: 1.1
predictions:
- created_at: '2024-01-15T09:30:00Z'
model:
Expand Down Expand Up @@ -438,6 +440,7 @@ service:
meta:
key: value
overlap: 1
precomputed_agreement: 1.1
predictions:
- created_at: '2024-01-15T09:30:00Z'
model:
Expand Down Expand Up @@ -532,6 +535,9 @@ service:
validation:
min: -2147483648
max: 2147483647
precomputed_agreement:
type: optional<double>
docs: Average agreement score for the task
predictions_score: optional<double>
project:
type: optional<integer>
Expand Down Expand Up @@ -593,6 +599,7 @@ service:
meta:
key: value
overlap: 1
precomputed_agreement: 1.1
predictions:
- created_at: '2024-01-15T09:30:00Z'
model:
Expand Down
26 changes: 24 additions & 2 deletions .mock/openapi/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ paths:
description: ''
security:
- Token: []
summary: List all annotation history items for annotation
summary: "\U0001F451 List all annotation history items for annotation"
tags:
- Annotation History
x-fern-audiences:
Expand Down Expand Up @@ -18909,6 +18909,7 @@ components:
nullable: true
type: string
num_tasks_with_annotations:
nullable: true
readOnly: true
type: integer
organization:
Expand Down Expand Up @@ -22679,6 +22680,11 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
precomputed_agreement:
description: Average agreement score for the task
format: double
nullable: true
type: number
predictions:
default: []
items:
Expand Down Expand Up @@ -23686,7 +23692,7 @@ components:
nullable: true
type: string
num_tasks_with_annotations:
description: Tasks with annotations count
nullable: true
readOnly: true
type: integer
organization:
Expand Down Expand Up @@ -23852,6 +23858,7 @@ components:
readOnly: true
type: integer
num_tasks_with_annotations:
nullable: true
readOnly: true
type: integer
queue_done:
Expand Down Expand Up @@ -25337,6 +25344,11 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
precomputed_agreement:
description: Average agreement score for the task
format: double
nullable: true
type: number
predictions:
description: Predictions for this task
items:
Expand Down Expand Up @@ -25877,6 +25889,11 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
precomputed_agreement:
description: Average agreement score for the task
format: double
nullable: true
type: number
predictions:
description: Predictions for this task
items:
Expand Down Expand Up @@ -28730,6 +28747,11 @@ components:
maximum: 2147483647
minimum: -2147483648
type: integer
precomputed_agreement:
description: Average agreement score for the task
format: double
nullable: true
type: number
predictions_score:
format: double
type: number
Expand Down
Loading
Loading