trainModel
Update existing statistical models with additional sample documents to improve data generation quality for MongoDB-compatible databases.
Instructions
Update an existing statistical model with additional sample documents to improve generation quality
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| documents | Yes | Documents to train with | |
| model | Yes | Model name | 
Input Schema (JSON Schema)
{
  "properties": {
    "documents": {
      "description": "Documents to train with",
      "items": {
        "type": "object"
      },
      "type": "array"
    },
    "model": {
      "description": "Model name",
      "type": "string"
    }
  },
  "required": [
    "model",
    "documents"
  ],
  "type": "object"
}