├── .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 ├── .gitignore ├── .gitmodules ├── .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 │ ├── file_operations_utils.py │ ├── git_operations.py │ ├── google_search.py │ ├── image_gen.py │ ├── improve_code.py │ ├── task_statuses.py │ ├── times.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 │ ├── llm_response_format_1.json │ └── utilities.py ├── llm │ ├── __init__.py │ ├── api_manager.py │ ├── base.py │ ├── chat.py │ ├── providers │ │ ├── __init__.py │ │ └── openai.py │ └── utils │ │ ├── __init__.py │ │ ├── claude.py │ │ └── token_counter.py ├── log_cycle │ ├── __init__.py │ ├── json_handler.py │ └── log_cycle.py ├── logs.py ├── main.py ├── memory │ ├── message_history.py │ └── vector │ │ ├── __init__.py │ │ ├── memory_item.py │ │ ├── providers │ │ ├── __init__.py │ │ ├── base.py │ │ ├── json_file.py │ │ └── no_memory.py │ │ └── utils.py ├── models │ └── base_open_ai_plugin.py ├── plugins │ ├── __init__.py │ ├── plugin_config.py │ └── plugins_config.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 │ ├── eleven_labs.py │ ├── gtts.py │ ├── macos_tts.py │ ├── say.py │ └── stream_elements_speech.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 ├── demo.gif ├── docker-compose.yml ├── docs ├── challenges │ ├── beat.md │ ├── building_challenges.md │ ├── challenge_template.md │ ├── information_retrieval │ │ ├── challenge_a.md │ │ ├── challenge_b.md │ │ └── introduction.md │ ├── introduction.md │ ├── list.md │ ├── memory │ │ ├── challenge_a.md │ │ ├── challenge_b.md │ │ ├── challenge_c.md │ │ ├── challenge_d.md │ │ └── introduction.md │ └── submit.md ├── code-of-conduct.md ├── configuration │ ├── imagegen.md │ ├── memory.md │ ├── options.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 ├── hooks ├── post-checkout └── post-rewrite ├── main.py ├── mkdocs.yml ├── mypy.ini ├── netlify.toml ├── plugin.png ├── plugins ├── __PUT_PLUGIN_ZIPS_HERE__ └── telegram │ ├── __init__.py │ └── telegram_chat.py ├── plugins_config.yaml ├── 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 ├── tests.py └── tests ├── __init__.py ├── challenges ├── __init__.py ├── basic_abilities │ ├── __init__.py │ ├── goal_oriented_tasks.md │ ├── test_browse_website.py │ └── test_write_file.py ├── challenge_decorator │ ├── __init__.py │ ├── challenge.py │ ├── challenge_decorator.py │ ├── challenge_utils.py │ └── score_utils.py ├── conftest.py ├── current_score.json ├── debug_code │ ├── data │ │ ├── code.py │ │ └── test.py │ └── test_debug_code_challenge_a.py ├── information_retrieval │ ├── test_information_retrieval_challenge_a.py │ └── test_information_retrieval_challenge_b.py ├── kubernetes │ └── test_kubernetes_template_challenge_a.py ├── memory │ ├── __init__.py │ ├── test_memory_challenge_a.py │ ├── test_memory_challenge_b.py │ ├── test_memory_challenge_c.py │ └── test_memory_challenge_d.py ├── test_challenge_should_be_formatted_properly.py ├── utils.py └── utils │ └── build_current_score.py ├── conftest.py ├── context.py ├── integration ├── __init__.py ├── agent_factory.py ├── goal_oriented │ └── __init__.py ├── memory │ ├── __init__.py │ ├── conftest.py │ ├── test_json_file_memory.py │ └── utils.py ├── test_execute_code.py ├── test_image_gen.py ├── test_setup.py └── test_web_selenium.py ├── mocks ├── __init__.py └── mock_commands.py ├── unit ├── __init__.py ├── _test_json_parser.py ├── data │ └── test_plugins │ │ ├── Auto-GPT-Plugin-Test-master.zip │ │ └── auto_gpt_guanaco │ │ └── __init__.py ├── models │ └── test_base_open_api_plugin.py ├── test_agent.py ├── test_agent_manager.py ├── test_ai_config.py ├── test_api_manager.py ├── test_browse_scrape_links.py ├── test_browse_scrape_text.py ├── test_commands.py ├── test_config.py ├── test_execute_command.py ├── test_file_operations.py ├── test_get_self_feedback.py ├── test_git_commands.py ├── test_google_search.py ├── test_logs.py ├── test_make_agent.py ├── test_message_history.py ├── test_plugins.py ├── test_prompt_config.py ├── test_prompt_generator.py ├── test_spinner.py ├── test_text_file_parsers.py ├── test_token_counter.py ├── test_url_validation.py ├── test_utils.py └── test_workspace.py ├── utils.py └── vcr ├── __init__.py ├── openai_filter.py └── vcr_filter.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | relative_files = true -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.devcontainer/docker-compose.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.env.template -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.envrc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | .github/workflows/ @Significant-Gravitas/Auto-GPT-Source 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1.bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.github/ISSUE_TEMPLATE/1.bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2.feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.github/ISSUE_TEMPLATE/2.feature.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/benchmarks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.github/workflows/benchmarks.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docker-cache-clean.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.github/workflows/docker-cache-clean.yml -------------------------------------------------------------------------------- /.github/workflows/docker-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.github/workflows/docker-ci.yml -------------------------------------------------------------------------------- /.github/workflows/docker-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.github/workflows/docker-release.yml -------------------------------------------------------------------------------- /.github/workflows/documentation-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.github/workflows/documentation-release.yml -------------------------------------------------------------------------------- /.github/workflows/pr-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.github/workflows/pr-label.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/docker-ci-summary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.github/workflows/scripts/docker-ci-summary.sh -------------------------------------------------------------------------------- /.github/workflows/scripts/docker-release-summary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.github/workflows/scripts/docker-release-summary.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.gitmodules -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.sourcery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/.sourcery.yaml -------------------------------------------------------------------------------- /BULLETIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/BULLETIN.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/README.md -------------------------------------------------------------------------------- /autogpt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/__init__.py -------------------------------------------------------------------------------- /autogpt/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/__main__.py -------------------------------------------------------------------------------- /autogpt/agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/agent/__init__.py -------------------------------------------------------------------------------- /autogpt/agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/agent/agent.py -------------------------------------------------------------------------------- /autogpt/agent/agent_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/agent/agent_manager.py -------------------------------------------------------------------------------- /autogpt/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/app.py -------------------------------------------------------------------------------- /autogpt/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/cli.py -------------------------------------------------------------------------------- /autogpt/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogpt/commands/analyze_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/commands/analyze_code.py -------------------------------------------------------------------------------- /autogpt/commands/audio_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/commands/audio_text.py -------------------------------------------------------------------------------- /autogpt/commands/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/commands/command.py -------------------------------------------------------------------------------- /autogpt/commands/execute_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/commands/execute_code.py -------------------------------------------------------------------------------- /autogpt/commands/file_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/commands/file_operations.py -------------------------------------------------------------------------------- /autogpt/commands/file_operations_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/commands/file_operations_utils.py -------------------------------------------------------------------------------- /autogpt/commands/git_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/commands/git_operations.py -------------------------------------------------------------------------------- /autogpt/commands/google_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/commands/google_search.py -------------------------------------------------------------------------------- /autogpt/commands/image_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/commands/image_gen.py -------------------------------------------------------------------------------- /autogpt/commands/improve_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/commands/improve_code.py -------------------------------------------------------------------------------- /autogpt/commands/task_statuses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/commands/task_statuses.py -------------------------------------------------------------------------------- /autogpt/commands/times.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/commands/times.py -------------------------------------------------------------------------------- /autogpt/commands/web_playwright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/commands/web_playwright.py -------------------------------------------------------------------------------- /autogpt/commands/web_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/commands/web_requests.py -------------------------------------------------------------------------------- /autogpt/commands/web_selenium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/commands/web_selenium.py -------------------------------------------------------------------------------- /autogpt/commands/write_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/commands/write_tests.py -------------------------------------------------------------------------------- /autogpt/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/config/__init__.py -------------------------------------------------------------------------------- /autogpt/config/ai_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/config/ai_config.py -------------------------------------------------------------------------------- /autogpt/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/config/config.py -------------------------------------------------------------------------------- /autogpt/config/prompt_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/config/prompt_config.py -------------------------------------------------------------------------------- /autogpt/configurator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/configurator.py -------------------------------------------------------------------------------- /autogpt/js/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/js/overlay.js -------------------------------------------------------------------------------- /autogpt/json_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogpt/json_utils/llm_response_format_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/json_utils/llm_response_format_1.json -------------------------------------------------------------------------------- /autogpt/json_utils/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/json_utils/utilities.py -------------------------------------------------------------------------------- /autogpt/llm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/llm/__init__.py -------------------------------------------------------------------------------- /autogpt/llm/api_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/llm/api_manager.py -------------------------------------------------------------------------------- /autogpt/llm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/llm/base.py -------------------------------------------------------------------------------- /autogpt/llm/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/llm/chat.py -------------------------------------------------------------------------------- /autogpt/llm/providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogpt/llm/providers/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/llm/providers/openai.py -------------------------------------------------------------------------------- /autogpt/llm/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/llm/utils/__init__.py -------------------------------------------------------------------------------- /autogpt/llm/utils/claude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/llm/utils/claude.py -------------------------------------------------------------------------------- /autogpt/llm/utils/token_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/llm/utils/token_counter.py -------------------------------------------------------------------------------- /autogpt/log_cycle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogpt/log_cycle/json_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/log_cycle/json_handler.py -------------------------------------------------------------------------------- /autogpt/log_cycle/log_cycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/log_cycle/log_cycle.py -------------------------------------------------------------------------------- /autogpt/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/logs.py -------------------------------------------------------------------------------- /autogpt/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/main.py -------------------------------------------------------------------------------- /autogpt/memory/message_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/memory/message_history.py -------------------------------------------------------------------------------- /autogpt/memory/vector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/memory/vector/__init__.py -------------------------------------------------------------------------------- /autogpt/memory/vector/memory_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/memory/vector/memory_item.py -------------------------------------------------------------------------------- /autogpt/memory/vector/providers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/memory/vector/providers/__init__.py -------------------------------------------------------------------------------- /autogpt/memory/vector/providers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/memory/vector/providers/base.py -------------------------------------------------------------------------------- /autogpt/memory/vector/providers/json_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/memory/vector/providers/json_file.py -------------------------------------------------------------------------------- /autogpt/memory/vector/providers/no_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/memory/vector/providers/no_memory.py -------------------------------------------------------------------------------- /autogpt/memory/vector/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/memory/vector/utils.py -------------------------------------------------------------------------------- /autogpt/models/base_open_ai_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/models/base_open_ai_plugin.py -------------------------------------------------------------------------------- /autogpt/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/plugins/__init__.py -------------------------------------------------------------------------------- /autogpt/plugins/plugin_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/plugins/plugin_config.py -------------------------------------------------------------------------------- /autogpt/plugins/plugins_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/plugins/plugins_config.py -------------------------------------------------------------------------------- /autogpt/processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogpt/processing/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/processing/html.py -------------------------------------------------------------------------------- /autogpt/processing/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/processing/text.py -------------------------------------------------------------------------------- /autogpt/prompts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogpt/prompts/default_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/prompts/default_prompts.py -------------------------------------------------------------------------------- /autogpt/prompts/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/prompts/generator.py -------------------------------------------------------------------------------- /autogpt/prompts/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/prompts/prompt.py -------------------------------------------------------------------------------- /autogpt/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/setup.py -------------------------------------------------------------------------------- /autogpt/singleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/singleton.py -------------------------------------------------------------------------------- /autogpt/speech/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/speech/__init__.py -------------------------------------------------------------------------------- /autogpt/speech/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/speech/base.py -------------------------------------------------------------------------------- /autogpt/speech/eleven_labs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/speech/eleven_labs.py -------------------------------------------------------------------------------- /autogpt/speech/gtts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/speech/gtts.py -------------------------------------------------------------------------------- /autogpt/speech/macos_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/speech/macos_tts.py -------------------------------------------------------------------------------- /autogpt/speech/say.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/speech/say.py -------------------------------------------------------------------------------- /autogpt/speech/stream_elements_speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/speech/stream_elements_speech.py -------------------------------------------------------------------------------- /autogpt/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/spinner.py -------------------------------------------------------------------------------- /autogpt/url_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autogpt/url_utils/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/url_utils/validators.py -------------------------------------------------------------------------------- /autogpt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/utils.py -------------------------------------------------------------------------------- /autogpt/workspace/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/workspace/__init__.py -------------------------------------------------------------------------------- /autogpt/workspace/workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/autogpt/workspace/workspace.py -------------------------------------------------------------------------------- /azure.yaml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/azure.yaml.template -------------------------------------------------------------------------------- /benchmark/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /benchmark/benchmark_entrepreneur_gpt_with_difficult_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/benchmark/benchmark_entrepreneur_gpt_with_difficult_user.py -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/codecov.yml -------------------------------------------------------------------------------- /data/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_ingestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/data_ingestion.py -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/demo.gif -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/challenges/beat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/challenges/beat.md -------------------------------------------------------------------------------- /docs/challenges/building_challenges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/challenges/building_challenges.md -------------------------------------------------------------------------------- /docs/challenges/challenge_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/challenges/challenge_template.md -------------------------------------------------------------------------------- /docs/challenges/information_retrieval/challenge_a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/challenges/information_retrieval/challenge_a.md -------------------------------------------------------------------------------- /docs/challenges/information_retrieval/challenge_b.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/challenges/information_retrieval/challenge_b.md -------------------------------------------------------------------------------- /docs/challenges/information_retrieval/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/challenges/information_retrieval/introduction.md -------------------------------------------------------------------------------- /docs/challenges/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/challenges/introduction.md -------------------------------------------------------------------------------- /docs/challenges/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/challenges/list.md -------------------------------------------------------------------------------- /docs/challenges/memory/challenge_a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/challenges/memory/challenge_a.md -------------------------------------------------------------------------------- /docs/challenges/memory/challenge_b.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/challenges/memory/challenge_b.md -------------------------------------------------------------------------------- /docs/challenges/memory/challenge_c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/challenges/memory/challenge_c.md -------------------------------------------------------------------------------- /docs/challenges/memory/challenge_d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/challenges/memory/challenge_d.md -------------------------------------------------------------------------------- /docs/challenges/memory/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/challenges/memory/introduction.md -------------------------------------------------------------------------------- /docs/challenges/submit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/challenges/submit.md -------------------------------------------------------------------------------- /docs/code-of-conduct.md: -------------------------------------------------------------------------------- 1 | ../CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/configuration/imagegen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/configuration/imagegen.md -------------------------------------------------------------------------------- /docs/configuration/memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/configuration/memory.md -------------------------------------------------------------------------------- /docs/configuration/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/configuration/options.md -------------------------------------------------------------------------------- /docs/configuration/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/configuration/search.md -------------------------------------------------------------------------------- /docs/configuration/voice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/configuration/voice.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- 1 | ../CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/imgs/openai-api-key-billing-paid-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/imgs/openai-api-key-billing-paid-account.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/plugins.md -------------------------------------------------------------------------------- /docs/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/setup.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/testing.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/docs/usage.md -------------------------------------------------------------------------------- /hooks/post-checkout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/hooks/post-checkout -------------------------------------------------------------------------------- /hooks/post-rewrite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/hooks/post-rewrite -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | from autogpt import main 2 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/mypy.ini -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/netlify.toml -------------------------------------------------------------------------------- /plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/plugin.png -------------------------------------------------------------------------------- /plugins/__PUT_PLUGIN_ZIPS_HERE__: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/telegram/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/plugins/telegram/__init__.py -------------------------------------------------------------------------------- /plugins/telegram/telegram_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/plugins/telegram/telegram_chat.py -------------------------------------------------------------------------------- /plugins_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/plugins_config.yaml -------------------------------------------------------------------------------- /prompt_settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/prompt_settings.yaml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/run.bat -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/run.sh -------------------------------------------------------------------------------- /run_continuous.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/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/xiahan4956/Auto_Claude_100k/HEAD/scripts/check_requirements.py -------------------------------------------------------------------------------- /scripts/install_plugin_deps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/scripts/install_plugin_deps.py -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/challenges/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/challenges/basic_abilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/challenges/basic_abilities/goal_oriented_tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/challenges/basic_abilities/goal_oriented_tasks.md -------------------------------------------------------------------------------- /tests/challenges/basic_abilities/test_browse_website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/challenges/basic_abilities/test_browse_website.py -------------------------------------------------------------------------------- /tests/challenges/basic_abilities/test_write_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/challenges/basic_abilities/test_write_file.py -------------------------------------------------------------------------------- /tests/challenges/challenge_decorator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/challenges/challenge_decorator/challenge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/challenges/challenge_decorator/challenge.py -------------------------------------------------------------------------------- /tests/challenges/challenge_decorator/challenge_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/challenges/challenge_decorator/challenge_decorator.py -------------------------------------------------------------------------------- /tests/challenges/challenge_decorator/challenge_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/challenges/challenge_decorator/challenge_utils.py -------------------------------------------------------------------------------- /tests/challenges/challenge_decorator/score_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/challenges/challenge_decorator/score_utils.py -------------------------------------------------------------------------------- /tests/challenges/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/challenges/conftest.py -------------------------------------------------------------------------------- /tests/challenges/current_score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/challenges/current_score.json -------------------------------------------------------------------------------- /tests/challenges/debug_code/data/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/challenges/debug_code/data/code.py -------------------------------------------------------------------------------- /tests/challenges/debug_code/data/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/challenges/debug_code/data/test.py -------------------------------------------------------------------------------- /tests/challenges/debug_code/test_debug_code_challenge_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/challenges/debug_code/test_debug_code_challenge_a.py -------------------------------------------------------------------------------- /tests/challenges/information_retrieval/test_information_retrieval_challenge_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/challenges/information_retrieval/test_information_retrieval_challenge_a.py -------------------------------------------------------------------------------- /tests/challenges/information_retrieval/test_information_retrieval_challenge_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/challenges/information_retrieval/test_information_retrieval_challenge_b.py -------------------------------------------------------------------------------- /tests/challenges/kubernetes/test_kubernetes_template_challenge_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/challenges/kubernetes/test_kubernetes_template_challenge_a.py -------------------------------------------------------------------------------- /tests/challenges/memory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/challenges/memory/test_memory_challenge_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/challenges/memory/test_memory_challenge_a.py -------------------------------------------------------------------------------- /tests/challenges/memory/test_memory_challenge_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/challenges/memory/test_memory_challenge_b.py -------------------------------------------------------------------------------- /tests/challenges/memory/test_memory_challenge_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/challenges/memory/test_memory_challenge_c.py -------------------------------------------------------------------------------- /tests/challenges/memory/test_memory_challenge_d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/challenges/memory/test_memory_challenge_d.py -------------------------------------------------------------------------------- /tests/challenges/test_challenge_should_be_formatted_properly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/challenges/test_challenge_should_be_formatted_properly.py -------------------------------------------------------------------------------- /tests/challenges/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/challenges/utils.py -------------------------------------------------------------------------------- /tests/challenges/utils/build_current_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/challenges/utils/build_current_score.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/context.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/agent_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/integration/agent_factory.py -------------------------------------------------------------------------------- /tests/integration/goal_oriented/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/memory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/memory/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/integration/memory/conftest.py -------------------------------------------------------------------------------- /tests/integration/memory/test_json_file_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/integration/memory/test_json_file_memory.py -------------------------------------------------------------------------------- /tests/integration/memory/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/integration/memory/utils.py -------------------------------------------------------------------------------- /tests/integration/test_execute_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/integration/test_execute_code.py -------------------------------------------------------------------------------- /tests/integration/test_image_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/integration/test_image_gen.py -------------------------------------------------------------------------------- /tests/integration/test_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/integration/test_setup.py -------------------------------------------------------------------------------- /tests/integration/test_web_selenium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/integration/test_web_selenium.py -------------------------------------------------------------------------------- /tests/mocks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mocks/mock_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/mocks/mock_commands.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/_test_json_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/_test_json_parser.py -------------------------------------------------------------------------------- /tests/unit/data/test_plugins/Auto-GPT-Plugin-Test-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/data/test_plugins/Auto-GPT-Plugin-Test-master.zip -------------------------------------------------------------------------------- /tests/unit/data/test_plugins/auto_gpt_guanaco/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/data/test_plugins/auto_gpt_guanaco/__init__.py -------------------------------------------------------------------------------- /tests/unit/models/test_base_open_api_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/models/test_base_open_api_plugin.py -------------------------------------------------------------------------------- /tests/unit/test_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_agent.py -------------------------------------------------------------------------------- /tests/unit/test_agent_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_agent_manager.py -------------------------------------------------------------------------------- /tests/unit/test_ai_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_ai_config.py -------------------------------------------------------------------------------- /tests/unit/test_api_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_api_manager.py -------------------------------------------------------------------------------- /tests/unit/test_browse_scrape_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_browse_scrape_links.py -------------------------------------------------------------------------------- /tests/unit/test_browse_scrape_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_browse_scrape_text.py -------------------------------------------------------------------------------- /tests/unit/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_commands.py -------------------------------------------------------------------------------- /tests/unit/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_config.py -------------------------------------------------------------------------------- /tests/unit/test_execute_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_execute_command.py -------------------------------------------------------------------------------- /tests/unit/test_file_operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_file_operations.py -------------------------------------------------------------------------------- /tests/unit/test_get_self_feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_get_self_feedback.py -------------------------------------------------------------------------------- /tests/unit/test_git_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_git_commands.py -------------------------------------------------------------------------------- /tests/unit/test_google_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_google_search.py -------------------------------------------------------------------------------- /tests/unit/test_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_logs.py -------------------------------------------------------------------------------- /tests/unit/test_make_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_make_agent.py -------------------------------------------------------------------------------- /tests/unit/test_message_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_message_history.py -------------------------------------------------------------------------------- /tests/unit/test_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_plugins.py -------------------------------------------------------------------------------- /tests/unit/test_prompt_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_prompt_config.py -------------------------------------------------------------------------------- /tests/unit/test_prompt_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_prompt_generator.py -------------------------------------------------------------------------------- /tests/unit/test_spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_spinner.py -------------------------------------------------------------------------------- /tests/unit/test_text_file_parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_text_file_parsers.py -------------------------------------------------------------------------------- /tests/unit/test_token_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_token_counter.py -------------------------------------------------------------------------------- /tests/unit/test_url_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_url_validation.py -------------------------------------------------------------------------------- /tests/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_utils.py -------------------------------------------------------------------------------- /tests/unit/test_workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/unit/test_workspace.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tests/vcr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/vcr/__init__.py -------------------------------------------------------------------------------- /tests/vcr/openai_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/vcr/openai_filter.py -------------------------------------------------------------------------------- /tests/vcr/vcr_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiahan4956/Auto_Claude_100k/HEAD/tests/vcr/vcr_filter.py --------------------------------------------------------------------------------