## Delete `assistants.delete(strid) -> AssistantDeleteResponse` **delete** `/assistants/{id}` Permanently delete an assistant by its ID. Any future calls referencing this assistant ID will fail. Existing call records that used this assistant are not affected. ### Parameters - `id: str` ### Returns - `class AssistantDeleteResponse: …` - `success: bool` ### Example ```python import os from revox import Revox client = Revox( api_key=os.environ.get("REVOX_API_KEY"), # This is the default and can be omitted ) assistant = client.assistants.delete( "id", ) print(assistant.success) ```