{"id":26229027,"url":"https://github.com/startautomating/ollama-powershell","last_synced_at":"2026-03-04T15:03:11.708Z","repository":{"id":280494523,"uuid":"941322065","full_name":"StartAutomating/ollama-powershell","owner":"StartAutomating","description":"Ollama PowerShell:  Play with AI in PowerShell","archived":false,"fork":false,"pushed_at":"2025-03-22T00:15:41.000Z","size":38,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-14T17:17:54.040Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/StartAutomating.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":["StartAutomating"]}},"created_at":"2025-03-02T02:27:58.000Z","updated_at":"2025-05-21T04:32:44.000Z","dependencies_parsed_at":"2025-03-03T19:13:14.432Z","dependency_job_id":"c4568dab-c3a2-4d52-9848-8de299217a61","html_url":"https://github.com/StartAutomating/ollama-powershell","commit_stats":null,"previous_names":["startautomating/ollama-powershell"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/StartAutomating/ollama-powershell","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Follama-powershell","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Follama-powershell/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Follama-powershell/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Follama-powershell/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StartAutomating","download_url":"https://codeload.github.com/StartAutomating/ollama-powershell/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StartAutomating%2Follama-powershell/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30084685,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T13:22:36.021Z","status":"ssl_error","status_checked_at":"2026-03-04T13:20:45.750Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-03-12T21:37:36.480Z","updated_at":"2026-03-04T15:03:11.678Z","avatar_url":"https://github.com/StartAutomating.png","language":"PowerShell","readme":"\u003cdiv align='center'\u003e\n\u003cimg src='Assets/ollama-powershell-animated.svg' alt='ollama-powershell' /\u003e\n\u003ca href='https://www.powershellgallery.com/packages/ollama-powershell/'\u003e\n\u003cimg src='https://img.shields.io/powershellgallery/dt/ollama-powershell' /\u003e\n\u003c/a\u003e\n\u003cbr/\u003e\n\u003ca href='https://github.com/sponsors/StartAutomating'\u003e❤️\u003c/a\u003e\n\u003ca href='https://github.com/StartAutomating/ollama-powershell/stargazers'\u003e⭐\u003c/a\u003e\n\u003c/div\u003e\n\nPlay with AI in PowerShell\n\n\n# Getting Started\n\n## Installing ollama-powershell\n\nYou can install ollama-powershell from the [PowerShell Gallery](https://www.powershellgallery.com/packages/ollama-powershell/)\n\n~~~PowerShell\nInstall-Module -Name ollama-powershell\n~~~\n\nTo force an update, use the  `-Force`\n\n~~~PowerShell\nInstall-Module -Name ollama-powershell -Force\n~~~\n\n## Importing ollama-powershell\n\nOnce ollama-powershell is installed, you can import it by name:\n\n~~~PowerShell\nImport-Module -Name ollama-powershell -PassThru\n~~~\n\nOnce it is loaded, you can get commands from ollama-powershell with Get-Command\n\n~~~PowerShell\nGet-Command -Module ollama-powershell \n~~~\n\nYou can show the syntax of all commands with `Get-Command -Syntax`\n\n~~~PowerShell\nGet-Command -Module ollama-powershell -Syntax\n~~~\n\nYou can get help about a command with `Get-Help`\n\n~~~PowerShell\nGet-Help Get-Ollama\n~~~\n\nYou can show examples for a command with the -Examples\n\n~~~PowerShell\nGet-Help Get-Ollama -Examples\n~~~\n\n## Using ollama-powershell\n\nThere are a few ways to use ollama-powershell:\n\nWithout any parameters, or with unmapped input, `Get-Ollama` will run the `ollama` cli\n\n~~~PowerShell\nGet-Ollama\n~~~\n\nWith PowerShell style parameters, `Get-Ollama` will wrap the [ollama api](https://github.com/ollama/ollama/blob/main/docs/api.md)\n\n### Get-Ollama -Pull\n\nLet's pull down a model:\n\n~~~PowerShell\nGet-Ollama -Pull -Model 'tinyllama'\n~~~\n\n### Get-Ollama -Chat\n\nAnd now let's ask it something:\n\n~~~PowerShell\nGet-Ollama -Model 'tinyllama' -Chat 'Why is the sky blue?','Limit your response to three sentences or less.'\n~~~\n\n### Calling a model by name\n\nIf you have a model installed, you can refer to that model by name.\n\nThis is effectively a shortcut to `ollama run $ModelName`\n\n~~~PowerShell\ntinyllama \"What are you?\"\n~~~\n\nIf you just downloaded a model and this does not work, re-import ollama-powershell with:\n\n~~~PowerShell\nImport-Module ollama-powershell -Force\n~~~\n","funding_links":["https://github.com/sponsors/StartAutomating","https://github.com/sponsors/StartAutomating'"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstartautomating%2Follama-powershell","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstartautomating%2Follama-powershell","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstartautomating%2Follama-powershell/lists"}