feat(ui): complete Avalonia UI port with 7 main pages, tool settings & top MenuBar

This commit is contained in:
Richard
2026-08-10 10:48:34 +02:00
parent a0e18d2a57
commit b5bf97ae74
187 changed files with 20054 additions and 882 deletions
@@ -188,6 +188,14 @@ public sealed class LoopGuardConfig
[JsonPropertyName("maxContextTokens")]
public int MaxContextTokens { get; set; } = 100_000;
/// <summary>
/// Obergrenze für die Ausgabe eines einzelnen Schritts (<c>max_tokens</c> im Request).
/// Deckelt die teuerste Token-Art gegen Ausreißer (B11/T8). 0 = keine Angabe, dann gilt
/// der Standard des Anbieters.
/// </summary>
[JsonPropertyName("maxResponseTokens")]
public int MaxResponseTokens { get; set; } = 8_192;
[JsonPropertyName("compactionThreshold")]
public double CompactionThreshold { get; set; } = 0.80;