get_assistant_files
Retrieve files linked to a specific assistant by providing the assistant ID. Simplify access to associated resources for VoiceAI integrations and custom applications.
Instructions
Get files associated with an assistant
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assistant_id | Yes | Assistant ID |
Input Schema (JSON Schema)
{
"properties": {
"assistant_id": {
"description": "Assistant ID",
"type": "string"
}
},
"required": [
"assistant_id"
],
"type": "object"
}