diff --git a/src/renderer/src/config/agent.ts b/src/renderer/src/config/agent.ts new file mode 100644 index 0000000000..711ede4e18 --- /dev/null +++ b/src/renderer/src/config/agent.ts @@ -0,0 +1,9 @@ +import { AgentConfiguration } from '@renderer/types' + +// base agent config. no default config for now. +const DEFAULT_AGENT_CONFIG: Omit = {} as const + +// no default config for now. +export const DEFAULT_CLAUDE_CODE_CONFIG: Omit = { + ...DEFAULT_AGENT_CONFIG +} as const