File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1
1
import { Character , Clients , ModelProvider } from "@eliza/core" ;
2
2
import { imageGenerationPlugin } from "@eliza/plugin-image-generation" ;
3
3
4
- const defaultCharacter : Character = {
4
+ export const defaultCharacter : Character = {
5
5
name : "Eliza" ,
6
6
plugins : [ imageGenerationPlugin ] ,
7
7
clients : [
@@ -405,5 +405,3 @@ const defaultCharacter: Character = {
405
405
] ,
406
406
} ,
407
407
} ;
408
-
409
- export default defaultCharacter ;
Original file line number Diff line number Diff line change @@ -18,9 +18,9 @@ import {
18
18
walletProvider ,
19
19
} from "@eliza/core" ;
20
20
import readline from "readline" ;
21
- import { blobert } from "./blobert .ts" ;
21
+ import { defaultCharacter } from "./character .ts" ;
22
22
23
- const characters = [ blobert ] ;
23
+ const characters = [ defaultCharacter ] ;
24
24
25
25
const directClient = new DirectClient ( ) ;
26
26
You can’t perform that action at this time.
0 commit comments