@ui-tars/shared
Version:
Shared types for UI-TARS
29 lines • 893 B
TypeScript
/**
* Copyright (c) 2025 Bytedance, Inc. and its affiliates.
* SPDX-License-Identifier: Apache-2.0
*/
export declare const IMAGE_PLACEHOLDER = "<image>";
export declare const MAX_LOOP_COUNT = 100;
export declare const MAX_IMAGE_LENGTH = 5;
export declare const IMAGE_FACTOR = 28;
export declare const DEFAULT_FACTOR = 1000;
export declare const MIN_PIXELS: number;
export declare const MAX_PIXELS_V1_0: number;
export declare const MAX_PIXELS_DOUBAO: number;
export declare const MAX_PIXELS_V1_5: number;
export declare const MAX_RATIO = 200;
export declare enum VlmModeEnum {
Chat = "chat",
Agent = "agent"
}
export declare enum UITarsModelVersion {
V1_0 = "1.0",
V1_5 = "1.5",
DOUBAO_1_5_15B = "doubao-1.5-15B",
DOUBAO_1_5_20B = "doubao-1.5-20B"
}
export declare const VlmModeEnumOptions: {
agent: string;
chat: string;
};
//# sourceMappingURL=vlm.d.ts.map