-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRemove-Ollama.ps1
47 lines (43 loc) · 1.42 KB
/
Remove-Ollama.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
function Remove-Ollama {
<#
.SYNOPSIS
Remove a model
.DESCRIPTION
Removes an Ollama model.
This is a destructive operation, and will confirm before proceeding.
.LINK
https://github.com/ollama/ollama/blob/main/docs/api.md#delete-a-model
#>
[CmdletBinding(SupportsShouldProcess,ConfirmImpact='High')]
param(
# The name of the model to remove.
[Parameter(Mandatory,ValueFromPipelineByPropertyName,ParameterSetName='/delete')]
[Alias('Model','LanguageModel')]
[string]
$ModelName,
# The url to the Ollama API.
[Parameter(ValueFromPipelineByPropertyName)]
[uri]
$OllamaApi = "http://$([ipaddress]::Loopback):11434/api"
)
process {
$parameterSet = $PSCmdlet.ParameterSetName
$invokeSplat = [Ordered]@{
Uri = $OllamaApi, $parameterSet -join '/' -replace '/{2,}','/' -replace ':/','://'
}
Write-Verbose "$($invokeSplat.Uri)"
switch ($parameterSet) {
'/delete' {
$invokeSplat.Method = 'DELETE'
$invokeSplat.Body = @{model = $ModelName} | ConvertTo-Json
if ($WhatIfPreference) {
return $invokeSplat
}
if (-not $PSCmdlet.ShouldProcess("Delete model $modelName")) {
return
}
Invoke-RestMethod @invokeSplat
}
}
}
}