Play with AI in PowerShell
You can install ollama-powershell from the PowerShell Gallery
Install-Module -Name ollama-powershell
To force an update, use the -Force
Install-Module -Name ollama-powershell -Force
Once ollama-powershell is installed, you can import it by name:
Import-Module -Name ollama-powershell -PassThru
Once it is loaded, you can get commands from ollama-powershell with Get-Command
Get-Command -Module ollama-powershell
You can show the syntax of all commands with Get-Command -Syntax
Get-Command -Module ollama-powershell -Syntax
You can get help about a command with Get-Help
Get-Help Get-Ollama
You can show examples for a command with the -Examples
Get-Help Get-Ollama -Examples
There are a few ways to use ollama-powershell:
Without any parameters, or with unmapped input, Get-Ollama
will run the ollama
cli
Get-Ollama
With PowerShell style parameters, Get-Ollama
will wrap the ollama api
Let's pull down a model:
Get-Ollama -Pull -Model 'tinyllama'
And now let's ask it something:
Get-Ollama -Model 'tinyllama' -Chat 'Why is the sky blue?','Limit your response to three sentences or less.'
If you have a model installed, you can refer to that model by name.
This is effectively a shortcut to ollama run $ModelName
tinyllama "What are you?"
If you just downloaded a model and this does not work, re-import ollama-powershell with:
Import-Module ollama-powershell -Force