Remove trailing newlines added at end of files

This commit is contained in:
Peer Hogeterp 2026-09-23 13:27:58 +02:00
parent 2911fb10e5
commit 5a0980d69b
6 changed files with 6 additions and 6 deletions

View File

@ -395,4 +395,4 @@ public sealed class ReadWebPageTool(WebPageRetrievalService webPageRetrievalServ
? normalizedHost.EndsWith($".{this.Host}", StringComparison.Ordinal) && normalizedHost.Length > this.Host.Length + 1 ? normalizedHost.EndsWith($".{this.Host}", StringComparison.Ordinal) && normalizedHost.Length > this.Host.Length + 1
: normalizedHost.Equals(this.Host, StringComparison.Ordinal); : normalizedHost.Equals(this.Host, StringComparison.Ordinal);
} }
} }

View File

@ -887,4 +887,4 @@ public sealed class WebSearchTool(IEnumerable<IWebSearchBackend> backends, WebPa
error = string.Format(TB("The setting '{0}' holds the value '{1}', which is not one of the available options. Please choose one of the offered values."), fieldName, value); error = string.Format(TB("The setting '{0}' holds the value '{1}', which is not one of the available options. Please choose one of the offered values."), fieldName, value);
return false; return false;
} }
} }

View File

@ -36,4 +36,4 @@ public sealed class ToolDefinition
public ConfidenceLevel MinimumProviderConfidence { get; init; } = ConfidenceLevel.NONE; public ConfidenceLevel MinimumProviderConfidence { get; init; } = ConfidenceLevel.NONE;
public ToolFunctionDefinition Function { get; init; } = new(); public ToolFunctionDefinition Function { get; init; } = new();
} }

View File

@ -50,4 +50,4 @@ public sealed class ToolSettingsFieldDefinition
public IReadOnlyList<ToolSettingsOption> GetOptions() => string.IsNullOrWhiteSpace(this.OptionSource) public IReadOnlyList<ToolSettingsOption> GetOptions() => string.IsNullOrWhiteSpace(this.OptionSource)
? this.EnumValues.Select(value => new ToolSettingsOption(value, value)).ToList() ? this.EnumValues.Select(value => new ToolSettingsOption(value, value)).ToList()
: ToolSettingsOptionSources.Resolve(this.OptionSource); : ToolSettingsOptionSources.Resolve(this.OptionSource);
} }

View File

@ -93,4 +93,4 @@ public sealed class ToolSettingsSchemaBuilder
return this; return this;
} }
} }

View File

@ -211,4 +211,4 @@ public sealed partial class ToolSettingsService(SettingsManager settingsManager,
secret = decryptedSecret; secret = decryptedSecret;
return true; return true;
} }
} }