run_systems_model
Execute systems model simulations with specified parameters to generate JSON output containing results as a list of dictionaries. Define model specifications and set rounds for iterative analysis.
Instructions
Run a systems model and return output of list of dictionaries in JSON.
Args: spec: The systems model specification rounds: Number of rounds to run (default: 100)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
rounds | No | ||
spec | Yes |
Input Schema (JSON Schema)
{
"properties": {
"rounds": {
"default": 100,
"title": "Rounds",
"type": "integer"
},
"spec": {
"title": "Spec",
"type": "string"
}
},
"required": [
"spec"
],
"title": "run_systems_modelArguments",
"type": "object"
}