UNPKG

buroventures-harald-code-core

Version:

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

11 lines (10 loc) 260 B
/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ type Model = string; type TokenCount = number; export declare const DEFAULT_TOKEN_LIMIT = 1048576; export declare function tokenLimit(model: Model): TokenCount; export {};