Skip to content

Instantly share code, notes, and snippets.

View OSDeploy's full-sized avatar

David Segura - PowerShell MVP OSDeploy

View GitHub Profile
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)
{
<#
.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
#>