mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-18 22:44:21 +01:00
* Move rename module `agent` -> `agents`
* WIP: abstract agent structure into base class and port Agent
* Move command arg path sanitization to decorator
* Add fallback token limit in llm.utils.create_chat_completion
* Rebase `MessageHistory` class on `ChatSequence` class
* Fix linting
* Consolidate logging modules
* Wham Bam Boom
* Fix tests & linting complaints
* Update Agent class docstring
* Fix Agent import in autogpt.llm.providers.openai
* Fix agent kwarg in test_execute_code.py
* Fix benchmarks.py
* Clean up lingering Agent(ai_name=...) initializations
* Fix agent kwarg
* Make sanitize_path_arg decorator more robust
* Fix linting
* Fix command enabling lambda's
* Use relative paths in file ops logger
* Fix test_execute_python_file_not_found
* Fix Config model validation breaking on .plugins
* Define validator for Config.plugins
* Fix Config model issues
* Fix agent iteration budget in testing
* Fix declaration of context_while_think
* Fix Agent.parse_and_process_response signature
* Fix Agent cycle_budget usages
* Fix budget checking in BaseAgent.__next__
* Fix cycle budget initialization
* Fix function calling in BaseAgent.think()
* Include functions in token length calculation
* Fix Config errors
* Add debug thing to patched_api_requestor to investigate HTTP 400 errors
* If this works I'm gonna be sad
* Fix BaseAgent cycle budget logic and document attributes
* Document attributes on `Agent`
* Fix import issues between Agent and MessageHistory
* Improve typing
* Extract application code from the agent (#4982)
* Extract application code from the agent
* Wrap interaction loop in a function and call in benchmarks
* Forgot the important function call
* Add docstrings and inline comments to run loop
* Update typing and docstrings in agent
* Docstring formatting
* Separate prompt construction from on_before_think
* Use `self.default_cycle_instruction` in `Agent.think()`
* Fix formatting
* hot fix the SIGINT handler (#4997)
The signal handler in the autogpt/main.py doesn't work properly because
of the clean_input(...) func. This commit remedies this issue. The issue
is mentioned in
3966cdfd69 (r1264278776)
* Update the sigint handler to be smart enough to actually work (#4999)
* Update the sigint handler to be smart enough to actually work
* Update autogpt/main.py
Co-authored-by: Reinier van der Leer <github@pwuts.nl>
* Can still use context manager
* Merge in upstream
---------
Co-authored-by: Reinier van der Leer <github@pwuts.nl>
* Fix CI
* Fix initial prompt construction
* off by one error
* allow exit/EXIT to shut down app
* Remove dead code
---------
Co-authored-by: collijk <collijk@uw.edu>
Co-authored-by: Cyrus <39694513+cyrus-hawk@users.noreply.github.com>
69 lines
2.2 KiB
Python
69 lines
2.2 KiB
Python
from pathlib import Path
|
|
|
|
import pytest
|
|
from pytest_mock import MockerFixture
|
|
|
|
from autogpt.agents import Agent
|
|
from autogpt.commands.execute_code import execute_python_file
|
|
from autogpt.workspace import Workspace
|
|
from tests.challenges.challenge_decorator.challenge_decorator import challenge
|
|
from tests.challenges.utils import (
|
|
copy_file_into_workspace,
|
|
get_workspace_path,
|
|
run_challenge,
|
|
)
|
|
|
|
CYCLE_COUNT = 5
|
|
EXPECTED_VALUES = ["[0, 1]", "[2, 5]", "[0, 3]"]
|
|
DIRECTORY_PATH = Path(__file__).parent / "data"
|
|
CODE_FILE_PATH = "code.py"
|
|
TEST_FILE_PATH = "test.py"
|
|
USER_INPUTS = [
|
|
"1- Run test.py using the execute_python_file command.\n2- Read code.py using the read_file command.\n3- Modify code.py using the write_to_file command.\nRepeat step 1, 2 and 3 until test.py runs without errors. Do not modify the test.py file.",
|
|
"1- Run test.py.\n2- Read code.py.\n3- Modify code.py.\nRepeat step 1, 2 and 3 until test.py runs without errors.\n",
|
|
"Make test.py run without errors.",
|
|
]
|
|
|
|
|
|
@challenge()
|
|
def test_debug_code_challenge_a(
|
|
dummy_agent: Agent,
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
patched_api_requestor: MockerFixture,
|
|
level_to_run: int,
|
|
challenge_name: str,
|
|
workspace: Workspace,
|
|
patched_make_workspace: pytest.fixture,
|
|
) -> None:
|
|
"""
|
|
Test whether the agent can debug a simple code snippet.
|
|
|
|
:param debug_code_agent: The agent to test.
|
|
:param monkeypatch: pytest's monkeypatch utility for modifying builtins.
|
|
:patched_api_requestor: Sends api requests to our API CI pipeline
|
|
:level_to_run: The level to run.
|
|
"""
|
|
|
|
copy_file_into_workspace(workspace, DIRECTORY_PATH, CODE_FILE_PATH)
|
|
copy_file_into_workspace(workspace, DIRECTORY_PATH, TEST_FILE_PATH)
|
|
|
|
run_challenge(
|
|
challenge_name,
|
|
level_to_run,
|
|
monkeypatch,
|
|
USER_INPUTS[level_to_run - 1],
|
|
CYCLE_COUNT,
|
|
)
|
|
|
|
output = execute_python_file(
|
|
get_workspace_path(workspace, TEST_FILE_PATH),
|
|
agent=dummy_agent,
|
|
)
|
|
|
|
assert "error" not in output.lower(), f"Errors found in output: {output}!"
|
|
|
|
for expected_value in EXPECTED_VALUES:
|
|
assert (
|
|
expected_value in output
|
|
), f"Expected output to contain {expected_value}, but it was not found in {output}!"
|