Skip to content

Instantly share code, notes, and snippets.

@ericjeker
Created August 27, 2025 13:13
Show Gist options
  • Save ericjeker/1235c5b93cb5eaa23f36b880c1ac914e to your computer and use it in GitHub Desktop.
Save ericjeker/1235c5b93cb5eaa23f36b880c1ac914e to your computer and use it in GitHub Desktop.
Alias to LLM
# Add this in $PROFILE
function ai () {
param(
[Parameter(Mandatory=$true)]
[string]$prompt
)
llm -s "You are a helpful assistant inside Powershell. Please answer the following question in a short, precise, concise manner. The shorter the better." "$prompt"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment