Another cleanup pass

This commit is contained in:
2026-08-18 17:24:42 -04:00
parent 21a8b1e169
commit def93bd39a
14 changed files with 7243 additions and 7039 deletions
@@ -5,10 +5,16 @@ const STATE = readFileSync(
new URL('../lib/agent-state.js', import.meta.url),
'utf8'
)
const TOOLS = readFileSync(
new URL('../lib/agent-tools.js', import.meta.url),
'utf8'
)
const TOOLS =
readFileSync(new URL('../lib/agent-tools.js', import.meta.url), 'utf8') +
readFileSync(
new URL('../lib/agent-tool-definitions.js', import.meta.url),
'utf8'
) +
readFileSync(
new URL('../lib/agent-tool-dispatch.js', import.meta.url),
'utf8'
)
const OPENAI = readFileSync(
new URL('../lib/agent-openai.js', import.meta.url),
'utf8'