Get version
Gets a version of Ollama
Function GetVersion(Val URL, Val AdditionalHeaders = "") Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
URL | --url | String | ✔ | Ollama server URL |
AdditionalHeaders | --headers | Map Of KeyAndValue | ✖ | Additional request headers, if necessary |
Returns: Map Of KeyAndValue - Processing result
tip
Method at API documentation: Version
1C:Enterprise/OneScript code example
URL = "https://api.athenaeum.digital/ollama";
Token = "10KO-82..."; // Authorization - not part API Ollama
AdditionalHeaders = New Map;
AdditionalHeaders.Insert("Authorization", StrTemplate("Bearer %1", Token));
Result = OPI_Ollama.GetVersion(URL, AdditionalHeaders);
- Bash
- CMD/Bat
# JSON data can also be passed as a path to a .json file
oint ollama GetVersion \
--url "https://api.athenaeum.digital/ollama" \
--headers "{'Authorization':'Bearer ***'}"
:: JSON data can also be passed as a path to a .json file
oint ollama GetVersion ^
--url "https://api.athenaeum.digital/ollama" ^
--headers "{'Authorization':'Bearer ***'}"
Result
{
"version": "0.6.6"
}