gitextract_o5gl23br/ ├── Chaos-GPT-master/ │ └── Auto-GPT-master/ │ ├── CONTRIBUTING.md │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── azure.yaml.template │ ├── main.py │ ├── outputs/ │ │ ├── guest_post_email.txt │ │ ├── how_to_save_money_on_energy_bills.txt │ │ ├── logs/ │ │ │ ├── message-log-1.txt │ │ │ ├── message-log-2.txt │ │ │ ├── message-log-3.txt │ │ │ └── message-log-4.txt │ │ ├── post1_output.txt │ │ └── post2_output.txt │ ├── requirements.txt │ ├── scripts/ │ │ ├── __init__.py │ │ ├── agent_manager.py │ │ ├── ai_config.py │ │ ├── ai_functions.py │ │ ├── browse.py │ │ ├── call_ai_function.py │ │ ├── chat.py │ │ ├── commands.py │ │ ├── config.py │ │ ├── data/ │ │ │ └── prompt.txt │ │ ├── data.py │ │ ├── execute_code.py │ │ ├── file_operations.py │ │ ├── image_gen.py │ │ ├── json_parser.py │ │ ├── json_utils.py │ │ ├── llm_utils.py │ │ ├── logger.py │ │ ├── main.py │ │ ├── memory/ │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── local.py │ │ │ ├── pinecone.py │ │ │ └── redismem.py │ │ ├── speak.py │ │ ├── spinner.py │ │ ├── token_counter.py │ │ └── utils.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── context.py │ │ ├── integration/ │ │ │ └── memory_tests.py │ │ ├── local_cache_test.py │ │ ├── test_config.py │ │ ├── test_json_parser.py │ │ └── unit/ │ │ ├── json_tests.py │ │ ├── test_browse_scrape_links.py │ │ └── test_browse_scrape_text.py │ └── tests.py └── README.md