braiin
Version:
Behavioral Reasoning AI for Intelligent Navigation
17 lines (16 loc) • 389 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Agent = void 0;
class Agent {
constructor(name, description, tools) {
this.name = '';
this.description = '';
this.name = name;
this.description = description;
this.tools = tools;
}
getTools() {
return this.tools;
}
}
exports.Agent = Agent;