Skip to content

Commit

Permalink
Create agi_algorithm.js
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Jul 28, 2024
1 parent bdd3b72 commit c5a0fb1
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { AGIAlgorithm } from 'agi-algorithm-library';

class AGIAlgorithm {
constructor() {
this.agiAlgorithm = new AGIAlgorithm();
}

run(data) {
// Run AGI algorithm on analyzed data
const decision = this.agiAlgorithm.run(data);
return decision;
}
}

export default AGIAlgorithm;

0 comments on commit c5a0fb1

Please sign in to comment.