Public Access
fix: support LiteLLM Responses streaming
PR and Push Build/Test / build-and-test (push) Successful in 14m17s
PR and Push Build/Test / build-and-test (push) Successful in 14m17s
This commit is contained in:
@@ -383,6 +383,8 @@ public sealed class AgentOptions
|
||||
|
||||
public string Model { get; set; } = "chatgpt/gpt-5.5";
|
||||
|
||||
public bool UseStreaming { get; set; } = true;
|
||||
|
||||
public bool EnableThinking { get; set; } = true;
|
||||
|
||||
public ReasoningEffortOption ReasoningEffort { get; set; } = ReasoningEffortOption.Medium;
|
||||
@@ -414,6 +416,8 @@ public sealed class WorkflowRulesEditorOptions
|
||||
|
||||
public string? Model { get; set; }
|
||||
|
||||
public bool? UseStreaming { get; set; }
|
||||
|
||||
public bool? EnableThinking { get; set; }
|
||||
|
||||
public ReasoningEffortOption? ReasoningEffort { get; set; }
|
||||
@@ -442,6 +446,7 @@ public sealed class WorkflowRulesEditorOptions
|
||||
Key = string.IsNullOrWhiteSpace(Key) ? defaults.Key : Key,
|
||||
KeyEnv = string.IsNullOrWhiteSpace(KeyEnv) ? defaults.KeyEnv : KeyEnv!,
|
||||
Model = string.IsNullOrWhiteSpace(Model) ? defaults.Model : Model!,
|
||||
UseStreaming = UseStreaming ?? defaults.UseStreaming,
|
||||
EnableThinking = EnableThinking ?? defaults.EnableThinking,
|
||||
ReasoningEffort = ReasoningEffort ?? defaults.ReasoningEffort,
|
||||
ReconnectionAttempts = ReconnectionAttempts ?? defaults.ReconnectionAttempts,
|
||||
|
||||
Reference in New Issue
Block a user