From b6a57f75f60575bdd550c10460037b22ce037507 Mon Sep 17 00:00:00 2001 From: Hare Date: Mon, 1 Jun 2026 11:08:34 +0900 Subject: [PATCH] Update default.lua --- resources/profiles/default.lua | 66 +++++++++++++++++----------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/resources/profiles/default.lua b/resources/profiles/default.lua index e5ed5b56..1dfb6809 100644 --- a/resources/profiles/default.lua +++ b/resources/profiles/default.lua @@ -3,40 +3,40 @@ local scope = require("insomnia.scope") local compact = require("insomnia.compact") return profile { - slug = "default", - description = "Bundled default Insomnia coding profile", + slug = "default", + description = "Bundled default Insomnia coding profile", - scope = scope.workspace_write(), + scope = scope.workspace_write(), - session = { - record_event_trace = true, - }, - - worker = { - reasoning = "high", - }, - - model = { - ref = "codex-oauth/gpt-5.5", - }, - - compaction = compact.tokens { - threshold = 200000, - request_threshold = 240000, - worker_context_max_tokens = 100000, - }, - - memory = { - extract_threshold = 50000, - consolidation_threshold_files = 5, - consolidation_threshold_bytes = 50000, - }, - - web = { - enabled = true, - search = { - provider = "brave", - api_key_secret = "web/brave/default", + session = { + record_event_trace = true, + }, + + worker = { + reasoning = "high", + }, + + model = { + ref = "codex-oauth/gpt-5.5", + }, + + compaction = compact.tokens { + threshold = 240000, + request_threshold = 270000, + worker_context_max_tokens = 100000, + }, + + memory = { + extract_threshold = 50000, + consolidation_threshold_files = 5, + consolidation_threshold_bytes = 50000, + }, + + web = { + enabled = true, + search = { + provider = "brave", + api_key_secret = "web/brave/default", + }, }, - }, }