Skip to content

Instantly share code, notes, and snippets.

@gitlawr
Created September 13, 2024 09:38
Show Gist options
  • Save gitlawr/17232be7c3735d5566ddff6313477dda to your computer and use it in GitHub Desktop.
Save gitlawr/17232be7c3735d5566ddff6313477dda to your computer and use it in GitHub Desktop.
chat.ps1
$body = @{
model = "Qwen"
messages = @(
@{
role = "user"
content = "tell me a joke"
}
)
stream = $false
}
Invoke-RestMethod -Uri "http://localhost:41011/v1/chat/completions" `
-Method Post `
-Headers @{ "Content-Type" = "application/json" } `
-Body ($body | ConvertTo-Json)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment