@ui-tars/sdk
Version:
A powerful cross-platform(ANY device/platform) toolkit for building GUI automation agents for UI-TARS
28 lines (27 loc) • 645 B
JavaScript
/**
* Copyright (c) 2025 Bytedance, Inc. and its affiliates.
* SPDX-License-Identifier: Apache-2.0
*/
function _define_property(obj, key, value) {
if (key in obj) Object.defineProperty(obj, key, {
value: value,
enumerable: true,
configurable: true,
writable: true
});
else obj[key] = value;
return obj;
}
class BaseGUIAgent {
constructor(config){
_define_property(this, "config", void 0);
this.config = config;
this.config = config;
}
}
class BaseModel {
}
class BaseOperator {
}
export { BaseGUIAgent, BaseModel, BaseOperator };
//# sourceMappingURL=index.mjs.map