diff --git a/autogpts/forge/advanced_commands/README.md b/autogpts/forge/advanced_commands/README.md deleted file mode 100644 index 8a48c719..00000000 --- a/autogpts/forge/advanced_commands/README.md +++ /dev/null @@ -1,2 +0,0 @@ -Advanced commands to develop on the forge and the benchmark. -Stability not guaranteed. diff --git a/autogpts/forge/advanced_commands/run_benchmark_dev b/autogpts/forge/advanced_commands/run_benchmark_dev deleted file mode 100644 index ed4cbf0c..00000000 --- a/autogpts/forge/advanced_commands/run_benchmark_dev +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -# Kill processes using port 8080 if any. -if lsof -t -i :8080; then - kill $(lsof -t -i :8080) -fi -SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" - -uvicorn agbenchmark.app:app --host localhost --port 8080 --reload --log-level info --reload-dir "$SCRIPT_DIR/../../../benchmark/agbenchmark" diff --git a/autogpts/forge/integrations/README.md b/autogpts/forge/integrations/README.md deleted file mode 100644 index 1e442449..00000000 --- a/autogpts/forge/integrations/README.md +++ /dev/null @@ -1,5 +0,0 @@ -You developed a tool that could help people build agents? - -Fork this repository, integrate your tool to the forge and send us the link of your fork in the autogpt discord: https://discord.gg/autogpt (ping maintainers) - -PS: make sure the way you integrate your tool allows for easy rebases from upstream.