Instruction Proposer Config
data class InstructionProposerConfig(val useDatasetSummary: Boolean = true, val programAware: Boolean = true, val useTaskDemos: Boolean = true, val numDemosInContext: Int = 3, val useTip: Boolean = true, val setTipRandomly: Boolean = true, val useInstructHistory: Boolean = false, val setHistoryRandomly: Boolean = false)
Configuration for InstructionProposer, toggling which context the meta-LLM receives.
Properties
Link copied to clipboard
maximum number of demonstrations to include when useTaskDemos is on.
Link copied to clipboard
include the agent's program/strategy description and code in the proposal context.
Link copied to clipboard
decide per run, at random, whether to include instruction history.
Link copied to clipboard
pick the tip at random rather than using the neutral default.
Link copied to clipboard
include an LLM-generated summary of the training dataset in the proposal context.
Link copied to clipboard
include previously proposed instructions and their scores as context.
Link copied to clipboard
include few-shot task demonstrations in the proposal context.