Last active
March 2, 2023 01:05
-
-
Save SeidChr/570592f560f7dad74df2059fb2676c72 to your computer and use it in GitHub Desktop.
Proof of concept for a Powershell Ai ChatBot .. or just an api client. whatever you want to call it :)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# make sure to set your own $apiKey beforehand. | |
function Hey-Gpt { | |
param([string] $Message, [switch]$Reset) | |
if ($Reset -or (-not $global:OpenAiChatMessages)) { | |
$global:OpenAiChatMessages = [System.Collections.ArrayList]::new() | |
} | |
$null = $global:OpenAiChatMessages.Add(@{ "role" = "user"; "content" = $message}) | |
$conversation = @{ "model"="gpt-3.5-turbo"; "messages" = $global:OpenAiChatMessages } | |
$splat = @{ | |
Method = "Post" | |
Body = $conversation | ConvertTo-Json -Depth 10 -Compress | |
Uri = "https://api.openai.com/v1/chat/completions" | |
Headers = @{ Authorization = "Bearer $apiKey" } | |
ContentType = "application/json" | |
} | |
$response = Invoke-RestMethod @splat | |
$responseMessage = $response.choices[0].message | |
$null = $global:OpenAiChatMessages.Add($responseMessage) | |
$responseMessage.content.Replace('\n', [System.Environment]::NewLine).Trim() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment