Created
August 27, 2025 13:13
-
-
Save ericjeker/1235c5b93cb5eaa23f36b880c1ac914e to your computer and use it in GitHub Desktop.
Alias to LLM
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
| # 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