expert_model
Leverage specialized knowledge by connecting with experts through this tool. Input instructions to receive tailored solutions, track iterations, and enhance decision-making within a collaborative framework.
Instructions
Use this tool to communicate with an expert.
Args: name: The name of the expert to communicate with. Required. instructions: The instructions to send to the expert. Required. output: The answer from the expert based on the instructions. Required. iteration: The number of experts you have consulted so far. Start with 1.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instructions | Yes | ||
iteration | Yes | ||
name | Yes | ||
output | Yes |
Input Schema (JSON Schema)
{
"properties": {
"instructions": {
"title": "Instructions",
"type": "string"
},
"iteration": {
"title": "Iteration",
"type": "integer"
},
"name": {
"title": "Name",
"type": "string"
},
"output": {
"title": "Output",
"type": "string"
}
},
"required": [
"name",
"instructions",
"output",
"iteration"
],
"type": "object"
}