Watch
1
0
Fork
You've already forked souveraine
0

Add T-035 itinerary-persistent-ui task file, update INDEX.md stats to 35 active tasks, add B-010/B-011 cross-references

This commit is contained in:
Fimeg 2026-05-19 19:03:44 -04:00
commit 0792ece0ce
19 changed files with 1251 additions and 201 deletions

View file

@ -50,9 +50,14 @@ pub struct LlmConfig {
/// When false, images are stripped to text markers before sending.
#[serde(default = "default_supports_images")]
pub supports_images: bool,
/// How many tool rounds between subconscious mid-turn checkpoints.
/// 0 disables checkpointing entirely.
#[serde(default = "default_checkpoint_interval")]
pub checkpoint_interval: u32,
}
fn default_supports_images() -> bool { true }
fn default_checkpoint_interval() -> u32 { 10 }
fn default_context_window() -> u32 {
128000