-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathAppExtensions.cs
88 lines (77 loc) · 3.09 KB
/
AppExtensions.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
using System.Data;
using System.Security.Cryptography;
using AiServer.ServiceModel;
using AiServer.ServiceModel.Types;
using ServiceStack;
using ServiceStack.Data;
using ServiceStack.Messaging;
using ServiceStack.Text;
namespace AiServer;
public static class AppExtensions
{
public static System.Text.Json.JsonSerializerOptions SystemJsonOptions = new(TextConfig.SystemJsonOptions)
{
WriteIndented = true
};
public static string ToSystemJson<T>(this T obj) => System.Text.Json.JsonSerializer.Serialize(obj, SystemJsonOptions);
public static string GetNamedMonthDb(this IDbConnectionFactory dbFactory) => dbFactory.GetNamedMonthDb(DateTime.UtcNow);
public static string GetNamedMonthDb(this IDbConnectionFactory dbFactory, DateTime createdDate) =>
$"{createdDate.Year}-{createdDate.Month:00}";
public static IDbConnection GetMonthDbConnection(this IDbConnectionFactory dbFactory, DateTime? createdDate = null) =>
HostContext.AppHost.GetDbConnection(dbFactory.GetNamedMonthDb(createdDate ?? DateTime.UtcNow));
public static EmptyResponse PublishAndReturn<T>(this IMessageProducer mq, T request)
{
mq.Publish(request);
return new EmptyResponse();
}
public static string? GetBody(this OpenAiChatResponse? response)
{
return response?.Choices?.FirstOrDefault()?.Message?.Content;
}
public static T CreateNew<T>(this TaskBase x) where T : TaskBase, new()
{
var to = new T
{
Id = x.Id,
Model = x.Model,
Provider = x.Provider,
RefId = x.RefId,
ReplyTo = x.ReplyTo,
CreatedDate = x.CreatedDate,
CreatedBy = x.CreatedBy,
Worker = x.Worker,
WorkerIp = x.WorkerIp,
RequestId = x.RequestId,
StartedDate = x.StartedDate,
CompletedDate = x.CompletedDate,
DurationMs = x.DurationMs,
RetryLimit = x.RetryLimit,
NotificationDate = x.NotificationDate,
ErrorCode = x.ErrorCode,
Error = x.Error,
};
return to;
}
public static string GetPreferredAiModel(this AiProvider aiProvider)
{
var providerModel = aiProvider.Models.FirstOrDefault()
?? throw new ArgumentNullException(nameof(aiProvider.Models));
var model = providerModel.Model;
return aiProvider.GetAiModel(model) ?? throw new ArgumentNullException(nameof(model));
}
public static string GetAiModel(this AiProvider aiProvider, string model)
{
var aiModel = aiProvider.Models.Find(x => x.Model == model);
if (aiModel?.ApiModel != null)
return aiModel.ApiModel;
return aiProvider.AiType?.ApiModels.TryGetValue(model, out var apiModelAlias) == true
? apiModelAlias
: model;
}
public static string ComputeSha256(this byte[] data)
{
using var sha256 = SHA256.Create();
byte[] hashBytes = sha256.ComputeHash(data);
return BitConverter.ToString(hashBytes).Replace("-", "").ToLowerInvariant();
}
}