Skip to content
Open
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
24 changes: 24 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37856,16 +37856,28 @@ components:
description: Identifier of the content for this interaction.
example: "trace-abc-123"
type: string
created_at:
description: Timestamp when the interaction was added to the queue.
example: "2024-01-15T10:30:00Z"
format: date-time
type: string
id:
description: Unique identifier of the interaction.
example: "interaction-456"
type: string
modified_at:
description: Timestamp when the interaction was last updated.
example: "2024-01-15T10:30:00Z"
format: date-time
type: string
type:
$ref: "#/components/schemas/LLMObsInteractionType"
required:
- id
- type
- content_id
- created_at
- modified_at
- annotations
type: object
LLMObsAnnotatedInteractionsDataAttributesResponse:
Expand Down Expand Up @@ -38072,17 +38084,29 @@ components:
description: Identifier of the content for this interaction.
example: "trace-abc-123"
type: string
created_at:
description: Timestamp when the interaction was added to the queue.
example: "2024-01-15T10:30:00Z"
format: date-time
type: string
id:
description: Unique identifier of the interaction.
example: "00000000-0000-0000-0000-000000000000"
type: string
modified_at:
description: Timestamp when the interaction was last updated.
example: "2024-01-15T10:30:00Z"
format: date-time
type: string
type:
$ref: "#/components/schemas/LLMObsInteractionType"
required:
- id
- type
- content_id
- already_existed
- created_at
- modified_at
type: object
LLMObsAnnotationQueueInteractionsDataAttributesRequest:
description: Attributes for adding interactions to an annotation queue.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,18 @@ export class LLMObsAnnotatedInteractionItem {
* Identifier of the content for this interaction.
*/
"contentId": string;
/**
* Timestamp when the interaction was added to the queue.
*/
"createdAt": Date;
/**
* Unique identifier of the interaction.
*/
"id": string;
/**
* Timestamp when the interaction was last updated.
*/
"modifiedAt": Date;
/**
* Type of interaction in an annotation queue.
*/
Expand Down Expand Up @@ -48,11 +56,23 @@ export class LLMObsAnnotatedInteractionItem {
type: "string",
required: true,
},
createdAt: {
baseName: "created_at",
type: "Date",
required: true,
format: "date-time",
},
id: {
baseName: "id",
type: "string",
required: true,
},
modifiedAt: {
baseName: "modified_at",
type: "Date",
required: true,
format: "date-time",
},
type: {
baseName: "type",
type: "LLMObsInteractionType",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,18 @@ export class LLMObsAnnotationQueueInteractionResponseItem {
* Identifier of the content for this interaction.
*/
"contentId": string;
/**
* Timestamp when the interaction was added to the queue.
*/
"createdAt": Date;
/**
* Unique identifier of the interaction.
*/
"id": string;
/**
* Timestamp when the interaction was last updated.
*/
"modifiedAt": Date;
/**
* Type of interaction in an annotation queue.
*/
Expand Down Expand Up @@ -47,11 +55,23 @@ export class LLMObsAnnotationQueueInteractionResponseItem {
type: "string",
required: true,
},
createdAt: {
baseName: "created_at",
type: "Date",
required: true,
format: "date-time",
},
id: {
baseName: "id",
type: "string",
required: true,
},
modifiedAt: {
baseName: "modified_at",
type: "Date",
required: true,
format: "date-time",
},
type: {
baseName: "type",
type: "LLMObsInteractionType",
Expand Down
Loading