Skip to content

Commit

Permalink
fix(example): fix code interpreter path
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomas2D committed Aug 30, 2024
1 parent 63872cd commit 7f2f466
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/agents/bee.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ const agent = new BeeAgent({
new PythonTool({
codeInterpreter: { url: codeInterpreterUrl },
storage: new LocalPythonStorage({
interpreterWorkingDir: `${__dirname}/tmp/code_interpreter`,
localWorkingDir: `${__dirname}/tmp/local`,
interpreterWorkingDir: `${__dirname}/../tmp/code_interpreter`,
localWorkingDir: `${__dirname}/../tmp/local`,
}),
}),
]
Expand Down

0 comments on commit 7f2f466

Please sign in to comment.