Skip to content

Instantly share code, notes, and snippets.

@dfinke
Created December 2, 2025 20:19
Show Gist options
  • Select an option

  • Save dfinke/46bf3e30648b97b90f880e53d6f1ae23 to your computer and use it in GitHub Desktop.

Select an option

Save dfinke/46bf3e30648b97b90f880e53d6f1ae23 to your computer and use it in GitHub Desktop.
Interactive PowerShell AI Chat Script
#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