-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathopenapi.yml
More file actions
304 lines (290 loc) · 8.24 KB
/
openapi.yml
File metadata and controls
304 lines (290 loc) · 8.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
openapi: 3.0.0
info:
title: Capsules API
version: 1.0.0
description: API for managing and interacting with capsules
servers:
- url: https://{capsule-id}.sid.ai
variables:
capsule-id:
default: capsule-id
description: The ID of the capsule
paths:
/data/{id}:
get:
summary: Get item by ID from capsule
tags:
- Data
parameters:
- in: path
name: id
required: true
schema:
type: string
description: The ID of the item to retrieve
- in: query
name: fullText
required: false
schema:
type: boolean
default: false
description: Whether to include the full text content of the item
responses:
'200':
description: Successful response
content:
application/json:
schema:
allOf:
- $ref: '#/components/schemas/ListItemResult'
- type: object
properties:
full_text:
type: string
description: Full text content of the item (only included if fullText=true)
'400':
description: Bad request
'404':
description: Item not found
'500':
description: Internal server error
/data/file:
post:
summary: Add file to capsule
tags:
- Data
requestBody:
content:
multipart/form-data:
schema:
type: object
properties:
file:
type: string
format: binary
description: The file to be added to the capsule
metadata:
type: string
description: JSON string of metadata associated with the file
time_authored:
type: string
format: date-time
description: The time when the file was originally authored (RFC3339 format)
uri:
type: string
description: URI associated with the file
required:
- file
responses:
'202':
description: File accepted
'400':
description: Invalid request
/data/text:
post:
summary: Add text to capsule
tags:
- Data
requestBody:
content:
application/x-www-form-urlencoded:
schema:
type: object
properties:
content:
type: string
description: Text content to add to the capsule
metadata:
type: string
description: JSON string of metadata associated with the text
time_authored:
type: string
format: date-time
description: The time when the text was originally authored (RFC3339 format)
uri:
type: string
description: URI associated with the text
required:
- content
responses:
'202':
description: Text accepted
'400':
description: Invalid request
/data:
get:
summary: List items in capsule
tags:
- Data
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/ListItemResult'
'400':
description: Bad request
'500':
description: Internal server error
delete:
summary: Delete file from capsule
tags:
- Data
parameters:
- in: query
name: item_id
required: true
schema:
type: string
description: The ID of the item to be deleted from the capsule
responses:
'204':
description: Item deleted successfully
'400':
description: Bad request
'500':
description: Internal server error
/query:
post:
summary: Query capsule
tags:
- Query
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/QueryRequest'
responses:
'200':
description: Successful response
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/QueryResult'
'400':
description: Bad request
'500':
description: Internal server error
/chat/completions:
post:
summary: Chat with a capsule
tags:
- Chat
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/ChatCompletionRequest'
responses:
'200':
description: Successful response
'400':
description: Bad request
'500':
description: Internal server error
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
description: Bearer authentication header of the form Bearer `<API_KEY>`. API keys can be generated in the [dashboard](https://dashboard.sid.ai/).
schemas:
ListItemResult:
type: object
properties:
item_id:
type: string
description: Unique identifier for the item
kind:
type: string
description: Type of the item (e.g., 'file' or 'text')
uri:
type: string
description: URI associated with the item
time_added:
type: string
format: date-time
description: Timestamp when the item was added to the capsule
time_authored:
type: string
format: date-time
description: Timestamp when the item was originally authored
metadata:
type: object
description: Additional metadata associated with the item
QueryRequest:
type: object
properties:
query:
type: string
description: The search query string
limit:
type: integer
description: Maximum number of results to return
wishlist:
type: object
description: Additional filtering criteria for the query
required:
- query
QueryResult:
type: object
properties:
item_id:
type: string
description: Unique identifier for the item
idx:
type: integer
description: Index of the chunk within the item
content:
type: string
description: Content of the chunk
uri:
type: string
description: URI associated with the item
kind:
type: string
description: Type of the item (e.g., 'file' or 'text')
file_name:
type: string
description: Name of the file (for file items)
file_type:
type: string
description: MIME type of the file (for file items)
time_added:
type: string
format: date-time
description: Timestamp when the item was added to the capsule
time_authored:
type: string
format: date-time
description: Timestamp when the item was originally authored
score:
type: number
format: float
description: Relevance score of the result
metadata:
type: object
description: Additional metadata associated with the item
ChatCompletionRequest:
type: object
properties:
messages:
type: array
description: Array of messages in the conversation
items:
type: object
properties:
role:
type: string
description: Role of the message sender (e.g., 'user' or 'assistant')
content:
type: string
description: Content of the message
security:
- bearerAuth: []