/include
Include attachments for next query.
| Sub-command | Usage | Description |
|---|---|---|
| audio_file | /include audio_file <PATH> |
Include an audio from a file with the next query to the AI model |
| image_file | /include image_file <PATH> |
Include an image from a file with the next query to the AI model |
| text_file | /include text_file <PATH> |
Include text from a file with the next query to the AI model |
| any_file | /include any_file <PATH> |
Include any supported file with the next query to the AI model |
| response_json_schema | /include response_json_schema <PATH> |
Specify a JSON schema description for the next response |
audio_file
Usage: /include audio_file <PATH>
Include an audio from a file with the next query to the AI model. Make sure the LLM model supports audio processing.
image_file
Usage: /include image_file <PATH>
Include an image from a file with the next query to the AI model. Make sure the LLM model supports vision/image processing.
text_file
Usage: /include text_file <PATH>
Include text from a file with the next query to the AI model.
any_file
Usage: /include any_file <PATH>
Include any supported file (with its base name) with the next query to the AI model. Make sure the LLM model supports file data along.
response_json_schema
Usage: /include response_json_schema <PATH>
Specify a JSON schema description to tell the model that the next response should be a JSON object matching the schema. The input should be a file with a JSON object defined as follows:
{ \"name\" : <string>, \"description\": <string>, \"strict\": <bool>, \"schema\": <object> }