BOM_Calculation
Calculate the sum of two numbers with the required minimum value of 1, supporting LCA applications on the TianGong-LCA-MCP Server.
Instructions
Calculate sum of two numbers.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
a | Yes | The first number | |
b | Yes | The second number |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"a": {
"description": "The first number",
"minimum": 1,
"type": "number"
},
"b": {
"description": "The second number",
"minimum": 1,
"type": "number"
}
},
"required": [
"a",
"b"
],
"type": "object"
}