Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added new sandbox configs to sweep.yaml #748

Merged
merged 2 commits into from
Oct 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions sweep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ description: 'Python project for AI code generation with next token prediction L

# Default Values: https://github.com/sweepai/sweep/blob/main/sweep.yaml
sandbox:
enabled: true
image: "Python3"
install: "python -m venv venv; . venv/bin/activate; pip install black"
formatter: ". venv/bin/activate; black {files}"
install:
- pre-commit install
check:
- pre-commit run --files {file_path}

rules:
- Ensure all new functions and classes have very clear, concise and up-to-date docstrings. Take gpt_engineer/ai.py as a good example.