- "Test": Running agent ManagerAgent (model: gpt-3.5-turbo), with task: "Write a git commit message for the current staging area. Do not ask me for confirmation at any point."
- agent_controller.py
(opendevin) yuantx@ubuntu:/data2/yuantx/OpenDevin$ TEST_ONLY=true ONLY_TEST_NAME="test_simple_task_rejection" ONLY_TEST_AGENT="ManagerAgent" ./tests/integration/regenerate.sh
========STEP 1: Running test_simple_task_rejection for ManagerAgent========
OBSERVATION MessageAction (source=EventSource.USER) CONTENT: Write a git commit message for the current staging area. Do not ask me for confirmation at any point.
============== ManagerAgent LEVEL 0 STEP 0
ACTION AgentDelegateAction(agent='CommitWriterAgent', inputs={}, thought='', action='delegate')
============== CommitWriterAgent LEVEL 1 STEP 0
ACTION CmdRunAction COMMAND: git diff --cached
OBSERVATION CmdOutputObservation (exit code=129) error: unknown option `cached' usage: git diff --no-index []
Diff output format options ......
============== CommitWriterAgent LEVEL 1 STEP 1
ACTION CmdRunAction COMMAND: git diff --cached
OBSERVATION CmdOutputObservation (exit code=129) error: unknown option `cached' usage: git diff --no-index []
Diff output format options ...
============== CommitWriterAgent LEVEL 1 STEP 2
ACTION CmdRunAction COMMAND: git diff --staged
OBSERVATION CmdOutputObservation (exit code=129) error: unknown option `staged' usage: git diff --no-index []
Diff output format options ...
============== CommitWriterAgent LEVEL 1 STEP 3
============== CommitWriterAgent LEVEL 1 STEP 4
============== CommitWriterAgent LEVEL 1 STEP 5
ACTION AgentRejectAction(outputs={'reason': 'The current repository is not a valid git repository or there is no diff in the staging area.'}, thought='', action='reject') OBSERVATION AgentDelegateObservation(content='', outputs={'reason': 'The current repository is not a valid git repository or there is no diff in the staging area.'}, observation='delegate')
============== ManagerAgent LEVEL 0 STEP 1
ACTION AgentRejectAction(outputs={'reason': 'The current repository is not a valid git repository or there is no diff in the staging area.'}, thought='', action='reject')
========test_simple_task_rejection for ManagerAgent PASSED========
Done! Cleaning up before exit... Cleanup done!