mirror of
https://github.com/katanemo/plano.git
synced 2026-04-26 01:06:25 +02:00
32 lines
780 B
JSON
32 lines
780 B
JSON
{
|
|
"messages": [
|
|
{
|
|
"role": "user",
|
|
"content": "Find the area of a triangle"
|
|
}
|
|
],
|
|
"tools": [
|
|
{
|
|
"name": "calculate_triangle_area",
|
|
"description": "Calculate the area of a triangle given its base and height.",
|
|
"parameters": {
|
|
"type": "dict",
|
|
"properties": {
|
|
"base": {
|
|
"type": "integer",
|
|
"description": "The base of the triangle."
|
|
},
|
|
"height": {
|
|
"type": "integer",
|
|
"description": "The height of the triangle."
|
|
},
|
|
"unit": {
|
|
"type": "string",
|
|
"description": "The unit of measure (defaults to 'units' if not specified)"
|
|
}
|
|
},
|
|
"required": ["base", "height"]
|
|
}
|
|
}
|
|
]
|
|
}
|