TUI app-server

This commit is contained in:
pakrym-oai
2026-02-23 08:31:57 -08:00
parent e8949f4507
commit 10ed8d6a42
116 changed files with 9136 additions and 928 deletions

View File

@@ -0,0 +1,49 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"CustomPrompt": {
"properties": {
"argumentHint": {
"type": [
"string",
"null"
]
},
"content": {
"type": "string"
},
"description": {
"type": [
"string",
"null"
]
},
"name": {
"type": "string"
},
"path": {
"type": "string"
}
},
"required": [
"content",
"name",
"path"
],
"type": "object"
}
},
"properties": {
"data": {
"items": {
"$ref": "#/definitions/CustomPrompt"
},
"type": "array"
}
},
"required": [
"data"
],
"title": "CustomPromptListResponse",
"type": "object"
}