├── .coveragerc ├── .devcontainer ├── Dockerfile ├── devcontainer.json └── docker-compose.yml ├── .dockerignore ├── .env.template ├── .envrc ├── .flake8 ├── .gitattributes ├── .github ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── 1.bug.yml │ └── 2.feature.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── benchmarks.yml │ ├── ci.yml │ ├── docker-cache-clean.yml │ ├── docker-ci.yml │ ├── docker-release.yml │ ├── documentation-release.yml │ ├── pr-label.yml │ ├── scripts │ ├── docker-ci-summary.sh │ └── docker-release-summary.sh │ └── sponsors_readme.yml ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── .sourcery.yaml ├── BULLETIN.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── autogpt ├── __init__.py ├── __main__.py ├── agent │ ├── __init__.py │ ├── agent.py │ └── agent_manager.py ├── app.py ├── cli.py ├── commands │ ├── __init__.py │ ├── analyze_code.py │ ├── audio_text.py │ ├── command.py │ ├── execute_code.py │ ├── file_operations.py │ ├── generate_text.py │ ├── git_operations.py │ ├── google_search.py │ ├── image_gen.py │ ├── improve_code.py │ ├── places.py │ ├── search.py │ ├── task_statuses.py │ ├── times.py │ ├── twitter.py │ ├── web_playwright.py │ ├── web_requests.py │ ├── web_selenium.py │ └── write_tests.py ├── config │ ├── __init__.py │ ├── ai_config.py │ ├── config.py │ └── prompt_config.py ├── configurator.py ├── js │ └── overlay.js ├── json_utils │ ├── __init__.py │ ├── json_fix_general.py │ ├── json_fix_llm.py │ ├── llm_response_format_1.json │ └── utilities.py ├── llm │ ├── __init__.py │ ├── api_manager.py │ ├── base.py │ ├── chat.py │ ├── llm_utils.py │ ├── modelsinfo.py │ ├── providers │ │ ├── __init__.py │ │ └── openai.py │ └── token_counter.py ├── log_cycle │ ├── __init__.py │ ├── json_handler.py │ └── log_cycle.py ├── logs.py ├── main.py ├── memory │ ├── __init__.py │ ├── base.py │ ├── local.py │ ├── milvus.py │ ├── no_memory.py │ ├── pinecone.py │ ├── redismem.py │ └── weaviate.py ├── memory_management │ ├── store_memory.py │ └── summary_memory.py ├── models │ └── base_open_ai_plugin.py ├── plugins.py ├── processing │ ├── __init__.py │ ├── html.py │ └── text.py ├── prompts │ ├── __init__.py │ ├── default_prompts.py │ ├── generator.py │ └── prompt.py ├── setup.py ├── singleton.py ├── speech │ ├── __init__.py │ ├── base.py │ ├── brian.py │ ├── eleven_labs.py │ ├── gtts.py │ ├── macos_tts.py │ └── say.py ├── spinner.py ├── url_utils │ ├── __init__.py │ └── validators.py ├── utils.py └── workspace │ ├── __init__.py │ └── workspace.py ├── azure.yaml.template ├── benchmark ├── __init__.py └── benchmark_entrepreneur_gpt_with_difficult_user.py ├── codecov.yml ├── data └── .keep ├── data_ingestion.py ├── docker-compose.yml ├── docs ├── challenges │ ├── beat.md │ ├── building_challenges.md │ ├── challenge_template.md │ ├── information_retrieval │ │ ├── challenge_a.md │ │ └── introduction.md │ ├── introduction.md │ ├── list.md │ ├── memory │ │ ├── challenge_a.md │ │ ├── challenge_b.md │ │ ├── challenge_c.md │ │ └── introduction.md │ └── submit.md ├── code-of-conduct.md ├── configuration │ ├── imagegen.md │ ├── memory.md │ ├── search.md │ └── voice.md ├── contributing.md ├── imgs │ └── openai-api-key-billing-paid-account.png ├── index.md ├── plugins.md ├── setup.md ├── testing.md └── usage.md ├── main.py ├── mkdocs.yml ├── mypy.ini ├── plugin.png ├── plugins └── __PUT_PLUGIN_ZIPS_HERE__ ├── prompt_settings.yaml ├── pyproject.toml ├── requirements.txt ├── run.bat ├── run.sh ├── run_continuous.bat ├── run_continuous.sh ├── scripts ├── __init__.py ├── check_requirements.py └── install_plugin_deps.py ├── slack ├── .gitignore ├── README.md ├── api.py ├── app.py └── requirements.txt ├── tests.py ├── tests ├── __init__.py ├── conftest.py ├── context.py ├── integration │ ├── __init__.py │ ├── agent_factory.py │ ├── cassettes │ │ ├── test_llm_utils │ │ │ ├── test_get_ada_embedding.yaml │ │ │ └── test_get_ada_embedding_large_context.yaml │ │ ├── test_local_cache │ │ │ └── test_get_relevant.yaml │ │ ├── test_memory_management │ │ │ └── test_save_memory_trimmed_from_context_window.yaml │ │ └── test_setup │ │ │ ├── test_generate_aiconfig_automatic_default.yaml │ │ │ ├── test_generate_aiconfig_automatic_fallback.yaml │ │ │ └── test_generate_aiconfig_automatic_typical.yaml │ ├── challenges │ │ ├── __init__.py │ │ ├── basic_abilities │ │ │ ├── __init__.py │ │ │ ├── cassettes │ │ │ │ ├── test_browse_website │ │ │ │ │ └── test_browse_website.yaml │ │ │ │ └── test_write_file │ │ │ │ │ └── test_write_file.yaml │ │ │ ├── goal_oriented_tasks.md │ │ │ ├── test_browse_website.py │ │ │ └── test_write_file.py │ │ ├── conftest.py │ │ ├── information_retrieval │ │ │ └── test_information_retrieval_challenge_a.py │ │ ├── kubernetes │ │ │ └── test_kubernetes_template_challenge_a.py │ │ ├── memory │ │ │ ├── __init__.py │ │ │ ├── cassettes │ │ │ │ ├── test_memory_challenge_a │ │ │ │ │ └── test_memory_challenge_a.yaml │ │ │ │ ├── test_memory_challenge_b │ │ │ │ │ └── test_memory_challenge_b.yaml │ │ │ │ └── test_memory_challenge_c │ │ │ │ │ └── test_memory_challenge_c.yaml │ │ │ ├── test_memory_challenge_a.py │ │ │ ├── test_memory_challenge_b.py │ │ │ └── test_memory_challenge_c.py │ │ ├── test_challenge_should_be_formatted_properly.py │ │ └── utils.py │ ├── conftest.py │ ├── goal_oriented │ │ └── __init__.py │ ├── memory_tests.py │ ├── milvus_memory_tests.py │ ├── test_commands.py │ ├── test_execute_code.py │ ├── test_git_commands.py │ ├── test_google_search.py │ ├── test_llm_utils.py │ ├── test_local_cache.py │ ├── test_memory_management.py │ ├── test_setup.py │ └── weaviate_memory_tests.py ├── milvus_memory_test.py ├── mocks │ ├── __init__.py │ └── mock_commands.py ├── test_agent.py ├── test_agent_manager.py ├── test_ai_config.py ├── test_api_manager.py ├── test_commands.py ├── test_config.py ├── test_image_gen.py ├── test_logs.py ├── test_prompt_config.py ├── test_prompt_generator.py ├── test_token_counter.py ├── test_utils.py ├── test_workspace.py ├── unit │ ├── __init__.py │ ├── _test_json_parser.py │ ├── data │ │ └── test_plugins │ │ │ └── Auto-GPT-Plugin-Test-master.zip │ ├── models │ │ └── test_base_open_api_plugin.py │ ├── test_browse_scrape_links.py │ ├── test_browse_scrape_text.py │ ├── test_chat.py │ ├── test_file_operations.py │ ├── test_get_self_feedback.py │ ├── test_json_parser.py │ ├── test_json_utils_llm.py │ ├── test_llm_utils.py │ ├── test_plugins.py │ ├── test_spinner.py │ ├── test_url_validation.py │ └── test_web_selenium.py ├── utils.py └── vcr │ ├── __init__.py │ ├── openai_filter.py │ └── vcr_filter.py └── ui ├── .gitignore ├── api.py ├── app.py ├── examples.json └── utils.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | relative_files = true -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.env.template -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.envrc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | .github/workflows/ @Significant-Gravitas/Auto-GPT-Source 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1.bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.github/ISSUE_TEMPLATE/1.bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2.feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.github/ISSUE_TEMPLATE/2.feature.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/benchmarks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.github/workflows/benchmarks.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docker-cache-clean.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.github/workflows/docker-cache-clean.yml -------------------------------------------------------------------------------- /.github/workflows/docker-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.github/workflows/docker-ci.yml -------------------------------------------------------------------------------- /.github/workflows/docker-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.github/workflows/docker-release.yml -------------------------------------------------------------------------------- /.github/workflows/documentation-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.github/workflows/documentation-release.yml -------------------------------------------------------------------------------- /.github/workflows/pr-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.github/workflows/pr-label.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/docker-ci-summary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.github/workflows/scripts/docker-ci-summary.sh -------------------------------------------------------------------------------- /.github/workflows/scripts/docker-release-summary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.github/workflows/scripts/docker-release-summary.sh -------------------------------------------------------------------------------- /.github/workflows/sponsors_readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.github/workflows/sponsors_readme.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.sourcery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/.sourcery.yaml -------------------------------------------------------------------------------- /BULLETIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/BULLETIN.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/README.md -------------------------------------------------------------------------------- /autogpt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/__init__.py -------------------------------------------------------------------------------- /autogpt/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/__main__.py -------------------------------------------------------------------------------- /autogpt/agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/agent/__init__.py -------------------------------------------------------------------------------- /autogpt/agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/agent/agent.py -------------------------------------------------------------------------------- /autogpt/agent/agent_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/agent/agent_manager.py -------------------------------------------------------------------------------- /autogpt/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/app.py -------------------------------------------------------------------------------- /autogpt/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/cli.py -------------------------------------------------------------------------------- /autogpt/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/commands/__init__.py -------------------------------------------------------------------------------- /autogpt/commands/analyze_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/commands/analyze_code.py -------------------------------------------------------------------------------- /autogpt/commands/audio_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/commands/audio_text.py -------------------------------------------------------------------------------- /autogpt/commands/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/commands/command.py -------------------------------------------------------------------------------- /autogpt/commands/execute_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/commands/execute_code.py -------------------------------------------------------------------------------- /autogpt/commands/file_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/commands/file_operations.py -------------------------------------------------------------------------------- /autogpt/commands/generate_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/commands/generate_text.py -------------------------------------------------------------------------------- /autogpt/commands/git_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/commands/git_operations.py -------------------------------------------------------------------------------- /autogpt/commands/google_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/commands/google_search.py -------------------------------------------------------------------------------- /autogpt/commands/image_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/commands/image_gen.py -------------------------------------------------------------------------------- /autogpt/commands/improve_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/commands/improve_code.py -------------------------------------------------------------------------------- /autogpt/commands/places.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/commands/places.py -------------------------------------------------------------------------------- /autogpt/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/commands/search.py -------------------------------------------------------------------------------- /autogpt/commands/task_statuses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/commands/task_statuses.py -------------------------------------------------------------------------------- /autogpt/commands/times.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/commands/times.py -------------------------------------------------------------------------------- /autogpt/commands/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/commands/twitter.py -------------------------------------------------------------------------------- /autogpt/commands/web_playwright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/commands/web_playwright.py -------------------------------------------------------------------------------- /autogpt/commands/web_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/commands/web_requests.py -------------------------------------------------------------------------------- /autogpt/commands/web_selenium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/commands/web_selenium.py -------------------------------------------------------------------------------- /autogpt/commands/write_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/commands/write_tests.py -------------------------------------------------------------------------------- /autogpt/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/config/__init__.py -------------------------------------------------------------------------------- /autogpt/config/ai_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/config/ai_config.py -------------------------------------------------------------------------------- /autogpt/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/config/config.py -------------------------------------------------------------------------------- /autogpt/config/prompt_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/config/prompt_config.py -------------------------------------------------------------------------------- /autogpt/configurator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/configurator.py -------------------------------------------------------------------------------- /autogpt/js/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/js/overlay.js -------------------------------------------------------------------------------- /autogpt/json_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogpt/json_utils/json_fix_general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/json_utils/json_fix_general.py -------------------------------------------------------------------------------- /autogpt/json_utils/json_fix_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/json_utils/json_fix_llm.py -------------------------------------------------------------------------------- /autogpt/json_utils/llm_response_format_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/json_utils/llm_response_format_1.json -------------------------------------------------------------------------------- /autogpt/json_utils/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/json_utils/utilities.py -------------------------------------------------------------------------------- /autogpt/llm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/llm/__init__.py -------------------------------------------------------------------------------- /autogpt/llm/api_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/llm/api_manager.py -------------------------------------------------------------------------------- /autogpt/llm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/llm/base.py -------------------------------------------------------------------------------- /autogpt/llm/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/llm/chat.py -------------------------------------------------------------------------------- /autogpt/llm/llm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/llm/llm_utils.py -------------------------------------------------------------------------------- /autogpt/llm/modelsinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/llm/modelsinfo.py -------------------------------------------------------------------------------- /autogpt/llm/providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogpt/llm/providers/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/llm/providers/openai.py -------------------------------------------------------------------------------- /autogpt/llm/token_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/llm/token_counter.py -------------------------------------------------------------------------------- /autogpt/log_cycle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogpt/log_cycle/json_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/log_cycle/json_handler.py -------------------------------------------------------------------------------- /autogpt/log_cycle/log_cycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/log_cycle/log_cycle.py -------------------------------------------------------------------------------- /autogpt/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/logs.py -------------------------------------------------------------------------------- /autogpt/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/main.py -------------------------------------------------------------------------------- /autogpt/memory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/memory/__init__.py -------------------------------------------------------------------------------- /autogpt/memory/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/memory/base.py -------------------------------------------------------------------------------- /autogpt/memory/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/memory/local.py -------------------------------------------------------------------------------- /autogpt/memory/milvus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/memory/milvus.py -------------------------------------------------------------------------------- /autogpt/memory/no_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/memory/no_memory.py -------------------------------------------------------------------------------- /autogpt/memory/pinecone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/memory/pinecone.py -------------------------------------------------------------------------------- /autogpt/memory/redismem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/memory/redismem.py -------------------------------------------------------------------------------- /autogpt/memory/weaviate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/memory/weaviate.py -------------------------------------------------------------------------------- /autogpt/memory_management/store_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/memory_management/store_memory.py -------------------------------------------------------------------------------- /autogpt/memory_management/summary_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/memory_management/summary_memory.py -------------------------------------------------------------------------------- /autogpt/models/base_open_ai_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/models/base_open_ai_plugin.py -------------------------------------------------------------------------------- /autogpt/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/plugins.py -------------------------------------------------------------------------------- /autogpt/processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogpt/processing/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/processing/html.py -------------------------------------------------------------------------------- /autogpt/processing/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/processing/text.py -------------------------------------------------------------------------------- /autogpt/prompts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogpt/prompts/default_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/prompts/default_prompts.py -------------------------------------------------------------------------------- /autogpt/prompts/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/prompts/generator.py -------------------------------------------------------------------------------- /autogpt/prompts/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/prompts/prompt.py -------------------------------------------------------------------------------- /autogpt/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/setup.py -------------------------------------------------------------------------------- /autogpt/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/singleton.py -------------------------------------------------------------------------------- /autogpt/speech/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/speech/__init__.py -------------------------------------------------------------------------------- /autogpt/speech/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/speech/base.py -------------------------------------------------------------------------------- /autogpt/speech/brian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/speech/brian.py -------------------------------------------------------------------------------- /autogpt/speech/eleven_labs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/speech/eleven_labs.py -------------------------------------------------------------------------------- /autogpt/speech/gtts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/speech/gtts.py -------------------------------------------------------------------------------- /autogpt/speech/macos_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/speech/macos_tts.py -------------------------------------------------------------------------------- /autogpt/speech/say.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/speech/say.py -------------------------------------------------------------------------------- /autogpt/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/spinner.py -------------------------------------------------------------------------------- /autogpt/url_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogpt/url_utils/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/url_utils/validators.py -------------------------------------------------------------------------------- /autogpt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/utils.py -------------------------------------------------------------------------------- /autogpt/workspace/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/workspace/__init__.py -------------------------------------------------------------------------------- /autogpt/workspace/workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/autogpt/workspace/workspace.py -------------------------------------------------------------------------------- /azure.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/azure.yaml.template -------------------------------------------------------------------------------- /benchmark/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/benchmark_entrepreneur_gpt_with_difficult_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/benchmark/benchmark_entrepreneur_gpt_with_difficult_user.py -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/codecov.yml -------------------------------------------------------------------------------- /data/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_ingestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/data_ingestion.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/challenges/beat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docs/challenges/beat.md -------------------------------------------------------------------------------- /docs/challenges/building_challenges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docs/challenges/building_challenges.md -------------------------------------------------------------------------------- /docs/challenges/challenge_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docs/challenges/challenge_template.md -------------------------------------------------------------------------------- /docs/challenges/information_retrieval/challenge_a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docs/challenges/information_retrieval/challenge_a.md -------------------------------------------------------------------------------- /docs/challenges/information_retrieval/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docs/challenges/information_retrieval/introduction.md -------------------------------------------------------------------------------- /docs/challenges/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docs/challenges/introduction.md -------------------------------------------------------------------------------- /docs/challenges/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docs/challenges/list.md -------------------------------------------------------------------------------- /docs/challenges/memory/challenge_a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docs/challenges/memory/challenge_a.md -------------------------------------------------------------------------------- /docs/challenges/memory/challenge_b.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docs/challenges/memory/challenge_b.md -------------------------------------------------------------------------------- /docs/challenges/memory/challenge_c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docs/challenges/memory/challenge_c.md -------------------------------------------------------------------------------- /docs/challenges/memory/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docs/challenges/memory/introduction.md -------------------------------------------------------------------------------- /docs/challenges/submit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docs/challenges/submit.md -------------------------------------------------------------------------------- /docs/code-of-conduct.md: -------------------------------------------------------------------------------- 1 | ../CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/configuration/imagegen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docs/configuration/imagegen.md -------------------------------------------------------------------------------- /docs/configuration/memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docs/configuration/memory.md -------------------------------------------------------------------------------- /docs/configuration/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docs/configuration/search.md -------------------------------------------------------------------------------- /docs/configuration/voice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docs/configuration/voice.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- 1 | ../CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/imgs/openai-api-key-billing-paid-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docs/imgs/openai-api-key-billing-paid-account.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docs/plugins.md -------------------------------------------------------------------------------- /docs/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docs/setup.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docs/testing.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/docs/usage.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | from autogpt import main 2 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/mypy.ini -------------------------------------------------------------------------------- /plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/plugin.png -------------------------------------------------------------------------------- /plugins/__PUT_PLUGIN_ZIPS_HERE__: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prompt_settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/prompt_settings.yaml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/run.bat -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/run.sh -------------------------------------------------------------------------------- /run_continuous.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/run_continuous.bat -------------------------------------------------------------------------------- /run_continuous.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./run.sh --continuous $@ 4 | -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/check_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/scripts/check_requirements.py -------------------------------------------------------------------------------- /scripts/install_plugin_deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/scripts/install_plugin_deps.py -------------------------------------------------------------------------------- /slack/.gitignore: -------------------------------------------------------------------------------- 1 | auto_gpt_workspace/ 2 | nohup.out 3 | check.ipynb -------------------------------------------------------------------------------- /slack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/slack/README.md -------------------------------------------------------------------------------- /slack/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/slack/api.py -------------------------------------------------------------------------------- /slack/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/slack/app.py -------------------------------------------------------------------------------- /slack/requirements.txt: -------------------------------------------------------------------------------- 1 | slack-sdk==3.21.3 2 | fastapi==0.95.2 -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/context.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/agent_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/agent_factory.py -------------------------------------------------------------------------------- /tests/integration/cassettes/test_llm_utils/test_get_ada_embedding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/cassettes/test_llm_utils/test_get_ada_embedding.yaml -------------------------------------------------------------------------------- /tests/integration/cassettes/test_llm_utils/test_get_ada_embedding_large_context.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/cassettes/test_llm_utils/test_get_ada_embedding_large_context.yaml -------------------------------------------------------------------------------- /tests/integration/cassettes/test_local_cache/test_get_relevant.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/cassettes/test_local_cache/test_get_relevant.yaml -------------------------------------------------------------------------------- /tests/integration/cassettes/test_memory_management/test_save_memory_trimmed_from_context_window.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/cassettes/test_memory_management/test_save_memory_trimmed_from_context_window.yaml -------------------------------------------------------------------------------- /tests/integration/cassettes/test_setup/test_generate_aiconfig_automatic_default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/cassettes/test_setup/test_generate_aiconfig_automatic_default.yaml -------------------------------------------------------------------------------- /tests/integration/cassettes/test_setup/test_generate_aiconfig_automatic_fallback.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/cassettes/test_setup/test_generate_aiconfig_automatic_fallback.yaml -------------------------------------------------------------------------------- /tests/integration/cassettes/test_setup/test_generate_aiconfig_automatic_typical.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/cassettes/test_setup/test_generate_aiconfig_automatic_typical.yaml -------------------------------------------------------------------------------- /tests/integration/challenges/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/challenges/basic_abilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/challenges/basic_abilities/cassettes/test_browse_website/test_browse_website.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/challenges/basic_abilities/cassettes/test_browse_website/test_browse_website.yaml -------------------------------------------------------------------------------- /tests/integration/challenges/basic_abilities/cassettes/test_write_file/test_write_file.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/challenges/basic_abilities/cassettes/test_write_file/test_write_file.yaml -------------------------------------------------------------------------------- /tests/integration/challenges/basic_abilities/goal_oriented_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/challenges/basic_abilities/goal_oriented_tasks.md -------------------------------------------------------------------------------- /tests/integration/challenges/basic_abilities/test_browse_website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/challenges/basic_abilities/test_browse_website.py -------------------------------------------------------------------------------- /tests/integration/challenges/basic_abilities/test_write_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/challenges/basic_abilities/test_write_file.py -------------------------------------------------------------------------------- /tests/integration/challenges/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/challenges/conftest.py -------------------------------------------------------------------------------- /tests/integration/challenges/information_retrieval/test_information_retrieval_challenge_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/challenges/information_retrieval/test_information_retrieval_challenge_a.py -------------------------------------------------------------------------------- /tests/integration/challenges/kubernetes/test_kubernetes_template_challenge_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/challenges/kubernetes/test_kubernetes_template_challenge_a.py -------------------------------------------------------------------------------- /tests/integration/challenges/memory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/challenges/memory/cassettes/test_memory_challenge_a/test_memory_challenge_a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/challenges/memory/cassettes/test_memory_challenge_a/test_memory_challenge_a.yaml -------------------------------------------------------------------------------- /tests/integration/challenges/memory/cassettes/test_memory_challenge_b/test_memory_challenge_b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/challenges/memory/cassettes/test_memory_challenge_b/test_memory_challenge_b.yaml -------------------------------------------------------------------------------- /tests/integration/challenges/memory/cassettes/test_memory_challenge_c/test_memory_challenge_c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/challenges/memory/cassettes/test_memory_challenge_c/test_memory_challenge_c.yaml -------------------------------------------------------------------------------- /tests/integration/challenges/memory/test_memory_challenge_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/challenges/memory/test_memory_challenge_a.py -------------------------------------------------------------------------------- /tests/integration/challenges/memory/test_memory_challenge_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/challenges/memory/test_memory_challenge_b.py -------------------------------------------------------------------------------- /tests/integration/challenges/memory/test_memory_challenge_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/challenges/memory/test_memory_challenge_c.py -------------------------------------------------------------------------------- /tests/integration/challenges/test_challenge_should_be_formatted_properly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/challenges/test_challenge_should_be_formatted_properly.py -------------------------------------------------------------------------------- /tests/integration/challenges/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/challenges/utils.py -------------------------------------------------------------------------------- /tests/integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/conftest.py -------------------------------------------------------------------------------- /tests/integration/goal_oriented/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/memory_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/memory_tests.py -------------------------------------------------------------------------------- /tests/integration/milvus_memory_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/milvus_memory_tests.py -------------------------------------------------------------------------------- /tests/integration/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/test_commands.py -------------------------------------------------------------------------------- /tests/integration/test_execute_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/test_execute_code.py -------------------------------------------------------------------------------- /tests/integration/test_git_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/test_git_commands.py -------------------------------------------------------------------------------- /tests/integration/test_google_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/test_google_search.py -------------------------------------------------------------------------------- /tests/integration/test_llm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/test_llm_utils.py -------------------------------------------------------------------------------- /tests/integration/test_local_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/test_local_cache.py -------------------------------------------------------------------------------- /tests/integration/test_memory_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/test_memory_management.py -------------------------------------------------------------------------------- /tests/integration/test_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/test_setup.py -------------------------------------------------------------------------------- /tests/integration/weaviate_memory_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/integration/weaviate_memory_tests.py -------------------------------------------------------------------------------- /tests/milvus_memory_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/milvus_memory_test.py -------------------------------------------------------------------------------- /tests/mocks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mocks/mock_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/mocks/mock_commands.py -------------------------------------------------------------------------------- /tests/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/test_agent.py -------------------------------------------------------------------------------- /tests/test_agent_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/test_agent_manager.py -------------------------------------------------------------------------------- /tests/test_ai_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/test_ai_config.py -------------------------------------------------------------------------------- /tests/test_api_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/test_api_manager.py -------------------------------------------------------------------------------- /tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/test_commands.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_image_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/test_image_gen.py -------------------------------------------------------------------------------- /tests/test_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/test_logs.py -------------------------------------------------------------------------------- /tests/test_prompt_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/test_prompt_config.py -------------------------------------------------------------------------------- /tests/test_prompt_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/test_prompt_generator.py -------------------------------------------------------------------------------- /tests/test_token_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/test_token_counter.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/test_workspace.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/_test_json_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/unit/_test_json_parser.py -------------------------------------------------------------------------------- /tests/unit/data/test_plugins/Auto-GPT-Plugin-Test-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/unit/data/test_plugins/Auto-GPT-Plugin-Test-master.zip -------------------------------------------------------------------------------- /tests/unit/models/test_base_open_api_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/unit/models/test_base_open_api_plugin.py -------------------------------------------------------------------------------- /tests/unit/test_browse_scrape_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/unit/test_browse_scrape_links.py -------------------------------------------------------------------------------- /tests/unit/test_browse_scrape_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/unit/test_browse_scrape_text.py -------------------------------------------------------------------------------- /tests/unit/test_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/unit/test_chat.py -------------------------------------------------------------------------------- /tests/unit/test_file_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/unit/test_file_operations.py -------------------------------------------------------------------------------- /tests/unit/test_get_self_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/unit/test_get_self_feedback.py -------------------------------------------------------------------------------- /tests/unit/test_json_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/unit/test_json_parser.py -------------------------------------------------------------------------------- /tests/unit/test_json_utils_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/unit/test_json_utils_llm.py -------------------------------------------------------------------------------- /tests/unit/test_llm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/unit/test_llm_utils.py -------------------------------------------------------------------------------- /tests/unit/test_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/unit/test_plugins.py -------------------------------------------------------------------------------- /tests/unit/test_spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/unit/test_spinner.py -------------------------------------------------------------------------------- /tests/unit/test_url_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/unit/test_url_validation.py -------------------------------------------------------------------------------- /tests/unit/test_web_selenium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/unit/test_web_selenium.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tests/vcr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/vcr/openai_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/vcr/openai_filter.py -------------------------------------------------------------------------------- /tests/vcr/vcr_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/tests/vcr/vcr_filter.py -------------------------------------------------------------------------------- /ui/.gitignore: -------------------------------------------------------------------------------- 1 | state/* 2 | outputs.zip -------------------------------------------------------------------------------- /ui/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/ui/api.py -------------------------------------------------------------------------------- /ui/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/ui/app.py -------------------------------------------------------------------------------- /ui/examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/ui/examples.json -------------------------------------------------------------------------------- /ui/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChatGPTUp/Auto-GPT/HEAD/ui/utils.py --------------------------------------------------------------------------------