Skip to content

Commit 9dcf5ab

Browse files
Raise nAssets maximum from 2000 to 3000 in MCP schema
Matches Axis2/C FINBENCH_MAX_ASSETS increase. Enterprise portfolio management systems commonly have 2000+ assets per department. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent c9efc05 commit 9dcf5ab

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • modules/samples/userguide/src/userguide/springbootdemo-tomcat11/resources-axis2/finbench_resources

modules/samples/userguide/src/userguide/springbootdemo-tomcat11/resources-axis2/finbench_resources/services.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"type": "object",
3333
"required": ["nAssets", "weights", "covarianceMatrix"],
3434
"properties": {
35-
"nAssets": {"type": "integer", "minimum": 2, "maximum": 2000, "description": "Number of assets in the portfolio"},
35+
"nAssets": {"type": "integer", "minimum": 2, "maximum": 3000, "description": "Number of assets in the portfolio"},
3636
"weights": {"type": "array", "items": {"type": "number"}, "description": "Portfolio weights. Must sum to 1.0 unless normalizeWeights=true"},
3737
"covarianceMatrix": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "description": "n×n covariance matrix (2D array)"},
3838
"covarianceMatrixFlat": {"type": "array", "items": {"type": "number"}, "description": "Alternative: flattened n×n covariance matrix (row-major, length = nAssets²)"},

0 commit comments

Comments
 (0)