@ui-tars/shared
Version:
Shared types for UI-TARS
18 lines (16 loc) • 463 B
TypeScript
/**
* Copyright (c) 2025 Bytedance, Inc. and its affiliates.
* SPDX-License-Identifier: Apache-2.0
*/
declare const IMAGE_PLACEHOLDER = "<image>";
declare const MAX_LOOP_COUNT = 25;
declare const MAX_IMAGE_LENGTH = 5;
declare enum VlmModeEnum {
Chat = "chat",
Agent = "agent"
}
declare const VlmModeEnumOptions: {
agent: string;
chat: string;
};
export { IMAGE_PLACEHOLDER, MAX_IMAGE_LENGTH, MAX_LOOP_COUNT, VlmModeEnum, VlmModeEnumOptions };