Assistant
List assistants
This page shows you how to get a list of the assistants in your project, including their names and statuses.
This feature is in public preview.
List assistants for a project
Use the list_assistants
operation to get the name, status, and metadata for each Assistant in your project as in the following example:
This operation returns a response like the following:
{
"assistants": [
{
"name": "example-assistant",
"instructions": "You are ABC company's assistant and are extremely polite.",
"metadata": {},
"status": "Initializing",
"created_on": "2023-11-07T05:31:56Z",
"updated_on": "2023-11-07T05:31:56Z"
}
]
}
You can use the name
value to check the status of an assistant.
You can list assistants using the Pinecone console.
Was this page helpful?