@atlaskit/rovo-agent-components
Version:
This package host public components related to rovo agents, the components here are needed for other public atlaskit packages
10 lines (9 loc) • 398 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isForgeAgentByCreatorType = void 0;
// BE will deprecate THIRD_PARTY and use FORGE instead
var isForgeAgentByCreatorType = exports.isForgeAgentByCreatorType = function isForgeAgentByCreatorType(creatorType) {
return creatorType === 'THIRD_PARTY' || creatorType === 'FORGE' || creatorType === 'REMOTE_A2A';
};