The ConversationTag object is used to add tags to conversations, so that providers can quickly identify what a conversation is about in the Nabla Console.
Name | Type | Description |
---|---|---|
id | UUID | A unique identifier. |
type | Type(id: UUID, name: string, created_at: DateTime, color: string, ml_predictable: boolean) | The ConversationTagType object. |
status | "VALID" | "SUGGESTED" | "DISMISSED" | The status of a conversation tag. |
created_at | DateTime | The creation date of this object, in ISO 8601 format. |
model | Model(id: UUID, status: "PENDING" | "TRAINING" | "READY" | "DELETED" | "ERROR", created_at: DateTime, updated_at: DateTime?)? | The ConversationTaggingModel object. |
Example
{
"id": "98FCE1EF-DBCA-41EF-8BC7-4D1621AC07C6",
"type": {
"id": "98FCE1EF-DBCA-41EF-8BC7-4D1621AC07C6",
"name": "DERMATOLOGY",
"created_at": "2022-03-10T19:16:23.456Z",
"color": "#aabbcc",
"ml_predictable": true
},
"status": "VALID",
"created_at": "2022-03-10T19:16:23.456Z",
"model": {
"id": "98FCE1EF-DBCA-41EF-8BC7-4D1621AC07C6",
"status": "READY",
"created_at": "2022-03-10T19:16:23.456Z",
"updated_at": "2022-03-10T19:16:23.456Z"
}
}