@iucteam/lot-agents
Version:
Agents for lot agentic framework
11 lines • 440 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NoOpBrain = void 0;
const lot_1 = require("@iucteam/lot");
class NoOpBrain extends lot_1.Brain {
async evaluate(instruction) {
return new lot_1.Thought(lot_1.SimplePrediction.from(instruction.getRequirement().get()), 1, instruction.getExpectedConfidenceThreshold());
}
}
exports.NoOpBrain = NoOpBrain;
//# sourceMappingURL=NoOpBrain.js.map