feat: 完成模型库
This commit is contained in:
@@ -1,7 +1,12 @@
|
||||
namespace Yi.Framework.AiHub.Domain.Shared.Enums;
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Yi.Framework.AiHub.Domain.Shared.Enums;
|
||||
|
||||
public enum ModelApiTypeEnum
|
||||
{
|
||||
[Description("OpenAI")]
|
||||
OpenAi,
|
||||
|
||||
[Description("Claude")]
|
||||
Claude
|
||||
}
|
||||
@@ -1,9 +1,18 @@
|
||||
namespace Yi.Framework.AiHub.Domain.Shared.Enums;
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Yi.Framework.AiHub.Domain.Shared.Enums;
|
||||
|
||||
public enum ModelTypeEnum
|
||||
{
|
||||
[Description("聊天")]
|
||||
Chat = 0,
|
||||
|
||||
[Description("图片")]
|
||||
Image = 1,
|
||||
|
||||
[Description("嵌入")]
|
||||
Embedding = 2,
|
||||
|
||||
[Description("尊享包")]
|
||||
PremiumChat = 3
|
||||
}
|
||||
Reference in New Issue
Block a user