-
Notifications
You must be signed in to change notification settings - Fork 0
/
responseTypes.d.ts
100 lines (100 loc) · 2.46 KB
/
responseTypes.d.ts
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
import type { ChatHistoryType, ContextType, DateTimeString, SharingType, UUIDString } from './types.js';
interface SectorFlowUsage {
promptTokens: number;
completionTokes: number;
totalTokens: number;
credits: number;
responseTimeMs: number;
modelUsage: unknown[];
}
export interface ModelResponse {
id: UUIDString;
name: string;
icon: string;
baseModel: string;
contextWindow: number;
chatCredits: number;
active: boolean;
internalUseOnly: boolean;
created: DateTimeString;
updated: DateTimeString;
usesSystemPrompts: boolean;
imageGen: boolean;
hasVision: boolean;
settingsAvailable: Array<{
fieldName: string;
name: string;
description: string;
}>;
instructionFollowing: boolean;
promptWrapper: {
wrapperName: string;
value: string;
};
modelRating: number;
description: string;
}
export interface ProjectResponse {
id: string;
name: string;
models: Array<{
modelId: UUIDString;
name: string;
baseModel: string;
icon: string;
}>;
chatHistoryType: ChatHistoryType;
contextType: ContextType;
sharingType: SharingType;
}
export interface ChatMessageResponse {
threadId: UUIDString;
chatId: UUIDString;
choices: Array<{
modelId: UUIDString;
modelName: string;
baseModel: string;
icon: string;
choices: Array<{
modelId: UUIDString;
index: number;
active: boolean;
message: {
role: 'assistant' | string;
content: string;
};
sources?: Array<{
id: UUIDString;
sourceName: string;
text: string;
pageNum: number;
matchScore: number;
}>;
finishReason?: 'stop' | 'error' | string;
}>;
usage: SectorFlowUsage;
}>;
usage: SectorFlowUsage;
}
export interface CollectionResponse {
id: number;
externalId: string;
name: string;
collectionType: 'project';
created: DateTimeString;
files: Array<{
id: UUIDString;
externalId: string;
bytes: number;
created: DateTimeString;
filename: string;
mimeType: string;
purpose: 'assistants';
}>;
}
export interface UploadResponse {
threadId: UUIDString;
collectionName: string;
fileName: string;
}
export {};