list_assistants
Retrieve available OpenAI assistants with their IDs and configurations to select one for use without creating a new assistant.
Instructions
List all available OpenAI assistants associated with the API key configured by the user.
Returns a list of assistants with their IDs, names, and configurations. This can be used to select an assistant to use in the ask_assistant_in_thread tool instead of creating a new one.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"title": "Limit",
"type": "integer"
}
},
"type": "object"
}