/** * Application constants definition */ /** * Application data storage directory * Used to store debug logs, command history and other data */ export declare const DATA_DIRECTORY: string; /** * Prompt history file path */ export declare const PROMPT_HISTORY_FILE: string; /** * Error log directory path */ export declare const ERROR_LOG_DIRECTORY: string; /** * User-level memory file path */ export declare const USER_MEMORY_FILE: string; /** * AI related constants */ export declare const DEFAULT_WAVE_MAX_INPUT_TOKENS = 200000; export declare const DEFAULT_WAVE_MAX_OUTPUT_TOKENS = 32000; /** * Default server URL for SSO authentication. * Overridden by WAVE_SERVER_URL env var or programmatic AgentOptions.serverUrl. */ export declare const DEFAULT_SERVER_URL = "https://codechat.codewave.163.com";