create_custom_metric
Generate custom metric tensors using specified components and symbols for symbolic algebra tasks. Ideal for advanced mathematical modeling and analysis.
Instructions
Creates a custom metric tensor from provided components and symbols.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
components | Yes | ||
config | No | ll | |
symbols | Yes |
Input Schema (JSON Schema)
{
"properties": {
"components": {
"items": {
"items": {
"type": "string"
},
"type": "array"
},
"title": "Components",
"type": "array"
},
"config": {
"default": "ll",
"enum": [
"ll",
"uu"
],
"title": "Config",
"type": "string"
},
"symbols": {
"items": {
"type": "string"
},
"title": "Symbols",
"type": "array"
}
},
"required": [
"components",
"symbols"
],
"title": "create_custom_metricArguments",
"type": "object"
}