fix: implemented TD-06 real SSE implementation

This commit is contained in:
2026-06-11 16:37:08 +02:00
parent a5391e8e25
commit 9325de2db4
9 changed files with 991 additions and 15 deletions

View File

@@ -67,7 +67,13 @@ config :bds, :scripting,
transform_max_toasts_total: 20,
transform_max_toast_length: 300
config :bds, :chat, max_tool_rounds: 10
# streaming: chat completions use SSE when the provider supports it (set to
# false for OpenAI-compatible servers that reject the "stream" flag).
# stream_emit_interval_ms throttles how often streamed content reaches the UI.
config :bds, :chat,
max_tool_rounds: 10,
streaming: true,
stream_emit_interval_ms: 100
config :bds, :embeddings,
backend: BDS.Embeddings.Backends.Neural,