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
function Test-PSCloudScriptAzKeyVaultSecret | |
{ | |
[CmdletBinding()] | |
param() | |
Write-Host 'This is a PowerShell function in Azure Key Vault' | |
Write-Verbose 'This is a PowerShell function in Azure Key Vault with the Verbose parameter' | |
} | |
if (Get-Command Test-PSCloudScriptAzKeyVaultSecret) | |
{ |
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
<# | |
.EXAMPLE | |
llm "what is the capital of spain" -provider openai | |
.EXAMPLE | |
llm "what is the capital of spain" -provider anthropic | |
.EXAMPLE | |
llm "what is the capital of spain" -provider gemini | |
#> |
OlderNewer