-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathstart_agent
More file actions
executable file
·33 lines (24 loc) · 1.26 KB
/
start_agent
File metadata and controls
executable file
·33 lines (24 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/zsh
# Default model if not specified
MODEL="r1"
# Parse command line arguments
while [[ $# -gt 0 ]]; do
case $1 in
--model)
MODEL="$2"
shift 2
;;
*)
echo "Unknown option: $1"
echo "Usage: $0 [--model MODEL_NAME]"
exit 1
;;
esac
done
cd src
for i in {1..1000}
do
echo "$i - $(date) ====================================================="
aider --architect --model $MODEL --subtree-only --read plex.md --read context.txt --yes-always --no-show-model-warnings --weak-model 'openrouter/google/gemini-2.0-flash-001' --message 'if there are errors, work on fixing the errors. if there are no errors, work on cleaning up the code a little bit. If you see that something is not defined or implemented, please work on implementing until there are no errors. The tests need to work as they are right now. Do not edit tests. Do not add tests to the chat. Do not edit the linting rules. Do not run any commands. Do not try to install anything. Do not mock any functionality, actually implement it. Is there any functionality that is not yet implemented? Replace all mocking with actual implementations. Only use small search replace blocks. You can however use many search replace blocks.' **/*.py
sleep 1
done