Skip to content

Commit

Permalink
Create core.js
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Jul 15, 2024
1 parent 6c49dac commit 599bbc2
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions ai_core/core.modules/core.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
class Core {
constructor() {
// Initialize the core system
}

async getInput() {
// Get the input for the AI core system
const input = [];
//...
return input;
}

async setOutput(output) {
// Set the output for the AI core system
}
}

export default Core;

0 comments on commit 599bbc2

Please sign in to comment.