display-fact
Quickly present concise factual answers in LLM chats using this tool. Input a description and a short fact to display clear, accurate information in a widget format.
Instructions
Display a simple fact. Should be used when answering a users question that has a short factual answer. You don't need to say anything else after answering with this tool. Example: { description: 'The capital of France', fact: 'Paris' }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | Yes | A description of the fact | |
| fact | Yes | The fact to display. Should be short and concise. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"description": {
"description": "A description of the fact",
"type": "string"
},
"fact": {
"description": "The fact to display. Should be short and concise.",
"type": "string"
}
},
"required": [
"description",
"fact"
],
"type": "object"
}