Skip to contents

Returns configuration information and status of an assistant.

Usage

describe_assistant(assistant_name)

Arguments

assistant_name

Name of the assistant to describe

Value

List with http response, content (assistant configuration), and status_code. Content includes: - name: Assistant name - instructions: Custom instructions (if set) - metadata: Metadata dictionary - status: Assistant status ("Initializing", "Ready", "Terminating", "Failed") - host: Data plane host URL for file and chat operations - created_at: Creation timestamp - updated_at: Last update timestamp

Examples

if (FALSE) { # \dontrun{
describe_assistant("my-assistant")
} # }