mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-31 08:29:07 +08:00
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:
parent
5a6413f356
commit
e0d2d44f35
9
src/renderer/src/config/agent.ts
Normal file
9
src/renderer/src/config/agent.ts
Normal 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
|
||||
Loading…
Reference in New Issue
Block a user