diff options
| author | adamdottv <[email protected]> | 2025-05-29 14:04:44 -0500 |
|---|---|---|
| committer | adamdottv <[email protected]> | 2025-05-29 14:04:49 -0500 |
| commit | ce5b3126d31758cb29a1cb32f23b66ef167e52aa (patch) | |
| tree | 2c73389a28deb523e3c9f079d65dd0a8a43827c8 /pkg/client/gen/openapi.json | |
| parent | 26606ccbf7be90a6cd7c4d80aa9a3333cc9db6a8 (diff) | |
| download | opencode-ce5b3126d31758cb29a1cb32f23b66ef167e52aa.tar.gz opencode-ce5b3126d31758cb29a1cb32f23b66ef167e52aa.zip | |
wip: refactoring tui
Diffstat (limited to 'pkg/client/gen/openapi.json')
| -rw-r--r-- | pkg/client/gen/openapi.json | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/pkg/client/gen/openapi.json b/pkg/client/gen/openapi.json index 0b481d209..7cb8e8b9d 100644 --- a/pkg/client/gen/openapi.json +++ b/pkg/client/gen/openapi.json @@ -177,6 +177,50 @@ } } }, + "/session_summarize": { + "post": { + "responses": { + "200": { + "description": "Summarize the session", + "content": { + "application/json": { + "schema": { + "type": "boolean" + } + } + } + } + }, + "operationId": "postSession_summarize", + "parameters": [], + "description": "Summarize the session", + "requestBody": { + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "sessionID": { + "type": "string" + }, + "providerID": { + "type": "string" + }, + "modelID": { + "type": "string" + } + }, + "required": [ + "sessionID", + "providerID", + "modelID" + ] + } + } + } + } + } + }, "/session_chat": { "post": { "responses": { @@ -411,6 +455,9 @@ "cost": { "type": "number" }, + "summary": { + "type": "boolean" + }, "tokens": { "type": "object", "properties": { |
