unichat
Engage with an AI assistant to review, evaluate, and respond to proposals or queries by submitting a system and user message for analysis.
Instructions
Chat with an assistant. Example tool use message: Ask the unichat to review and evaluate your proposal.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
messages | Yes | Array of exactly two messages: first a system message defining the task, then a user message with the specific query |
Input Schema (JSON Schema)
{
"properties": {
"messages": {
"description": "Array of exactly two messages: first a system message defining the task, then a user message with the specific query",
"items": {
"properties": {
"content": {
"description": "The content of the message. For system messages, this should define the context or task. For user messages, this should contain the specific query.",
"type": "string"
},
"role": {
"description": "The role of the message sender. Must be either 'system' or 'user'",
"enum": [
"system",
"user"
],
"type": "string"
}
},
"required": [
"role",
"content"
],
"type": "object"
},
"maxItems": 2,
"minItems": 2,
"type": "array"
}
},
"required": [
"messages"
],
"type": "object"
}