Folderr
Official
by folderr-tech
ask_assistant
Ask a question to a specific assistant
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assistant_id | Yes | ID of the assistant to ask | |
question | Yes | Question to ask the assistant |
Input Schema (JSON Schema)
{
"properties": {
"assistant_id": {
"description": "ID of the assistant to ask",
"type": "string"
},
"question": {
"description": "Question to ask the assistant",
"type": "string"
}
},
"required": [
"assistant_id",
"question"
],
"type": "object"
}