tune-basic-toolset
Version:
Basic toolset for tune
22 lines (21 loc) • 639 B
JSON
{
"description": "this tool sends a message to another ai chat as 'user' role, result of the tool is an 'assistant' reply",
"parameters": {
"type": "object",
"properties": {
"filename": {
"type": "string",
"description": "File name to read/write chat history, should have .chat extension"
},
"system": {
"type": "string",
"description": "Filename that contains system prompt, required once at the beginning of simulation"
},
"text": {
"type": "string",
"description": "User message to send"
}
},
"required": ["filename", "text"]
}
}