Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [0.3.0]

Release Date: 2026-04-30

## πŸ”Œ API

- Wire OpenAI's standard `response_format` field through `qvac serve` (POST `/v1/chat/completions`). The body field is parsed, validated, and forwarded to the SDK as `responseFormat`, enabling structured-output requests (`text` / `json_object` / `json_schema`) over the OpenAI-compatible HTTP surface. Requires `@qvac/sdk` `^0.10.0`. (see PR [#1810](https://github.com/tetherto/qvac/pull/1810)) - See [API changes](./changelog/0.3.0/api.md)

## [0.2.4]

Release Date: 2026-04-27
Expand Down
8 changes: 8 additions & 0 deletions packages/cli/changelog/0.3.0/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog v0.3.0

Release Date: 2026-04-30

## πŸ”Œ API

- Wire OpenAI's standard `response_format` field through `qvac serve` (POST `/v1/chat/completions`). The body field is parsed, validated, and forwarded to the SDK as `responseFormat`, enabling structured-output requests (`text` / `json_object` / `json_schema`) over the OpenAI-compatible HTTP surface. Requires `@qvac/sdk` `^0.10.0`. (see PR [#1810](https://github.com/tetherto/qvac/pull/1810)) - See [API changes](./api.md)

29 changes: 29 additions & 0 deletions packages/cli/changelog/0.3.0/api.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# πŸ”Œ API Changes v0.3.0

## `response_format` support in OpenAI-compat `/v1/chat/completions`

PR: [#1810](https://github.com/tetherto/qvac/pull/1810)

```bash
curl http://localhost:8080/v1/chat/completions -d '{
"model": "qwen-3-0.6b",
"messages": [{ "role": "user", "content": "Give me a person object." }],
"response_format": {
"type": "json_schema",
"json_schema": {
"name": "Person",
"schema": {
"type": "object",
"properties": {
"name": { "type": "string" },
"age": { "type": "integer" }
},
"required": ["name", "age"]
}
}
}
}'
```

---

2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@qvac/cli",
"version": "0.2.4",
"version": "0.3.0",
"description": "Command-line interface for the QVAC ecosystem",
"author": "Tether",
"license": "Apache-2.0",
Expand Down
Loading