Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
Represents an event in the Lunary API for tracking LLM calls and related operations.
{
  "type": "llm",
  "event": "start",
  "runId": "some-unique-id",
  "name": "gpt-4",
  "timestamp": "2022-01-01T00:00:00Z",
  "input": [
    { "role": "user", "content": "Hello world!" }
  ],
  "tags": ["tag1"],
  "extra": { "temperature": 0.5, "max_tokens": 100 }
}Response
Successful ingestion
The response from the ingestion API.