Skip to content

Latest commit

 

History

History
28 lines (16 loc) · 1.11 KB

README.md

File metadata and controls

28 lines (16 loc) · 1.11 KB

PsGPT - A PowerShell client for gpt-3.5-turbo

What is gpt-3.5-turbo?

gpt-3.5-turbo is a fork of OpenAI's GPT-3 that is optimized for speed and performance. It is a 3.5 billion parameter model that is trained on a dataset of 1.5 billion web pages. It is available for free to the public via the OpenAI API.

What is PsGPT?

PsGPT is a PowerShell client for gpt-3.5-turbo. It is a wrapper around the OpenAI API Chat that allows you to use gpt-3.5-turbo from PowerShell.

Installation

Prerequisites

PsGPT requires PowerShell 7.1 or later. It is not compatible with PowerShell 5.1 or earlier. API keys are required to use PsGPT. You can get an API key from the OpenAI API page.

Installing PsGPT

PsGPT is available on the PowerShell Gallery. You can install it with the following command:

Install-Module -Name PsGPT

Getting Started

TODO