Skip to content

StartAutomating/ollama-powershell

Repository files navigation

Play with AI in PowerShell

Getting Started

Installing ollama-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

Importing ollama-powershell

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

Using ollama-powershell

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

Get-Ollama -Pull

Let's pull down a model:

Get-Ollama -Pull -Model 'tinyllama'

Get-Ollama -Chat

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.'

Calling a model by name

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

About

Ollama PowerShell: Play with AI in PowerShell

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published