├── .gitignore ├── LICENSE ├── README.md ├── code_gen ├── README.md └── code_gen.py ├── context_management ├── README.md ├── context_management.py └── memory.py └── reasoners ├── README.md ├── internal_monologue.png ├── internal_monologue.py ├── objective_oriented.py ├── structured.py └── structured2.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .chatgpt_history -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Globe-Engineer/agents/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Globe-Engineer/agents/HEAD/README.md -------------------------------------------------------------------------------- /code_gen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Globe-Engineer/agents/HEAD/code_gen/README.md -------------------------------------------------------------------------------- /code_gen/code_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Globe-Engineer/agents/HEAD/code_gen/code_gen.py -------------------------------------------------------------------------------- /context_management/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Globe-Engineer/agents/HEAD/context_management/README.md -------------------------------------------------------------------------------- /context_management/context_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Globe-Engineer/agents/HEAD/context_management/context_management.py -------------------------------------------------------------------------------- /context_management/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Globe-Engineer/agents/HEAD/context_management/memory.py -------------------------------------------------------------------------------- /reasoners/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Globe-Engineer/agents/HEAD/reasoners/README.md -------------------------------------------------------------------------------- /reasoners/internal_monologue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Globe-Engineer/agents/HEAD/reasoners/internal_monologue.png -------------------------------------------------------------------------------- /reasoners/internal_monologue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Globe-Engineer/agents/HEAD/reasoners/internal_monologue.py -------------------------------------------------------------------------------- /reasoners/objective_oriented.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Globe-Engineer/agents/HEAD/reasoners/objective_oriented.py -------------------------------------------------------------------------------- /reasoners/structured.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Globe-Engineer/agents/HEAD/reasoners/structured.py -------------------------------------------------------------------------------- /reasoners/structured2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Globe-Engineer/agents/HEAD/reasoners/structured2.py --------------------------------------------------------------------------------