cai/examples/customer_service_streaming/configs/tools/query_docs/tool.json

20 lines
475 B
JSON

{
"type": "function",
"function": {
"name": "query_docs",
"description": "Tool to get information about OpenAI products to help users. This JUST querys the data, it does not respond to user.",
"parameters": {
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "A detailed description of what the user wants to know."
}
},
"required": [
"query"
]
}
}
}