Skip to content

Commit a9d8417

Browse files
fix: revert
1 parent 36a2f53 commit a9d8417

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

agent/src/index.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ import path from "path";
3434
import { fileURLToPath } from "url";
3535
import { character } from "./character.ts";
3636
import type { DirectClient } from "@ai16z/client-direct";
37-
import blobert from "./blobert.ts";
3837

3938
const __filename = fileURLToPath(import.meta.url); // get the resolved path to the file
4039
const __dirname = path.dirname(__filename); // get the name of the directory
@@ -318,7 +317,7 @@ const startAgents = async () => {
318317

319318
let charactersArg = args.characters || args.character;
320319

321-
let characters = [blobert];
320+
let characters = [character];
322321

323322
if (charactersArg) {
324323
characters = await loadCharacters(charactersArg);

0 commit comments

Comments
 (0)