This commit is contained in:
2026-04-09 17:01:45 +03:30
parent c538f9555a
commit 9b271d1572
7 changed files with 235 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
using AutoMapper.Configuration.Conventions;
namespace xAiService.Models
{
public class XAILLMDescriptor
{
public string Url { get; set; }
public string Port { get; set; }
public string Name { get; set; }
public string Client { get; set; }
public string Descriptor { get; set; }
}
}