k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
import { Object3D } from '../core/Object3D.js';
class Group extends Object3D {
constructor() {
super();
this.type = 'Group';
}
}
Group.prototype.isGroup = true;
export { Group };