-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Expand file tree
/
Copy pathcopilot.ts
More file actions
775 lines (699 loc) · 22 KB
/
Copy pathcopilot.ts
File metadata and controls
775 lines (699 loc) · 22 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
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
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
import { z } from 'zod'
import { type ContractJsonResponse, defineRouteContract } from '@/lib/api/contracts/types'
import { cleanedWorkflowStateSchema } from '@/lib/api/contracts/workflows'
import {
ASYNC_TOOL_CONFIRMATION_STATUS,
type AsyncConfirmationStatus,
} from '@/lib/copilot/async-runs/lifecycle'
export const copilotApiKeySchema = z.object({
id: z.string(),
displayKey: z.string(),
name: z.string().nullable(),
createdAt: z.string().nullable(),
lastUsed: z.string().nullable(),
})
export type CopilotApiKey = z.output<typeof copilotApiKeySchema>
export const deleteCopilotApiKeyQuerySchema = z.object({
id: z.string().min(1),
})
export const generateCopilotApiKeyBodySchema = z.object({
name: z.string().min(1, 'Name is required').max(255, 'Name is too long'),
})
export const submitCopilotFeedbackBodySchema = z.object({
chatId: z.string().uuid('Chat ID must be a valid UUID'),
userQuery: z.string().min(1, 'User query is required'),
agentResponse: z.string().min(1, 'Agent response is required'),
isPositiveFeedback: z.boolean(),
feedback: z.string().optional(),
workflowYaml: z.string().optional(),
})
export type SubmitCopilotFeedbackBody = z.input<typeof submitCopilotFeedbackBodySchema>
export const copilotCredentialsQuerySchema = z.object({})
export const copilotConfirmBodySchema = z.object({
toolCallId: z.string().min(1, 'Tool call ID is required'),
status: z.enum(
Object.values(ASYNC_TOOL_CONFIRMATION_STATUS) as [
AsyncConfirmationStatus,
...AsyncConfirmationStatus[],
],
{ error: 'Invalid notification status' }
),
message: z.string().optional(),
data: z.unknown().optional(),
})
export type CopilotConfirmBody = z.input<typeof copilotConfirmBodySchema>
export const createWorkflowCopilotChatBodySchema = z.object({
workspaceId: z.string().min(1),
workflowId: z.string().min(1),
})
export type CreateWorkflowCopilotChatBody = z.input<typeof createWorkflowCopilotChatBodySchema>
export const copilotTrainingExampleBodySchema = z.object({
json: z.string().min(1, 'JSON string is required'),
title: z.string().min(1, 'Title is required'),
tags: z.array(z.string()).optional(),
metadata: z.record(z.string(), z.unknown()).optional(),
})
export type CopilotTrainingExampleBody = z.input<typeof copilotTrainingExampleBodySchema>
const copilotTrainingOperationSchema = z.object({
operation_type: z.string(),
block_id: z.string(),
params: z.record(z.string(), z.unknown()).optional(),
})
export const copilotTrainingDataBodySchema = z.object({
title: z.string().min(1, 'Title is required'),
prompt: z.string().min(1, 'Prompt is required'),
input: z.record(z.string(), z.unknown()),
output: z.record(z.string(), z.unknown()),
operations: z.array(copilotTrainingOperationSchema),
})
export type CopilotTrainingDataBody = z.input<typeof copilotTrainingDataBodySchema>
export const renameCopilotChatBodySchema = z.object({
chatId: z.string().min(1),
title: z.string().min(1).max(200),
})
export type RenameCopilotChatBody = z.input<typeof renameCopilotChatBodySchema>
const copilotResourceTypeSchema = z.enum([
'table',
'file',
'workflow',
'knowledgebase',
'folder',
'scheduledtask',
'log',
])
export const addCopilotChatResourceBodySchema = z.object({
chatId: z.string(),
resource: z.object({
type: copilotResourceTypeSchema,
id: z.string(),
title: z.string(),
}),
})
export type AddCopilotChatResourceBody = z.input<typeof addCopilotChatResourceBodySchema>
export const removeCopilotChatResourceBodySchema = z.object({
chatId: z.string(),
resourceType: copilotResourceTypeSchema,
resourceId: z.string(),
})
export type RemoveCopilotChatResourceBody = z.input<typeof removeCopilotChatResourceBodySchema>
export const reorderCopilotChatResourcesBodySchema = z.object({
chatId: z.string(),
resources: z.array(
z.object({
type: copilotResourceTypeSchema,
id: z.string(),
title: z.string(),
})
),
})
export type ReorderCopilotChatResourcesBody = z.input<typeof reorderCopilotChatResourcesBodySchema>
export const revertCopilotCheckpointBodySchema = z.object({
checkpointId: z.string().min(1),
})
export type RevertCopilotCheckpointBody = z.input<typeof revertCopilotCheckpointBodySchema>
export const copilotChatAbortBodySchema = z.object({
streamId: z.string().optional(),
chatId: z.string().optional(),
})
export type CopilotChatAbortBody = z.input<typeof copilotChatAbortBodySchema>
export const copilotChatGetQuerySchema = z
.object({
workflowId: z.string().optional(),
workspaceId: z.string().optional(),
chatId: z.string().optional(),
})
.passthrough()
export const copilotModelsQuerySchema = z.object({})
export const createCopilotCheckpointBodySchema = z.object({
workflowId: z.string(),
chatId: z.string(),
messageId: z.string().optional(),
workflowState: z.string(),
})
export type CreateCopilotCheckpointBody = z.input<typeof createCopilotCheckpointBodySchema>
export const listCopilotCheckpointsQuerySchema = z.object({
chatId: z.string({ error: 'chatId is required' }).min(1, 'chatId is required'),
})
export type ListCopilotCheckpointsQuery = z.input<typeof listCopilotCheckpointsQuerySchema>
export const copilotChatStreamQuerySchema = z.object({
streamId: z.string().optional().default(''),
after: z.string().optional().default(''),
batch: z
.string()
.optional()
.transform((value) => value === 'true'),
})
const storedToolCallSchema = z
.object({
id: z.string().optional(),
name: z.string().optional(),
state: z.string().optional(),
params: z.record(z.string(), z.unknown()).optional(),
result: z
.object({
success: z.boolean(),
output: z.unknown().optional(),
error: z.string().optional(),
})
.optional(),
display: z
.object({
text: z.string().optional(),
title: z.string().optional(),
phaseLabel: z.string().optional(),
})
.optional(),
calledBy: z.string().optional(),
durationMs: z.number().optional(),
error: z.string().optional(),
})
.nullable()
const copilotContentBlockSchema = z.object({
type: z.string(),
lane: z.enum(['main', 'subagent']).optional(),
content: z.string().optional(),
channel: z.enum(['assistant', 'thinking']).optional(),
phase: z.enum(['call', 'args_delta', 'result']).optional(),
kind: z.enum(['subagent', 'structured_result', 'subagent_result']).optional(),
lifecycle: z.enum(['start', 'end']).optional(),
status: z.enum(['complete', 'error', 'cancelled']).optional(),
parentToolCallId: z.string().optional(),
toolCall: storedToolCallSchema.optional(),
timestamp: z.number().optional(),
endedAt: z.number().optional(),
})
export const copilotChatStopBodySchema = z.object({
chatId: z.string(),
streamId: z.string(),
content: z.string(),
contentBlocks: z.array(copilotContentBlockSchema).optional(),
requestId: z.string().optional(),
})
export type CopilotChatStopBody = z.input<typeof copilotChatStopBodySchema>
export const deleteCopilotChatBodySchema = z.object({
chatId: z.string(),
})
export type DeleteCopilotChatBody = z.input<typeof deleteCopilotChatBodySchema>
const copilotPersistedMessageSchema = z
.object({
id: z.string(),
role: z.enum(['user', 'assistant', 'system']),
content: z.string(),
timestamp: z.string(),
toolCalls: z.array(z.any()).optional(),
contentBlocks: z.array(z.any()).optional(),
fileAttachments: z
.array(
z.object({
id: z.string(),
key: z.string(),
filename: z.string(),
media_type: z.string(),
size: z.number(),
})
)
.optional(),
contexts: z.array(z.any()).optional(),
citations: z.array(z.any()).optional(),
errorType: z.string().optional(),
})
.passthrough()
export const updateCopilotMessagesBodySchema = z.object({
chatId: z.string(),
messages: z.array(copilotPersistedMessageSchema),
planArtifact: z.string().nullable().optional(),
config: z
.object({
mode: z.string().optional(),
model: z.string().optional(),
})
.nullable()
.optional(),
})
export type UpdateCopilotMessagesBody = z.input<typeof updateCopilotMessagesBodySchema>
export const validateCopilotApiKeyBodySchema = z.object({
userId: z.string().min(1, 'userId is required'),
/**
* Originating workspace. Used to enforce per-member org-workspace credit limits
* at mothership/copilot request time. Required: the Go mothership always resolves
* a workspace for a chat request, so a missing value must fail closed (block the
* request) rather than silently skip the per-member gate.
*/
workspaceId: z.string().min(1),
})
export type ValidateCopilotApiKeyBody = z.input<typeof validateCopilotApiKeyBodySchema>
export const listCopilotApiKeysContract = defineRouteContract({
method: 'GET',
path: '/api/copilot/api-keys',
response: {
mode: 'json',
schema: z.object({
keys: z.array(copilotApiKeySchema),
}),
},
})
export const copilotChatListItemSchema = z.object({
id: z.string(),
title: z.string().nullable(),
workflowId: z.string().nullable().optional(),
workspaceId: z.string().nullable().optional(),
activeStreamId: z.string().nullable(),
updatedAt: z.string().nullable(),
})
export type CopilotChatListItem = z.output<typeof copilotChatListItemSchema>
export const listCopilotChatsContract = defineRouteContract({
method: 'GET',
path: '/api/copilot/chats',
response: {
mode: 'json',
schema: z.object({
success: z.literal(true),
chats: z.array(copilotChatListItemSchema),
}),
},
})
export const generateCopilotApiKeyContract = defineRouteContract({
method: 'POST',
path: '/api/copilot/api-keys/generate',
body: generateCopilotApiKeyBodySchema,
response: {
mode: 'json',
schema: z.object({
success: z.literal(true),
key: z.object({
id: z.string(),
apiKey: z.string(),
}),
}),
},
})
export type GenerateCopilotApiKeyResult = ContractJsonResponse<typeof generateCopilotApiKeyContract>
export const deleteCopilotApiKeyContract = defineRouteContract({
method: 'DELETE',
path: '/api/copilot/api-keys',
query: deleteCopilotApiKeyQuerySchema,
response: {
mode: 'json',
schema: z.object({
success: z.literal(true),
}),
},
})
export const submitCopilotFeedbackContract = defineRouteContract({
method: 'POST',
path: '/api/copilot/feedback',
body: submitCopilotFeedbackBodySchema,
response: {
mode: 'json',
schema: z.object({
success: z.literal(true),
feedbackId: z.string(),
message: z.string(),
metadata: z.object({
requestId: z.string(),
duration: z.number(),
}),
}),
},
})
export type SubmitCopilotFeedbackResult = ContractJsonResponse<typeof submitCopilotFeedbackContract>
const successFlagSchema = z.object({ success: z.literal(true) })
const copilotCheckpointSchema = z.object({
id: z.string(),
userId: z.string(),
workflowId: z.string(),
chatId: z.string(),
messageId: z.string().nullable().optional(),
createdAt: z.string().nullable(),
updatedAt: z.string().nullable(),
})
const copilotChatResourceSchema = z.object({
type: copilotResourceTypeSchema,
id: z.string(),
title: z.string(),
})
const copilotAvailableModelSchema = z.object({
id: z.string(),
friendlyName: z.string(),
provider: z.string(),
})
const copilotChatGetChatSchema = z
.object({
id: z.string(),
title: z.string().nullable(),
model: z.string().nullable(),
messages: z.array(z.unknown()),
messageCount: z.number(),
planArtifact: z.unknown().nullable(),
config: z.unknown().nullable(),
activeStreamId: z.string().nullable().optional(),
resources: z.array(z.unknown()).optional(),
createdAt: z.string().nullable(),
updatedAt: z.string().nullable(),
streamSnapshot: z
.object({
events: z.array(z.unknown()),
previewSessions: z.array(z.unknown()),
status: z.string(),
})
.optional(),
})
.passthrough()
const copilotChatGetListItemSchema = z
.object({
id: z.string(),
title: z.string().nullable(),
model: z.string().nullable(),
createdAt: z.string().nullable(),
updatedAt: z.string().nullable(),
})
.passthrough()
const copilotConnectedCredentialSchema = z.object({
id: z.string(),
name: z.string(),
provider: z.string(),
serviceName: z.string(),
lastUsed: z.string(),
isDefault: z.boolean(),
})
const copilotNotConnectedServiceSchema = z.object({
providerId: z.string(),
name: z.string(),
description: z.string(),
baseProvider: z.string(),
})
const copilotCredentialsResultSchema = z.object({
oauth: z.object({
connected: z.object({
credentials: z.array(copilotConnectedCredentialSchema),
total: z.number(),
}),
notConnected: z.object({
services: z.array(copilotNotConnectedServiceSchema),
total: z.number(),
}),
}),
environment: z.object({
variableNames: z.array(z.string()),
count: z.number(),
personalVariables: z.array(z.string()),
workspaceVariables: z.array(z.string()),
conflicts: z.array(z.string()),
}),
})
export const copilotCredentialsContract = defineRouteContract({
method: 'GET',
path: '/api/copilot/credentials',
query: copilotCredentialsQuerySchema,
response: {
mode: 'json',
schema: z.object({
success: z.literal(true),
result: copilotCredentialsResultSchema,
}),
},
})
export const validateCopilotApiKeyContract = defineRouteContract({
method: 'POST',
path: '/api/copilot/api-keys/validate',
body: validateCopilotApiKeyBodySchema,
response: { mode: 'empty' },
})
export const validateCopilotByokBodySchema = z.object({
workspaceId: z.string().min(1, 'workspaceId is required'),
userId: z.string().min(1, 'userId is required'),
})
export type ValidateCopilotByokBody = z.input<typeof validateCopilotByokBodySchema>
/**
* Server-to-server entitlement gate called by the mothership (Go) before it
* uses a workspace's own provider key. Empty 200/401/403 responses signal the
* outcome; the Go caller fails closed to hosted keys on anything but a 200.
*/
export const validateCopilotByokContract = defineRouteContract({
method: 'POST',
path: '/api/copilot/byok/validate',
body: validateCopilotByokBodySchema,
response: { mode: 'empty' },
})
export const listCopilotByokKeysQuerySchema = z.object({
workspaceId: z.string().min(1, 'workspaceId is required'),
})
export type ListCopilotByokKeysQuery = z.input<typeof listCopilotByokKeysQuerySchema>
export const upsertCopilotByokKeyBodySchema = z.object({
workspaceId: z.string().min(1, 'workspaceId is required'),
provider: z.string().min(1, 'provider is required'),
apiKey: z.string().min(1, 'apiKey is required'),
})
export type UpsertCopilotByokKeyBody = z.input<typeof upsertCopilotByokKeyBodySchema>
export const deleteCopilotByokKeyQuerySchema = z.object({
workspaceId: z.string().min(1, 'workspaceId is required'),
provider: z.string().min(1, 'provider is required'),
})
export type DeleteCopilotByokKeyQuery = z.input<typeof deleteCopilotByokKeyQuerySchema>
/**
* Superuser-gated proxies to the copilot's `/api/admin/byok` endpoints. The
* responses are owned by the copilot service and forwarded verbatim.
*/
export const listCopilotByokKeysContract = defineRouteContract({
method: 'GET',
path: '/api/copilot/byok',
query: listCopilotByokKeysQuerySchema,
response: {
mode: 'json',
// untyped-response: forwards the copilot /api/admin/byok response unchanged; shape is owned by the copilot service
schema: z.unknown(),
},
})
export const upsertCopilotByokKeyContract = defineRouteContract({
method: 'POST',
path: '/api/copilot/byok',
body: upsertCopilotByokKeyBodySchema,
response: {
mode: 'json',
// untyped-response: forwards the copilot /api/admin/byok response unchanged; shape is owned by the copilot service
schema: z.unknown(),
},
})
export const deleteCopilotByokKeyContract = defineRouteContract({
method: 'DELETE',
path: '/api/copilot/byok',
query: deleteCopilotByokKeyQuerySchema,
response: {
mode: 'json',
// untyped-response: forwards the copilot /api/admin/byok response unchanged; shape is owned by the copilot service
schema: z.unknown(),
},
})
export const createWorkflowCopilotChatContract = defineRouteContract({
method: 'POST',
path: '/api/copilot/chats',
body: createWorkflowCopilotChatBodySchema,
response: {
mode: 'json',
schema: z.object({
success: z.literal(true),
id: z.string(),
}),
},
})
export const createCopilotCheckpointContract = defineRouteContract({
method: 'POST',
path: '/api/copilot/checkpoints',
body: createCopilotCheckpointBodySchema,
response: {
mode: 'json',
schema: z.object({
success: z.literal(true),
checkpoint: copilotCheckpointSchema,
}),
},
})
export const listCopilotCheckpointsContract = defineRouteContract({
method: 'GET',
path: '/api/copilot/checkpoints',
query: listCopilotCheckpointsQuerySchema,
response: {
mode: 'json',
schema: z.object({
success: z.literal(true),
checkpoints: z.array(copilotCheckpointSchema),
}),
},
})
export const copilotConfirmContract = defineRouteContract({
method: 'POST',
path: '/api/copilot/confirm',
body: copilotConfirmBodySchema,
response: {
mode: 'json',
schema: z.object({
success: z.literal(true),
message: z.string(),
toolCallId: z.string(),
status: z.string(),
}),
},
})
export const copilotModelsContract = defineRouteContract({
method: 'GET',
path: '/api/copilot/models',
query: copilotModelsQuerySchema,
response: {
mode: 'json',
schema: z.object({
success: z.literal(true),
models: z.array(copilotAvailableModelSchema),
}),
},
})
export const addCopilotChatResourceContract = defineRouteContract({
method: 'POST',
path: '/api/copilot/chat/resources',
body: addCopilotChatResourceBodySchema,
response: {
mode: 'json',
schema: z.object({
success: z.literal(true),
resources: z.array(copilotChatResourceSchema).optional(),
}),
},
})
export const reorderCopilotChatResourcesContract = defineRouteContract({
method: 'PATCH',
path: '/api/copilot/chat/resources',
body: reorderCopilotChatResourcesBodySchema,
response: {
mode: 'json',
schema: z.object({
success: z.literal(true),
resources: z.array(copilotChatResourceSchema),
}),
},
})
export const removeCopilotChatResourceContract = defineRouteContract({
method: 'DELETE',
path: '/api/copilot/chat/resources',
body: removeCopilotChatResourceBodySchema,
response: {
mode: 'json',
schema: z.object({
success: z.literal(true),
resources: z.array(copilotChatResourceSchema),
}),
},
})
/**
* Forwards the agent indexer's free-form JSON response.
* Shape varies by upstream version.
*/
export const copilotTrainingDataContract = defineRouteContract({
method: 'POST',
path: '/api/copilot/training',
body: copilotTrainingDataBodySchema,
response: {
mode: 'json',
// untyped-response: forwards external agent indexer /operations/add response unchanged; shape varies by upstream version
schema: z.unknown(),
},
})
/**
* Forwards the agent indexer's free-form JSON response.
* Shape varies by upstream version.
*/
export const copilotTrainingExampleContract = defineRouteContract({
method: 'POST',
path: '/api/copilot/training/examples',
body: copilotTrainingExampleBodySchema,
response: {
mode: 'json',
// untyped-response: forwards external agent indexer /examples/add response unchanged; shape varies by upstream version
schema: z.unknown(),
},
})
export const renameCopilotChatContract = defineRouteContract({
method: 'PATCH',
path: '/api/copilot/chat/rename',
body: renameCopilotChatBodySchema,
response: { mode: 'json', schema: successFlagSchema },
})
export const revertCopilotCheckpointContract = defineRouteContract({
method: 'POST',
path: '/api/copilot/checkpoints/revert',
body: revertCopilotCheckpointBodySchema,
response: {
mode: 'json',
schema: z.object({
success: z.literal(true),
workflowId: z.string(),
checkpointId: z.string(),
revertedAt: z.string(),
checkpoint: z.object({
id: z.string(),
workflowState: cleanedWorkflowStateSchema,
}),
}),
},
})
export const copilotChatAbortContract = defineRouteContract({
method: 'POST',
path: '/api/copilot/chat/abort',
body: copilotChatAbortBodySchema,
response: {
mode: 'json',
schema: z.object({
aborted: z.boolean(),
settled: z.boolean().optional(),
// True when the stream did not settle within the grace window and the
// chat stream lock was force-broken so the chat is immediately usable.
forceReleased: z.boolean().optional(),
}),
},
})
export const copilotChatStreamContract = defineRouteContract({
method: 'GET',
path: '/api/copilot/chat/stream',
query: copilotChatStreamQuerySchema,
response: { mode: 'stream' },
})
export const copilotChatStopContract = defineRouteContract({
method: 'POST',
path: '/api/copilot/chat/stop',
body: copilotChatStopBodySchema,
response: { mode: 'json', schema: successFlagSchema },
})
export const copilotChatGetContract = defineRouteContract({
method: 'GET',
path: '/api/copilot/chat',
query: copilotChatGetQuerySchema,
response: {
mode: 'json',
schema: z.union([
z.object({
success: z.literal(true),
chat: copilotChatGetChatSchema,
}),
z.object({
success: z.literal(true),
chats: z.array(copilotChatGetListItemSchema),
}),
]),
},
})
export const deleteCopilotChatContract = defineRouteContract({
method: 'DELETE',
path: '/api/copilot/chat/delete',
body: deleteCopilotChatBodySchema,
response: { mode: 'json', schema: successFlagSchema },
})
export const updateCopilotMessagesContract = defineRouteContract({
method: 'POST',
path: '/api/copilot/chat/update-messages',
body: updateCopilotMessagesBodySchema,
response: {
mode: 'json',
schema: z.object({
success: z.literal(true),
messageCount: z.number(),
}),
},
})