-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathTasks.cs
184 lines (151 loc) · 4.58 KB
/
Tasks.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
using ServiceStack;
using ServiceStack.DataAnnotations;
using ServiceStack.Model;
namespace AiServer.ServiceModel;
/// <summary>
/// Different Models available in AI Server
/// </summary>
[Icon(Svg = Icons.AiModel)]
public class AiModel : IHasId<string>
{
public required string Id { get; set; }
public List<string> Tags { get; set; } = [];
public string? Latest { get; set; }
public string? Website { get; set; }
public string? Description { get; set; }
public string? Icon { get; set; }
public bool? Vision { get; set; }
}
[Icon(Svg = Icons.Stats)]
public class ChatSummary
{
/// <summary>
/// Same as BackgroundJob.Id
/// </summary>
public long Id { get; set; }
/// <summary>
/// User specified or System Generated BackgroundJob.RefId
/// </summary>
[Index(Unique = true)] public string RefId { get; set; }
/// <summary>
/// The model to use for the Task
/// </summary>
public string Model { get; set; }
/// <summary>
/// The model used in the API
/// </summary>
public string ApiModel { get; set; }
/// <summary>
/// The specific provider used to complete the Task
/// </summary>
public string Provider { get; set; }
/// <summary>
/// Optional Tag to group related Tasks
/// </summary>
public string? Tag { get; set; }
/// <summary>
/// Number of tokens in the prompt.
/// </summary>
public int PromptTokens { get; set; }
/// <summary>
/// Number of tokens in the generated completion.
/// </summary>
public int CompletionTokens { get; set; }
/// <summary>
/// The duration reported by the worker to complete the task
/// </summary>
public int DurationMs { get; set; }
/// <summary>
/// The Month DB the Task was created in
/// </summary>
public DateTime CreatedDate { get; set; }
}
public abstract class TaskBase : IHasLongId
{
/// <summary>
/// Primary Key for the Task
/// </summary>
public virtual long Id { get; set; }
/// <summary>
/// The model to use for the Task
/// </summary>
[Index]
public virtual string Model { get; set; }
/// <summary>
/// The specific provider to use to complete the Task
/// </summary>
public virtual string? Provider { get; set; }
/// <summary>
/// Unique External Reference for the Task
/// </summary>
[Index(Unique = true)]
public virtual string? RefId { get; set; }
/// <summary>
/// Optional Tag to group related Tasks
/// </summary>
public string? Tag { get; set; }
/// <summary>
/// URL to publish the Task to
/// </summary>
public virtual string? ReplyTo { get; set; }
/// <summary>
/// When the Task was created
/// </summary>
public virtual DateTime CreatedDate { get; set; }
/// <summary>
/// The API Key UserName which created the Task
/// </summary>
public virtual string CreatedBy { get; set; }
/// <summary>
/// The worker that is processing the Task
/// </summary>
public virtual string? Worker { get; set; }
/// <summary>
/// The Remote IP Address of the worker
/// </summary>
public virtual string? WorkerIp { get; set; }
/// <summary>
/// The HTTP Request Id reserving the task for the worker
/// </summary>
public virtual string? RequestId { get; set; }
/// <summary>
/// When the Task was started
/// </summary>
[Index]
public virtual DateTime? StartedDate { get; set; }
/// <summary>
/// When the Task was completed
/// </summary>
public virtual DateTime? CompletedDate { get; set; }
/// <summary>
/// The duration reported by the worker to complete the task
/// </summary>
public virtual int DurationMs { get; set; }
/// <summary>
/// How many times to attempt to retry the task
/// </summary>
public virtual int? RetryLimit { get; set; }
/// <summary>
/// How many times the Task has been retried
/// </summary>
public virtual int Retries { get; set; }
/// <summary>
/// When the callback for the Task completed
/// </summary>
public virtual DateTime? NotificationDate { get; set; }
/// <summary>
/// The Exception Type or other Error Code for why the Task failed
/// </summary>
public virtual string? ErrorCode { get; set; }
/// <summary>
/// Why the Task failed
/// </summary>
public virtual ResponseStatus? Error { get; set; }
}
[EnumAsInt]
public enum TaskType
{
OpenAiChat = 1,
Comfy = 2,
OllamaGenerate = 3,
}