Add 'apps/core/' from commit 'ea2a7395f4023f5b9fab03e6273db3b64a1181d5'
git-subtree-dir: apps/core git-subtree-mainline: a8963e11e7a5a0059acbc849ce768e1eee80df61 git-subtree-split: ea2a7395f4023f5b9fab03e6273db3b64a1181d5
This commit is contained in:
37
tests/test_tool_schema_parsing_files/all_python_complex.json
Normal file
37
tests/test_tool_schema_parsing_files/all_python_complex.json
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "check_order_status",
|
||||
"description": "Check the status for an order number (integer value).",
|
||||
"parameters": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"order_number": {
|
||||
"type": "integer",
|
||||
"description": "The order number to check on."
|
||||
},
|
||||
"customer_name": {
|
||||
"type": "string",
|
||||
"description": "The name of the customer who placed the order."
|
||||
},
|
||||
"related_tickets": {
|
||||
"type": "array",
|
||||
"description": "A list of ticket numbers related to the order.",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"related_ticket_reasons": {
|
||||
"type": "object",
|
||||
"description": "A dictionary of reasons for the related tickets."
|
||||
},
|
||||
"severity": {
|
||||
"type": "number",
|
||||
"description": "The severity of the request (between 0 and 1)."
|
||||
},
|
||||
"metadata": {
|
||||
"type": "object",
|
||||
"description": "Additional metadata about the order."
|
||||
}
|
||||
},
|
||||
"required": ["order_number", "customer_name", "related_tickets", "related_ticket_reasons", "severity"]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user