ai plan v2

This commit is contained in:
2026-08-21 15:34:24 +02:00
parent 9555423f51
commit d06a93f759
20 changed files with 3093 additions and 523 deletions
+5
View File
@@ -42,6 +42,11 @@ namespace AnotherReplayReader
public string? DisplayName { get; set; }
public bool IsStream { get; set; }
public int ContextLength { get; set; } // 0 表示未知
/// <summary>
/// 一次请求的总 token 软上限(prompt + 输出/推理余量)。
/// null 或 0 表示使用档位默认值:≥1M 上下文 → 160K200K~256K → 100K;更小 → 0(不支持长录像)。
/// </summary>
public int? ContextBudget { get; set; }
public Dictionary<string, object> ExtraParameters { get; set; } = [];