ExAtlas.Spec.Job (ExAtlas v0.5.0)

Copy Markdown View Source

Normalized representation of a serverless inference job.

Summary

Types

status()

@type status() ::
  :in_queue | :in_progress | :completed | :failed | :cancelled | :timed_out

t()

@type t() :: %ExAtlas.Spec.Job{
  created_at: DateTime.t() | nil,
  delay_time_ms: non_neg_integer() | nil,
  endpoint: String.t() | nil,
  error: term(),
  execution_time_ms: non_neg_integer() | nil,
  id: String.t(),
  output: term(),
  provider: atom(),
  raw: map(),
  status: status()
}