View Source Agens.Job.Config (agens v0.1.1)

The Config struct defines the details of a Job.

Fields

  • name - An atom that identifies the Job.
  • description - An optional string to be added to the LM prompt that describes the basic goal of the Job.
  • steps - A list of Agens.Job.Step structs that define the sequence of agent actions to be performed.

Summary

Types

@type t() :: %Agens.Job.Config{
  description: String.t() | nil,
  name: atom(),
  steps: [Agens.Job.Step.t()]
}