regen client

This commit is contained in:
Dax Raad
2025-05-27 15:35:48 -04:00
parent ad76fa8616
commit bb6fc2a1fd
2 changed files with 178 additions and 0 deletions

View File

@@ -95,6 +95,64 @@
}
}
},
"/session_list": {
"post": {
"responses": {
"200": {
"description": "List of sessions",
"content": {
"application/json": {
"schema": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"pattern": "^ses"
},
"shareID": {
"type": "string"
},
"title": {
"type": "string"
},
"tokens": {
"type": "object",
"properties": {
"input": {
"type": "number"
},
"output": {
"type": "number"
},
"reasoning": {
"type": "number"
}
},
"required": [
"input",
"output",
"reasoning"
]
}
},
"required": [
"id",
"title",
"tokens"
]
}
}
}
}
}
},
"operationId": "postSession_list",
"parameters": [],
"description": "List all sessions"
}
},
"/session_chat": {
"post": {
"responses": {},