Skip to content

Commit

Permalink
fix missing copy multiagent code
Browse files Browse the repository at this point in the history
  • Loading branch information
leehuwuj committed Jan 17, 2025
1 parent eec237c commit 52c539f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions helpers/python.ts
Original file line number Diff line number Diff line change
Expand Up @@ -480,6 +480,13 @@ export const installPythonTemplate = async ({
await copyRouterCode(root, tools ?? []);
}

// Copy multiagents overrides
if (template === "multiagent") {
await copy("**", path.join(root), {
cwd: path.join(compPath, "multiagent", "python"),
});
}

if (template === "multiagent" || template === "reflex") {
if (useCase) {
const sourcePath =
Expand Down

0 comments on commit 52c539f

Please sign in to comment.