mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-10 10:31:58 +00:00
19 lines
318 B
Plaintext
19 lines
318 B
Plaintext
![]() |
{
|
||
|
"name": "Sum",
|
||
|
"description": "Sum function",
|
||
|
"parameters": {
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"args": {
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"type": "number"
|
||
|
},
|
||
|
"description": "an array of double values"
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"args"
|
||
|
]
|
||
|
}
|
||
|
}
|