Builds a base set of instructions by combining existing instructions with new ones
// Adding a single instructionconst instructions = await buildDefaultInstructions( { currentInstructions: existingInstructions }, { instructions: newInstruction }); Copy
// Adding a single instructionconst instructions = await buildDefaultInstructions( { currentInstructions: existingInstructions }, { instructions: newInstruction });
BaseInstructionsParams Base configuration
Promise resolving to an array of Instruction
Builds a base set of instructions by combining existing instructions with new ones
Example