Updated UI for streaming

This commit is contained in:
vh
2026-04-02 22:53:27 -07:00
parent a282d853a6
commit 46b10e8420
+29 -16
View File
@@ -85,13 +85,26 @@ providers:
# --- Local servers --- # --- Local servers ---
# #
# Two variants of the same endpoint: one with Qwen3 thinking mode on, one off.
# Qwen3 recommended temperatures: 0.6 (thinking), 0.7 (non-thinking).
# Assign reasoning-heavy agents to vastblueai_thinking; procedural/creative
# agents to vastblueai.
#
vastblueai: vastblueai:
type: openai_compatible type: openai_compatible
base_url: http://10.250.50.54:9292/v1 base_url: http://10.250.50.54:9292/v1
api_key: local api_key: local
default_model: "qwen3.5-35-a3b" default_model: "qwen3.5-35-a3b"
extra_body: extra_body:
enable_thinking: false # Qwen 3 thinking mode — disable so tokens go to the response enable_thinking: false # Non-thinking mode — recommended temp 0.7
vastblueai_thinking:
type: openai_compatible
base_url: http://10.250.50.54:9292/v1
api_key: local
default_model: "qwen3.5-35-a3b"
extra_body:
enable_thinking: true # Qwen3 thinking mode — recommended temp 0.6
lmstudio: lmstudio:
type: openai_compatible type: openai_compatible
@@ -134,19 +147,19 @@ agents:
title: Chief of Staff title: Chief of Staff
color: cyan color: cyan
prompt_file: miranda_chief_of_staff.md prompt_file: miranda_chief_of_staff.md
provider: none provider: vastblueai_thinking # Routing and synthesis benefit from deep reasoning
model: "" model: ""
temperature: 0.4 temperature: 0.6 # Qwen3 thinking-mode recommendation
max_tokens: 16384 max_tokens: 32768 # Synthesizes the longest outputs; needs headroom
stateful: true stateful: true
vera: vera:
title: Auditor title: Auditor
color: yellow color: yellow
prompt_file: vera_auditor.md prompt_file: vera_auditor.md
provider: none provider: vastblueai_thinking # Careful auditing benefits from thinking
model: "" model: ""
temperature: 0.2 temperature: 0.6 # Qwen3 thinking-mode recommendation
max_tokens: 16384 max_tokens: 16384
stateful: false stateful: false
@@ -154,9 +167,9 @@ agents:
title: Director of Personnel & Systems title: Director of Personnel & Systems
color: white color: white
prompt_file: evelyn_director_of_personnel.md prompt_file: evelyn_director_of_personnel.md
provider: none provider: vastblueai # Procedural tasks; thinking overhead not warranted
model: "" model: ""
temperature: 0.3 temperature: 0.7 # Qwen3 non-thinking recommendation
max_tokens: 16384 max_tokens: 16384
stateful: true stateful: true
@@ -164,9 +177,9 @@ agents:
title: Director of Research title: Director of Research
color: green color: green
prompt_file: atlas_research_lead.md prompt_file: atlas_research_lead.md
provider: none provider: vastblueai_thinking # Research synthesis benefits from extended reasoning
model: "" model: ""
temperature: 0.5 temperature: 0.6 # Qwen3 thinking-mode recommendation
max_tokens: 16384 max_tokens: 16384
stateful: true stateful: true
@@ -174,9 +187,9 @@ agents:
title: Director of Operations title: Director of Operations
color: blue color: blue
prompt_file: cole_operations_lead.md prompt_file: cole_operations_lead.md
provider: none provider: vastblueai # Operational tasks are structured and procedural
model: "" model: ""
temperature: 0.3 temperature: 0.7 # Qwen3 non-thinking recommendation
max_tokens: 16384 max_tokens: 16384
stateful: true stateful: true
@@ -184,9 +197,9 @@ agents:
title: Director of Analysis title: Director of Analysis
color: magenta color: magenta
prompt_file: clio_analysis_lead.md prompt_file: clio_analysis_lead.md
provider: none provider: vastblueai_thinking # Structured analysis benefits from thinking
model: "" model: ""
temperature: 0.4 temperature: 0.6 # Qwen3 thinking-mode recommendation
max_tokens: 16384 max_tokens: 16384
stateful: true stateful: true
@@ -194,8 +207,8 @@ agents:
title: Director of Interface & Experience title: Director of Interface & Experience
color: bright_cyan color: bright_cyan
prompt_file: iris_interface_director.md prompt_file: iris_interface_director.md
provider: none provider: vastblueai # Creative/interface work; non-thinking is sufficient
model: "" model: ""
temperature: 0.4 temperature: 0.7 # Qwen3 non-thinking recommendation
max_tokens: 16384 max_tokens: 16384
stateful: true stateful: true