| { |
| "name": "fine_tune_model2", |
| "description": "Fine-tunes a machine learning model using provided training and validation datasets.", |
| "strict": false, |
| "parameters": { |
| "type": "object", |
| "required": [ |
| "files", |
| "model" |
| ], |
| "properties": { |
| "files": { |
| "type": "array", |
| "items": { |
| "type": "object", |
| "required": [ |
| "name", |
| "path", |
| "role" |
| ], |
| "properties": { |
| "name": { |
| "type": "string", |
| "description": "Name of the file" |
| }, |
| "path": { |
| "type": "string", |
| "description": "Path to the file on the server" |
| }, |
| "role": { |
| "type": "string", |
| "description": "Role of the file (training/validation)" |
| } |
| }, |
| "additionalProperties": false |
| }, |
| "description": "List of files used for training and validation" |
| }, |
| "model": { |
| "type": "string", |
| "description": "Identifier for the model to be fine-tuned" |
| } |
| }, |
| "additionalProperties": false |
| } |
| } |
|
|