Skip to content

Commit f330fc1

Browse files
Default character
1 parent b93024d commit f330fc1

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

agent/src/character.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Character, Clients, ModelProvider } from "@eliza/core";
22
import { imageGenerationPlugin } from "@eliza/plugin-image-generation";
33

4-
const defaultCharacter: Character = {
4+
export const defaultCharacter: Character = {
55
name: "Eliza",
66
plugins: [imageGenerationPlugin],
77
clients: [
@@ -405,5 +405,3 @@ const defaultCharacter: Character = {
405405
],
406406
},
407407
};
408-
409-
export default defaultCharacter;

agent/src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ import {
1818
walletProvider,
1919
} from "@eliza/core";
2020
import readline from "readline";
21-
import { blobert } from "./blobert.ts";
21+
import { defaultCharacter } from "./character.ts";
2222

23-
const characters = [blobert];
23+
const characters = [defaultCharacter];
2424

2525
const directClient = new DirectClient();
2626

0 commit comments

Comments
 (0)