Added documentation

This commit is contained in:
Thorsten Sommer 2026-01-31 20:21:52 +01:00
parent 976cbc4e0a
commit cac7f70b16
Signed by untrusted user who does not match committer: tsommer
GPG Key ID: 371BBA77A02C0108
5 changed files with 5 additions and 5 deletions

View File

@ -107,7 +107,7 @@ public record ChatTemplate(
template = new ChatTemplate
{
Num = 0,
Num = 0, // will be set later by the PluginConfigurationObject
Id = id.ToString(),
Name = name,
SystemPrompt = systemPrompt,

View File

@ -98,7 +98,7 @@ public sealed record EmbeddingProvider(
provider = new EmbeddingProvider
{
Num = 0,
Num = 0, // will be set later by the PluginConfigurationObject
Id = id.ToString(),
Name = name,
UsedLLMProvider = usedLLMProvider,

View File

@ -122,7 +122,7 @@ public record Profile(
template = new Profile
{
Num = 0,
Num = 0, // will be set later by the PluginConfigurationObject
Id = id.ToString(),
Name = name,
NeedToKnow = needToKnow,

View File

@ -143,7 +143,7 @@ public sealed record Provider(
provider = new Provider
{
Num = 0,
Num = 0, // will be set later by the PluginConfigurationObject
Id = id.ToString(),
InstanceName = instanceName,
UsedLLMProvider = usedLLMProvider,

View File

@ -98,7 +98,7 @@ public sealed record TranscriptionProvider(
provider = new TranscriptionProvider
{
Num = 0,
Num = 0, // will be set later by the PluginConfigurationObject
Id = id.ToString(),
Name = name,
UsedLLMProvider = usedLLMProvider,