├── .gitignore ├── README.md ├── app ├── __init__.py ├── config.py ├── main.py ├── prompts.py ├── services │ ├── __init__.py │ ├── chat_service.py │ └── openai_service.py └── utils.py ├── assets └── example.png ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinambron/PyThoughtChain/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinambron/PyThoughtChain/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinambron/PyThoughtChain/HEAD/app/config.py -------------------------------------------------------------------------------- /app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinambron/PyThoughtChain/HEAD/app/main.py -------------------------------------------------------------------------------- /app/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinambron/PyThoughtChain/HEAD/app/prompts.py -------------------------------------------------------------------------------- /app/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/services/chat_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinambron/PyThoughtChain/HEAD/app/services/chat_service.py -------------------------------------------------------------------------------- /app/services/openai_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinambron/PyThoughtChain/HEAD/app/services/openai_service.py -------------------------------------------------------------------------------- /app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinambron/PyThoughtChain/HEAD/app/utils.py -------------------------------------------------------------------------------- /assets/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinambron/PyThoughtChain/HEAD/assets/example.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | openai 2 | python-dotenv -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devinambron/PyThoughtChain/HEAD/setup.py --------------------------------------------------------------------------------