## Instruction `meta.instruction(MetaInstructionParams**kwargs) -> MetaInstructionResponse` **post** `/public/v1/meta/instruction` Queue an instruction event ### Parameters - `instruction: str` ### Returns - `class MetaInstructionResponse: …` - `message: str` - `status: str` ### Example ```python import os from hyperaide import Hyperaide client = Hyperaide( api_key=os.environ.get("HYPERAIDE_API_KEY"), # This is the default and can be omitted ) response = client.meta.instruction( instruction="instruction", ) print(response.message) ```