Skip to content

Instantly share code, notes, and snippets.

@AlexanderHolmeset
Last active February 9, 2023 16:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AlexanderHolmeset/e9557a9d3517bd161dbb2c5a30e5dfce to your computer and use it in GitHub Desktop.
Save AlexanderHolmeset/e9557a9d3517bd161dbb2c5a30e5dfce to your computer and use it in GitHub Desktop.
Get-AzureOpenAIToken -User $true
$DeploymentName = "TextModel"
$ResourceName = "AzureOpenAIAlex"
$Prompt = "What is microsoft teams?"
$Request = Get-Completion -DeploymentName $DeploymentName -ResourceName $ResourceName -Maxtokens 100 -Prompt $Prompt
"Genetrated text:"
$Request.choices.text
"Token cost"
$Request.usage
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment