We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36a2f53 commit a9d8417Copy full SHA for a9d8417
agent/src/index.ts
@@ -34,7 +34,6 @@ import path from "path";
34
import { fileURLToPath } from "url";
35
import { character } from "./character.ts";
36
import type { DirectClient } from "@ai16z/client-direct";
37
-import blobert from "./blobert.ts";
38
39
const __filename = fileURLToPath(import.meta.url); // get the resolved path to the file
40
const __dirname = path.dirname(__filename); // get the name of the directory
@@ -318,7 +317,7 @@ const startAgents = async () => {
318
317
319
let charactersArg = args.characters || args.character;
320
321
- let characters = [blobert];
+ let characters = [character];
322
323
if (charactersArg) {
324
characters = await loadCharacters(charactersArg);
0 commit comments