create
Generate a custom AI model by specifying a unique name and selecting a base model, enabling tailored AI solutions within the Ollama MCP Server environment.
Instructions
Create a model from a base model (remote only, no Modelfile support)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"from": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"from"
],
"type": "object"
}