mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-10 02:21:01 +00:00
24 lines
489 B
Plaintext
24 lines
489 B
Plaintext
![]() |
{
|
||
|
"name": "Query",
|
||
|
"description": "query function",
|
||
|
"parameters": {
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"query": {
|
||
|
"type": "string",
|
||
|
"description": "query, required"
|
||
|
},
|
||
|
"k": {
|
||
|
"type": "integer",
|
||
|
"description": "top k, optional, default value is 3"
|
||
|
},
|
||
|
"thresold": {
|
||
|
"type": "number",
|
||
|
"description": "thresold, optional, default value is 0.5"
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"query"
|
||
|
]
|
||
|
}
|
||
|
}
|