forked from gpt-engineer-org/gpt-engineer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sweep.yaml
15 lines (13 loc) · 805 Bytes
/
sweep.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Sweep AI turns bug fixes & feature requests into code changes (https://sweep.dev)
# For details on our config file, check out our docs at https://docs.sweep.dev
# If you use this be sure to frequently sync your default branch(main, master) to dev.
branch: 'main'
# By default Sweep will read the logs and outputs from your existing Github Actions. To disable this, set this to false.
gha_enabled: True
description: 'Python project for AI code generation with next token prediction LLMs. Various AI steps are carried out in steps.py. Disk access via DB objects.'
# 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}"