Commit f14e9e0 1 parent 06aeacf commit f14e9e0 Copy full SHA for f14e9e0
File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ import path from "path";
34
34
import { fileURLToPath } from "url" ;
35
35
import { character } from "./character.ts" ;
36
36
import type { DirectClient } from "@ai16z/client-direct" ;
37
- import blobert from "./blobert.ts" ;
38
37
39
38
const __filename = fileURLToPath ( import . meta. url ) ; // get the resolved path to the file
40
39
const __dirname = path . dirname ( __filename ) ; // get the name of the directory
@@ -179,6 +178,7 @@ function initializeDatabase(dataDir: string) {
179
178
if ( process . env . POSTGRES_URL ) {
180
179
const db = new PostgresDatabaseAdapter ( {
181
180
connectionString : process . env . POSTGRES_URL ,
181
+ parseInputs : true ,
182
182
} ) ;
183
183
return db ;
184
184
} else {
@@ -318,7 +318,7 @@ const startAgents = async () => {
318
318
319
319
let charactersArg = args . characters || args . character ;
320
320
321
- let characters = [ blobert ] ;
321
+ let characters = [ character ] ;
322
322
323
323
if ( charactersArg ) {
324
324
characters = await loadCharacters ( charactersArg ) ;
You can’t perform that action at this time.
0 commit comments