-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathopenapi.yaml
492 lines (466 loc) · 14.1 KB
/
openapi.yaml
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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
openapi: 3.1.0
info:
title: Inkeep Search and Chat API
description: Leverage the Inkeep APIs to create your own AI-powered search and chat experiences built on top of your own content.
version: 0.1.0
servers:
- url: https://api.inkeep.com
description: Production server
security:
- api_key: []
tags:
- name: chat_session
description: Create and manage chat sessions for users. Chat history and continuation of chat is automatically done.
paths:
/v0/chat_sessions/chat_results:
post:
summary: Create Chat Session
operationId: create
tags: [chat_session]
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/CreateChatSessionWithChatResultInput'
required: true
x-codeSamples:
- lang: 'typescript'
label: 'create_chat_session'
source: |
import { InkeepAI } from "@inkeep/ai-api";
async function run() {
const sdk = new InkeepAI({
apiKey: "<INKEEP_API_KEY>",
});
const result = await sdk.chatSession.create({
integrationId: "<INKEEP_INTEGRATION_ID>",
chatSession: {
messages: [
{
role: "user",
content: "How do I get started?",
},
],
},
stream: true,
});
/* Example of handling a streamed response */
if (result.chatResultStream == null) {
throw new Error("failed to create stream: received null value");
}
let chatSessionId: string | undefined | null = undefined;
for await (const event of result.chatResultStream) {
if (event.event == "message_chunk") {
console.log("Partial message: " + event.data.contentChunk);
chatSessionId = event.data.chatSessionId;
}
if (event.event == "records_cited") {
console.log("Citations: ", JSON.stringify(event.data.citations, null, 2));
}
}
}
run();
- lang: 'typescript'
label: 'create_chat_session_streamed'
source: |
import { InkeepAI } from "@inkeep/ai-api";
async function run() {
const sdk = new InkeepAI({
apiKey: "<INKEEP_API_KEY>",
});
const result = await sdk.chatSession.create({
integrationId: "<INKEEP_INTEGRATION_ID>",
chatSession: {
messages: [
{
role: "user",
content: "How do I get started?",
},
],
},
stream: true,
});
/* Example of handling a streamed response */
if (result.chatResultStream == null) {
throw new Error("failed to create stream: received null value");
}
let chatSessionId: string | undefined | null = undefined;
for await (const event of result.chatResultStream) {
if (event.event == "message_chunk") {
console.log("Partial message: " + event.data.contentChunk);
chatSessionId = event.data.chatSessionId;
}
if (event.event == "records_cited") {
console.log("Citations: ", JSON.stringify(event.data.citations, null, 2));
}
}
}
run();
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/ChatResult'
text/event-stream:
schema:
$ref: '#/components/schemas/ChatResultStream'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/v0/chat_sessions/{chat_session_id}/chat_results:
post:
summary: Continue Chat Session
operationId: continue
tags: [chat_session]
parameters:
- required: true
schema:
title: Chat Session ID
type: string
name: chat_session_id
in: path
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/ContinueChatSessionWithChatResultInput'
required: true
x-codeSamples:
- lang: 'typescript'
label: 'continue_chat_session'
source: |
import { InkeepAI } from "@inkeep/ai-api";
async function run() {
const sdk = new InkeepAI({
apiKey: "<INKEEP_API_KEY>",
});
const chatSessionId = "<CHAT_SESSION_ID>";
const continuedChat = await sdk.chatSession.continue(chatSessionId, {
integrationId: "<INKEEP_INTEGRATION_ID>",
message: {
role: "user",
content: "What's next?",
},
stream: false,
});
/* Example of handling a non-streamed response */
if (continuedChat.chatResult == null) {
throw new Error("Empty chat result");
}
console.log("Full message:", continuedChat.chatResult.message.content);
console.log("Citations: ", JSON.stringify(continuedChat.chatResult.message.recordsCited, null, 2));
}
run();
- lang: 'typescript'
label: 'continue_chat_session_streamed'
source: |
import { InkeepAI } from "@inkeep/ai-api";
async function run() {
const sdk = new InkeepAI({
apiKey: "<INKEEP_API_KEY>",
});
const chatSessionId = "string";
const continuedChat = await sdk.chatSession.continue(chatSessionId, {
integrationId: "<INKEEP_INTEGRATION_ID>",
message: {
role: "user",
content: "What's next?",
},
stream: false,
});
/* Example of handling a non-streamed response */
if (continuedChat.chatResult == null) {
throw new Error("Empty chat result");
}
console.log("Full message:", continuedChat.chatResult.message.content);
console.log("Citations: ", JSON.stringify(continuedChat.chatResult.message.recordsCited, null, 2));
}
run();
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/ChatResult'
text/event-stream:
schema:
$ref: '#/components/schemas/ChatResultStream'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
components:
securitySchemes:
api_key:
type: http
scheme: bearer
schemas:
ChatResult:
title: Chat Result
required:
- chat_session_id
- message
type: object
properties:
chat_session_id:
title: Chat Session ID
type: string
message:
$ref: '#/components/schemas/AssistantMessage'
ChatResultStream:
title: The event types that can be emitted as part of a streamed Chat Result
oneOf:
- $ref: '#/components/schemas/ChatResultMessageChunkEvent'
- $ref: '#/components/schemas/ChatResultRecordsCitedEvent'
# - $ref: '#/components/schemas/ServerSideEvent'
discriminator:
propertyName: event
mapping:
message_chunk: '#/components/schemas/ChatResultMessageChunkEvent'
records_cited: '#/components/schemas/ChatResultRecordsCitedEvent'
ChatResultMessageChunkEvent:
description: A server-sent event containing a chunk of the message.
type: object
required: [event, data]
properties:
event:
type: string
const: "message_chunk"
data:
$ref: '#/components/schemas/MessageChunk'
ChatResultRecordsCitedEvent:
description: A server-sent event with information about the records cited in the message.
type: object
required: [event, data]
properties:
event:
type: string
const: "records_cited"
data:
$ref: '#/components/schemas/RecordsCited'
ChatSessionInput:
title: Chat Session Input
required:
- messages
type: object
properties:
guidance:
title: Guidance
type: string
nullable: true
context:
title: Context
type: string
nullable: true
messages:
title: Messages
type: array
minItems: 1
maxItems: 1
items:
$ref: '#/components/schemas/Message'
tags:
title: Tags
type: array
items:
type: string
Citation:
title: Citation
required:
- record
type: object
properties:
number:
title: Citation Number
type: integer
record:
$ref: '#/components/schemas/Record'
hit_url:
title: Hit URL
type: string
nullable: true
ContinueChatSessionWithChatResultInput:
title: Continue Chat Session Input
required:
- integration_id
- message
type: object
properties:
integration_id:
title: Integration ID
type: string
message:
$ref: '#/components/schemas/Message'
stream:
title: Stream
type: boolean
default: false
CreateChatSessionWithChatResultInput:
title: Create Chat Session Input
required:
- integration_id
- chat_session
type: object
properties:
integration_id:
title: Integration ID
type: string
chat_session:
$ref: '#/components/schemas/ChatSessionInput'
chat_mode:
title: Chat Mode
oneOf:
- type: string
enum: ["turbo", "auto"]
title: ChatModeOptions
$anchor: ChatModeOptions
- type: string
stream:
title: Stream
type: boolean
default: false
HTTPValidationError:
title: HTTP Validation Error
type: object
properties:
detail:
title: Detail
type: array
items:
$ref: '#/components/schemas/ValidationError'
Message:
oneOf:
- $ref: '#/components/schemas/UserMessage'
- $ref: '#/components/schemas/AssistantMessage'
discriminator:
propertyName: role
mapping:
user: '#/components/schemas/UserMessage'
assistant: '#/components/schemas/AssistantMessage'
UserMessage:
title: User Message
required:
- role
- content
type: object
properties:
role:
type: string
const: "user"
content:
title: Content
type: string
AssistantMessage:
title: Assistant Message
required:
- role
- content
type: object
properties:
role:
type: string
const: "assistant"
content:
title: Content
type: string
records_cited:
$ref: '#/components/schemas/RecordsCited'
MessageChunk:
title: Message Chunk
required:
- content_chunk
type: object
properties:
chat_session_id:
title: Chat Session ID
type: string
nullable: true
content_chunk:
title: Content Chunk
type: string
finish_reason:
oneOf:
- type: string
const: "stop"
- type: string
const: "length"
- type: string
const: "content_filter"
- type: string
enum: ["stop", "length", "content_filter"]
nullable: true
Record:
required:
- type
type: object
properties:
type:
$ref: '#/components/schemas/RecordType'
url:
title: URL
type: string
nullable: true
title:
title: Title
type: string
nullable: true
description:
title: Description
type: string
nullable: true
breadcrumbs:
nullable: true
title: Breadcrumbs
type: array
items:
type: string
RecordsCited:
title: Records Cited
required:
- citations
type: object
properties:
citations:
title: Citations
type: array
items:
$ref: '#/components/schemas/Citation'
RecordType:
title: Record Type
description: The type of record
oneOf:
- enum: [documentation, site, discourse_post, github_issue, github_discussion, stackoverflow_question, discord_forum_post, discord_message, custom_question_answer]
type: string
$anchor: RecordTypeEnumerated
title: RecordTypeEnumerated
- type: string
title: other
ValidationError:
title: ValidationError
required:
- loc
- msg
- type
type: object
properties:
loc:
title: Location
type: array
items:
oneOf:
- type: string
- type: integer
msg:
title: ErrorMessage
type: string
type:
title: Error Type
type: string