UNPKG

buroventures-harald-code-core

Version:

Harald Code Core - Core functionality for AI-powered coding assistant

23 lines (22 loc) 1.28 kB
/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ export declare const SERVICE_NAME = "qwen-code"; export declare const EVENT_USER_PROMPT = "qwen-code.user_prompt"; export declare const EVENT_TOOL_CALL = "qwen-code.tool_call"; export declare const EVENT_API_REQUEST = "qwen-code.api_request"; export declare const EVENT_API_ERROR = "qwen-code.api_error"; export declare const EVENT_API_RESPONSE = "qwen-code.api_response"; export declare const EVENT_CLI_CONFIG = "qwen-code.config"; export declare const EVENT_FLASH_FALLBACK = "qwen-code.flash_fallback"; export declare const EVENT_NEXT_SPEAKER_CHECK = "qwen-code.next_speaker_check"; export declare const EVENT_SLASH_COMMAND = "qwen-code.slash_command"; export declare const METRIC_TOOL_CALL_COUNT = "qwen-code.tool.call.count"; export declare const METRIC_TOOL_CALL_LATENCY = "qwen-code.tool.call.latency"; export declare const METRIC_API_REQUEST_COUNT = "qwen-code.api.request.count"; export declare const METRIC_API_REQUEST_LATENCY = "qwen-code.api.request.latency"; export declare const METRIC_TOKEN_USAGE = "qwen-code.token.usage"; export declare const METRIC_SESSION_COUNT = "qwen-code.session.count"; export declare const METRIC_FILE_OPERATION_COUNT = "qwen-code.file.operation.count";