-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathOpenAiChatServer.cs
234 lines (196 loc) · 6.83 KB
/
OpenAiChatServer.cs
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
using System.Runtime.Serialization;
using AiServer.ServiceModel.Types;
using ServiceStack;
using ServiceStack.DataAnnotations;
using ServiceStack.Jobs;
namespace AiServer.ServiceModel;
[Tag(Tags.AiInfo)]
[ValidateApiKey]
public class GetOpenAiChat : IGet, IReturn<GetOpenAiChatResponse>
{
public int? Id { get; set; }
public string? RefId { get; set; }
}
public class GetOpenAiChatResponse
{
public BackgroundJobBase? Result { get; set; }
public ResponseStatus? ResponseStatus { get; set; }
}
[Tag(Tags.AiInfo)]
public class GetOpenAiChatStatus : IGet, IReturn<GetOpenAiChatStatusResponse>
{
public long JobId { get; set; }
public string? RefId { get; set; }
}
public class GetOpenAiChatStatusResponse
{
[ApiMember(Description = "Unique identifier of the background job")]
public long JobId { get; set; }
[ApiMember(Description = "Client-provided identifier for the request")]
public string RefId { get; set; }
[ApiMember(Description = "Current state of the background job")]
public BackgroundJobState JobState { get; set; }
[ApiMember(Description = "Current status of the generation request")]
public string? Status { get; set; }
[ApiMember(Description = "Detailed response status information")]
public ResponseStatus? ResponseStatus { get; set; }
[ApiMember(Description = "Chat result")]
public OpenAiChatResponse? Result { get; set; }
}
[Tag(Tags.AiInfo)]
[ValidateApiKey]
public class WaitForOpenAiChat : IGet, IReturn<GetOpenAiChatResponse>
{
public int? Id { get; set; }
public string? RefId { get; set; }
}
[Tag(Tags.AiInfo)]
[Route("/icons/models/{Model}", "GET")]
public class GetModelImage : IGet, IReturn<byte[]>
{
public string Model { get; set; }
}
[Tag(Tags.AiInfo)]
public class GetOllamaGenerationStatus : IGet, IReturn<GetOllamaGenerationStatusResponse>
{
public long JobId { get; set; }
public string? RefId { get; set; }
}
public class GetOllamaGenerationStatusResponse
{
[ApiMember(Description = "Unique identifier of the background job")]
public long JobId { get; set; }
[ApiMember(Description = "Client-provided identifier for the request")]
public string RefId { get; set; }
[ApiMember(Description = "Current state of the background job")]
public BackgroundJobState JobState { get; set; }
[ApiMember(Description = "Current status of the generation request")]
public string? Status { get; set; }
[ApiMember(Description = "Detailed response status information")]
public ResponseStatus? ResponseStatus { get; set; }
[ApiMember(Description = "Generation result")]
public OllamaGenerateResponse? Result { get; set; }
}
[Tag(Tags.AI)]
[ValidateApiKey]
[SystemJson(UseSystemJson.Response)]
public class QueueOllamaGeneration : IReturn<QueueOllamaGenerationResponse>
{
public string? RefId { get; set; }
public string? Provider { get; set; }
public string? ReplyTo { get; set; }
public string? Tag { get; set; }
public OllamaGenerate Request { get; set; }
}
public class QueueOllamaGenerationResponse
{
public long Id { get; set; }
public string RefId { get; set; }
public string StatusUrl { get; set; }
public ResponseStatus? ResponseStatus { get; set; }
}
[Tag(Tags.AI)]
[ValidateApiKey]
[SystemJson(UseSystemJson.Response)]
public class QueueOpenAiChatCompletion : IReturn<QueueOpenAiChatResponse>
{
public string? RefId { get; set; }
public string? Provider { get; set; }
public string? ReplyTo { get; set; }
public string? Tag { get; set; }
public OpenAiChat Request { get; set; }
}
public class QueueOpenAiChatResponse
{
public long Id { get; set; }
public string RefId { get; set; }
public string StatusUrl { get; set; }
public ResponseStatus? ResponseStatus { get; set; }
}
[Tag(Tags.AI)]
[ValidateApiKey]
[Route("/api/generate", "POST")]
[SystemJson(UseSystemJson.Response)]
public class OllamaGeneration : OllamaGenerate, IPost, IReturn<OllamaGenerateResponse>
{
[ApiMember(Description="Provide a unique identifier to track requests")]
public string? RefId { get; set; }
[ApiMember(Description="Specify which AI Provider to use")]
public string? Provider { get; set; }
[ApiMember(Description="Categorize like requests under a common group")]
public string? Tag { get; set; }
}
[Tag(Tags.AI)]
[ValidateApiKey]
[Route("/v1/chat/completions", "POST")]
[SystemJson(UseSystemJson.Response)]
public class OpenAiChatCompletion : OpenAiChat, IPost, IReturn<OpenAiChatResponse>
{
[ApiMember(Description="Provide a unique identifier to track requests")]
public string? RefId { get; set; }
[ApiMember(Description="Specify which AI Provider to use")]
public string? Provider { get; set; }
[ApiMember(Description="Categorize like requests under a common group")]
public string? Tag { get; set; }
}
[Tag(Tags.AiInfo)]
[ValidateApiKey]
public class GetActiveProviders : IGet, IReturn<GetActiveProvidersResponse> {}
public class GetActiveProvidersResponse
{
public List<AiProvider> Results { get; set; } = [];
public ResponseStatus? ResponseStatus { get; set; }
}
[Tag(Tags.AiInfo)]
[ValidateApiKey]
public class ChatAiProvider : IPost, IReturn<OpenAiChatResponse>
{
public string Provider { get; set; }
public string Model { get; set; }
public OpenAiChat? Request { get; set; }
[Input(Type = "textarea"), FieldCss(Field = "col-span-12 text-center")]
public string? Prompt { get; set; }
}
[Tag(Tags.Admin)]
[ValidateAuthSecret]
public class CreateApiKey : IPost, IReturn<CreateApiKeyResponse>
{
public string Key { get; set; }
public string Name { get; set; }
public string? UserId { get; set; }
public string? UserName { get; set; }
public List<string> Scopes { get; set; } = new();
public string? Notes { get; set; }
public int? RefId { get; set; }
public string? RefIdStr { get; set; }
public Dictionary<string, string>? Meta { get; set; }
}
public class CreateApiKeyResponse
{
public int Id { get; set; }
public string Key { get; set; }
public string Name { get; set; }
public string? UserId { get; set; }
public string? UserName { get; set; }
public string VisibleKey { get; set; }
public DateTime CreatedDate { get; set; }
public DateTime? ExpiryDate { get; set; }
public DateTime? CancelledDate { get; set; }
public string? Notes { get; set; }
}
[Tag(Tags.Admin)]
[ValidateAuthSecret]
public class GetWorkerStats : IGet, IReturn<GetWorkerStatsResponse> { }
public class GetWorkerStatsResponse
{
public List<WorkerStats> Results { get; set; }
public Dictionary<string, int> QueueCounts { get; set; }
public ResponseStatus? ResponseStatus { get; set; }
}
[Tag(Tags.Admin)]
[ValidateAuthSecret]
public class CancelWorker : IReturn<EmptyResponse>
{
[ValidateNotEmpty]
public string Worker { get; set; }
}