Spaces:
Sleeping
Sleeping
| [ | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "calculate_sum", | |
| "description": "Calculates the sum of a list of numbers.", | |
| "parameters": { | |
| "type": "object", | |
| "properties": { | |
| "numbers": { | |
| "type": "array", | |
| "description": "A list of numbers to be summed from the question." | |
| } | |
| }, | |
| "required": [ | |
| "numbers" | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "retrieve_knowledge", | |
| "description": "Retrieves knowledge from a database with a provided query.", | |
| "parameters": { | |
| "type": "object", | |
| "properties": { | |
| "query": { | |
| "type": "string", | |
| "description": "The query to search for in the vector store." | |
| }, | |
| "n_results": { | |
| "type": "integer", | |
| "description": "The number of results to return. Default is 1." | |
| } | |
| }, | |
| "required": [ | |
| "query" | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "visit_webpage", | |
| "description": "Visits a webpage at the given URL and reads its content as a markdown string.", | |
| "parameters": { | |
| "type": "object", | |
| "properties": { | |
| "url": { | |
| "type": "string", | |
| "description": "The URL of the webpage to visit." | |
| } | |
| }, | |
| "required": [ | |
| "url" | |
| ] | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "get_production_status", | |
| "description": "This tool retrieves the current production status including various metrics such as operating time, unplanned stops, quality rates, availability, and performance indicators. Useful for understanding the overall production health and efficiency.", | |
| "parameters": { | |
| "type": "object", | |
| "properties": {}, | |
| "required": [] | |
| } | |
| } | |
| }, | |
| { | |
| "type": "function", | |
| "function": { | |
| "name": "get_downtimes", | |
| "description": "This tool provide the production downtimes which is useful for understanding production issues and causes. Data contains information about downtimes including their description, duration and causes.", | |
| "parameters": { | |
| "type": "object", | |
| "properties": {}, | |
| "required": [] | |
| } | |
| } | |
| } | |
| ] |