## Instruction `client.meta.instruction(MetaInstructionParamsbody, RequestOptionsoptions?): MetaInstructionResponse` **post** `/public/v1/meta/instruction` Queue an instruction event ### Parameters - `body: MetaInstructionParams` - `instruction: string` ### Returns - `MetaInstructionResponse` - `message: string` - `status: string` ### Example ```typescript import Hyperaide from 'hyperaide'; const client = new Hyperaide({ apiKey: process.env['HYPERAIDE_API_KEY'], // This is the default and can be omitted }); const response = await client.meta.instruction({ instruction: 'instruction' }); console.log(response.message); ```