View Source Agens.Job.Config (agens v0.1.3)
The Config struct defines the details of a Job.
Fields
name
- The unique name used to identify the Job.description
- An optional string to be added to the LM prompt that describes the basic goal of the Job.steps
- A list ofAgens.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()] }