load_visum_model
Load a Visum model file (.ver) for analysis and operations by specifying the full file path, enabling structured sequential processing and complex problem-solving.
Instructions
Load a Visum model file (.ver) for analysis and operations
Input Schema
Name | Required | Description | Default |
---|---|---|---|
modelPath | Yes | Full path to the Visum model file (.ver) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"modelPath": {
"description": "Full path to the Visum model file (.ver)",
"type": "string"
}
},
"required": [
"modelPath"
],
"type": "object"
}