chore: generate
This commit is contained in:
parent
850a0dfe7c
commit
0befd9b049
1 changed files with 42 additions and 1 deletions
|
|
@ -10594,7 +10594,7 @@
|
||||||
"pattern": "^msg_"
|
"pattern": "^msg_"
|
||||||
},
|
},
|
||||||
"prompt": {
|
"prompt": {
|
||||||
"$ref": "#/components/schemas/Prompt"
|
"$ref": "#/components/schemas/PromptInput"
|
||||||
},
|
},
|
||||||
"delivery": {
|
"delivery": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
|
@ -23533,6 +23533,28 @@
|
||||||
"required": ["_tag", "sessionID", "message"],
|
"required": ["_tag", "sessionID", "message"],
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
|
"PromptInput": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"text": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"files": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/components/schemas/PromptInputFileAttachment"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"agents": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"$ref": "#/components/schemas/PromptAgentAttachment"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": ["text"],
|
||||||
|
"additionalProperties": false
|
||||||
|
},
|
||||||
"ConflictError": {
|
"ConflictError": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
|
@ -26957,6 +26979,25 @@
|
||||||
"required": ["id", "projectID", "cost", "tokens", "time", "title", "location"],
|
"required": ["id", "projectID", "cost", "tokens", "time", "title", "location"],
|
||||||
"additionalProperties": false
|
"additionalProperties": false
|
||||||
},
|
},
|
||||||
|
"PromptInputFileAttachment": {
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"uri": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"name": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"description": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"source": {
|
||||||
|
"$ref": "#/components/schemas/PromptSource"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"required": ["uri"],
|
||||||
|
"additionalProperties": false
|
||||||
|
},
|
||||||
"SessionInputAdmitted": {
|
"SessionInputAdmitted": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue