diff --git a/Makefile b/Makefile deleted file mode 100644 index d3056959..00000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -install: - @echo "Installing dependencies..." - @command -v poetry >/dev/null 2>&1 || { echo >&2 "Poetry not found, installing..."; curl -sSL https://install.python-poetry.org | python3 - ; } - poetry install - -list_agents: - @echo "Listing all agents in autogpts..." - @for agent in $$(ls autogpts); do \ - echo \\t$$agent; \ - done - @echo \\t"forge" - - -benchmark_%: - @echo "Running benchmark for $*" - poetry run sh -c 'export PYTHONPATH=$$PYTHONPATH:./benchmark:./autogpts/$*; echo $$PYTHONPATH; python -m benchmark start --agent-config autogpts/$*/benchmark_config.json' - - -run: - python main.py - diff --git a/poetry.lock b/poetry.lock deleted file mode 100644 index 8802b86e..00000000 --- a/poetry.lock +++ /dev/null @@ -1,7 +0,0 @@ -# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand. -package = [] - -[metadata] -lock-version = "2.0" -python-versions = "^3.11" -content-hash = "81b2fa642d7f2d1219cf80112ace12d689d053d81be7f7addb98144d56fc0fb2" diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index 324c8fd7..00000000 --- a/pyproject.toml +++ /dev/null @@ -1,14 +0,0 @@ -[tool.poetry] -name = "auto-gpt" -version = "0.1.0" -description = "" -authors = ["SwiftyOS "] -readme = "README.md" - -[tool.poetry.dependencies] -python = "^3.11" - - -[build-system] -requires = ["poetry-core"] -build-backend = "poetry.core.masonry.api"