Merge remote-tracking branch 'origin/ai-hub' into ai-hub
This commit is contained in:
@@ -48,4 +48,8 @@ public class ModelGetListOutput
|
|||||||
/// 模型图标URL
|
/// 模型图标URL
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string? IconUrl { get; set; }
|
public string? IconUrl { get; set; }
|
||||||
|
/// <summary>
|
||||||
|
/// 供应商分组名称(如:OpenAI、Anthropic、Google等)
|
||||||
|
/// </summary>
|
||||||
|
public string? ProviderName { get; set; }
|
||||||
}
|
}
|
||||||
@@ -110,7 +110,8 @@ public class AiChatService : ApplicationService
|
|||||||
Remark = x.Description,
|
Remark = x.Description,
|
||||||
IsPremiumPackage = x.IsPremium,
|
IsPremiumPackage = x.IsPremium,
|
||||||
ModelApiType = x.ModelApiType,
|
ModelApiType = x.ModelApiType,
|
||||||
IconUrl = x.IconUrl
|
IconUrl = x.IconUrl,
|
||||||
|
ProviderName = x.ProviderName
|
||||||
}).ToListAsync();
|
}).ToListAsync();
|
||||||
|
|
||||||
output.ForEach(x =>
|
output.ForEach(x =>
|
||||||
|
|||||||
Reference in New Issue
Block a user