Create model
Creates a new model with the specified settings
Function CreateModel(Val URL, Val Model, Val Settings, Val AdditionalHeaders = "") Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
URL | --url | String | ✔ | Ollama server URL |
Model | --model | String | ✔ | Models name |
Settings | --settings | Structure Of KeyAndValue | ✔ | Model settings. See GetModelSettingsStructure |
AdditionalHeaders | --headers | Map Of KeyAndValue | ✖ | Additional request headers, if necessary |
Returns: Map Of KeyAndValue - Processing result
tip
Method at API documentation: Create a Model
1C:Enterprise/OneScript code example
URL = "https://api.athenaeum.digital/ollama";
Token = "10KO-82..."; // Authorization - not part API Ollama
Model = "mario";
AdditionalHeaders = New Map;
AdditionalHeaders.Insert("Authorization", StrTemplate("Bearer %1", Token));
Settings = New Structure("from,system", "tinyllama", "You are Mario from Super Mario Bros.");
Result = OPI_Ollama.CreateModel(URL, Model, Settings, AdditionalHeaders);
- Bash
- CMD/Bat
# JSON data can also be passed as a path to a .json file
oint ollama CreateModel \
--url "https://api.athenaeum.digital/ollama" \
--model "mario" \
--settings "{'from':'tinyllama','system':'You are Mario from Super Mario Bros.'}" \
--headers "{'Authorization':'Bearer ***'}"
:: JSON data can also be passed as a path to a .json file
oint ollama CreateModel ^
--url "https://api.athenaeum.digital/ollama" ^
--model "mario" ^
--settings "{'from':'tinyllama','system':'You are Mario from Super Mario Bros.'}" ^
--headers "{'Authorization':'Bearer ***'}"
Result
{
"status": "success"
}