create_assistant
Create a new OpenAI assistant with custom instructions and model selection for specific topic discussions. Define the assistant's behavior and capabilities to handle your conversational needs.
Instructions
Create a new OpenAI assistant to talk to about your desired topic.
You can provide instructions that this assistant will follow and specify which of OpenAI's models it will use. NOTE: It is recommended to check existing assistants with list_assistants before creating a new one.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instructions | Yes | ||
model | No | gpt-4o | |
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"instructions": {
"title": "Instructions",
"type": "string"
},
"model": {
"default": "gpt-4o",
"title": "Model",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"name",
"instructions"
],
"type": "object"
}