├── .gitignore ├── LICENSE ├── README.md ├── demos ├── rec-tic-tac.py └── tic-tac.py ├── frontend ├── .gitignore ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── favicon.ico │ ├── index.html │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── api.js │ ├── components │ │ └── RecursiveThinkingInterface.jsx │ ├── context │ │ └── RecThinkContext.js │ ├── index.css │ ├── index.js │ └── reportWebVitals.js └── tailwind.config.js ├── install-dependencies.bat ├── non-rec.png ├── rec.PNG ├── recthink_web.py ├── recursive_thinking_ai.py ├── requirements.txt └── start-recthink.bat /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | venv 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/README.md -------------------------------------------------------------------------------- /demos/rec-tic-tac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/demos/rec-tic-tac.py -------------------------------------------------------------------------------- /demos/tic-tac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/demos/tic-tac.py -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/frontend/package-lock.json -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/frontend/postcss.config.js -------------------------------------------------------------------------------- /frontend/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/frontend/public/favicon.ico -------------------------------------------------------------------------------- /frontend/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/frontend/public/index.html -------------------------------------------------------------------------------- /frontend/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/frontend/public/manifest.json -------------------------------------------------------------------------------- /frontend/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/frontend/public/robots.txt -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/frontend/src/App.css -------------------------------------------------------------------------------- /frontend/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/frontend/src/App.js -------------------------------------------------------------------------------- /frontend/src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/frontend/src/api.js -------------------------------------------------------------------------------- /frontend/src/components/RecursiveThinkingInterface.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/frontend/src/components/RecursiveThinkingInterface.jsx -------------------------------------------------------------------------------- /frontend/src/context/RecThinkContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/frontend/src/context/RecThinkContext.js -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/frontend/src/index.css -------------------------------------------------------------------------------- /frontend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/frontend/src/index.js -------------------------------------------------------------------------------- /frontend/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/frontend/src/reportWebVitals.js -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /install-dependencies.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/install-dependencies.bat -------------------------------------------------------------------------------- /non-rec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/non-rec.png -------------------------------------------------------------------------------- /rec.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/rec.PNG -------------------------------------------------------------------------------- /recthink_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/recthink_web.py -------------------------------------------------------------------------------- /recursive_thinking_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/recursive_thinking_ai.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/requirements.txt -------------------------------------------------------------------------------- /start-recthink.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PhialsBasement/Chain-of-Recursive-Thoughts/HEAD/start-recthink.bat --------------------------------------------------------------------------------