Skip to content

Commit

Permalink
Fix copy from local repo
Browse files Browse the repository at this point in the history
  • Loading branch information
Vasilije1990 committed Jan 16, 2025
1 parent a09250d commit 469c94e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions evals/eval_with_modal.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
image = (
modal.Image.debian_slim()
.pip_install("poetry")
.copy_local_dir(LOCAL_COGNEE_PATH, "/root/cognee")
.add_local_dir(LOCAL_COGNEE_PATH, "/root/cognee", copy=True)
.run_commands(
"cd /root/cognee && poetry install",
)
Expand Down Expand Up @@ -52,7 +52,7 @@ def run_single_repo(instance_data: dict, disable_cognee: bool = False):


@app.local_entrypoint()
def main(disable_cognee: bool = False, num_samples: int = 5):
def main(disable_cognee: bool = False, num_samples: int = 2):
"""
Main entry point for Modal.
Args:
Expand Down

0 comments on commit 469c94e

Please sign in to comment.