Skip to content

Commit

Permalink
Revert "Add ReadEVMTx Tool (#40)" (#43)
Browse files Browse the repository at this point in the history
This reverts commit 7f8c370.
  • Loading branch information
guo authored Jan 18, 2025
1 parent 7f8c370 commit 7a1933c
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 4,024 deletions.
4 changes: 2 additions & 2 deletions example/demo_agent.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import * as dotenv from 'dotenv';
import readline from 'readline';
import { SentientAI } from '../src/SentientAI'; // Import SentientAI

dotenv.config();
Expand All @@ -8,6 +7,7 @@ async function main() {
const sentientAI = new SentientAI();

// read users' input
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
Expand All @@ -21,7 +21,7 @@ async function main() {
return;
}

// console.log(`User Input: ${input}`);
console.log(`User Input: ${input}`);
try {
const response = await sentientAI.agent.execute(input);
console.log(`Binoai Response:\n${response}`);
Expand Down
Loading

0 comments on commit 7a1933c

Please sign in to comment.