v1

latestOpenAPI 3.0.02026-07-141,4077,1665.2 MB
LLM Observability

Create an LLM Observability dataset

Create a new LLM Observability dataset within the specified project.

post/api/v2/llm-obs/v1/{project_id}/datasets

Path parameters

project_idstring required

The ID of the LLM Observability project.

Request body

Example request

{
  "data": {
    "attributes": {
      "name": "My LLM Dataset"
    },
    "type": "datasets"
  }
}

Response

OK

Example response

{
  "data": {
    "attributes": {
      "created_at": "2024-01-15T10:30:00Z",
      "current_version": 1,
      "name": "My LLM Dataset",
      "updated_at": "2024-01-15T10:30:00Z"
    },
    "id": "9f64e5c7-dc5a-45c8-a17c-1b85f0bec97d",
    "type": "datasets"
  }
}