interface slash-command { /// A slash command for use in the Assistant. record slash-command { /// The name of the slash command. name: string, /// The description of the slash command. description: string, /// The tooltip text to display for the run button. tooltip-text: string, /// Whether this slash command requires an argument. requires-argument: bool, } }