feat(config): add default agent configuration constants

Add DEFAULT_AGENT_CONFIG and DEFAULT_CLAUDE_CODE_CONFIG constants to define base agent configurations. These will serve as templates for future agent configurations.
This commit is contained in:
icarus 2025-09-14 00:13:22 +08:00
parent 5a6413f356
commit e0d2d44f35

View File

@ -0,0 +1,9 @@
import { AgentConfiguration } from '@renderer/types'
// base agent config. no default config for now.
const DEFAULT_AGENT_CONFIG: Omit<AgentConfiguration, 'model'> = {} as const
// no default config for now.
export const DEFAULT_CLAUDE_CODE_CONFIG: Omit<AgentConfiguration, 'model'> = {
...DEFAULT_AGENT_CONFIG
} as const