52 lines
1.1 KiB
Lua
52 lines
1.1 KiB
Lua
local profile = require("yoi.profile")
|
|
local scope = require("yoi.scope")
|
|
local compact = require("yoi.compact")
|
|
|
|
return profile {
|
|
slug = "default",
|
|
description = "Bundled default Yoi coding profile",
|
|
|
|
scope = scope.workspace_write(),
|
|
|
|
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,
|
|
},
|
|
|
|
feature = {
|
|
task = { enabled = true },
|
|
memory = { enabled = true },
|
|
web = { enabled = true },
|
|
pod_management = { enabled = false },
|
|
ticket = { enabled = false, access = "lifecycle" },
|
|
ticket_orchestration = { enabled = false },
|
|
},
|
|
|
|
memory = {
|
|
extract_threshold = 50000,
|
|
consolidation_threshold_files = 5,
|
|
consolidation_threshold_bytes = 50000,
|
|
},
|
|
|
|
web = {
|
|
enabled = true,
|
|
search = {
|
|
provider = "brave",
|
|
api_key_secret = "web/brave/default",
|
|
},
|
|
},
|
|
}
|