├── .gitignore ├── LICENSE ├── README.md ├── agorabanner.png ├── aot.png ├── aot ├── __init__.py ├── main.py └── openai.py ├── examples.py ├── neural_search_example.py ├── openai.logs ├── prompts ├── 1.txt └── 2.txt ├── pyproject.toml └── thought_cache_error.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Algorithm-Of-Thoughts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Algorithm-Of-Thoughts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Algorithm-Of-Thoughts/HEAD/README.md -------------------------------------------------------------------------------- /agorabanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Algorithm-Of-Thoughts/HEAD/agorabanner.png -------------------------------------------------------------------------------- /aot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Algorithm-Of-Thoughts/HEAD/aot.png -------------------------------------------------------------------------------- /aot/__init__.py: -------------------------------------------------------------------------------- 1 | from aot.main import AoT 2 | -------------------------------------------------------------------------------- /aot/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Algorithm-Of-Thoughts/HEAD/aot/main.py -------------------------------------------------------------------------------- /aot/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Algorithm-Of-Thoughts/HEAD/aot/openai.py -------------------------------------------------------------------------------- /examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Algorithm-Of-Thoughts/HEAD/examples.py -------------------------------------------------------------------------------- /neural_search_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Algorithm-Of-Thoughts/HEAD/neural_search_example.py -------------------------------------------------------------------------------- /openai.logs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Algorithm-Of-Thoughts/HEAD/openai.logs -------------------------------------------------------------------------------- /prompts/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Algorithm-Of-Thoughts/HEAD/prompts/1.txt -------------------------------------------------------------------------------- /prompts/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Algorithm-Of-Thoughts/HEAD/prompts/2.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Algorithm-Of-Thoughts/HEAD/pyproject.toml -------------------------------------------------------------------------------- /thought_cache_error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/Algorithm-Of-Thoughts/HEAD/thought_cache_error.json --------------------------------------------------------------------------------