delete_assistant_file
Remove a specific file from an assistant by specifying the assistant ID and file ID, ensuring precise file management within the VoiceAI-MCP-VAVicky server.
Instructions
Delete a specific file from an assistant
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assistant_id | Yes | Assistant ID | |
file_id | Yes | File ID |
Input Schema (JSON Schema)
{
"properties": {
"assistant_id": {
"description": "Assistant ID",
"type": "string"
},
"file_id": {
"description": "File ID",
"type": "string"
}
},
"required": [
"assistant_id",
"file_id"
],
"type": "object"
}