19 lines
380 B
TypeScript
19 lines
380 B
TypeScript
/**
|
|
* Application-wide constants
|
|
*/
|
|
|
|
/**
|
|
* Default model ID to use when no model is specified
|
|
*/
|
|
export const DEFAULT_MODEL_ID = "sonnet-4.5";
|
|
|
|
/**
|
|
* Default agent name when creating a new agent
|
|
*/
|
|
export const DEFAULT_AGENT_NAME = "Nameless Agent";
|
|
|
|
/**
|
|
* Message displayed when user interrupts tool execution
|
|
*/
|
|
export const INTERRUPTED_BY_USER = "Interrupted by user";
|