Created
December 2, 2025 20:19
-
-
Save dfinke/46bf3e30648b97b90f880e53d6f1ae23 to your computer and use it in GitHub Desktop.
Interactive PowerShell AI Chat Script
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
| #Requires -Module PSAISuite | |
| # Install-Module PSAISuite | |
| $messages = @() | |
| while ($true) { | |
| $userQuery = Read-Host "User" | |
| $messages += @{ role = "user"; content = $userQuery } | |
| $response = Invoke-ChatCompletion $messages | |
| $messages += @{ role = "assistant"; content = $response } | |
| Write-Host "AI: $response`n" -ForegroundColor Cyan | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment