├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── docs └── img │ ├── diamond.png │ ├── dreamGPT-flow.png │ └── output.jpg ├── dreamgpt ├── constants.py ├── engine │ ├── __init__.py │ ├── dreamEngine.py │ └── prompts │ │ ├── combinePrompts.py │ │ ├── commonWords.txt │ │ ├── dreamPrompts.py │ │ └── themeExpansionPrompts.py ├── llm │ ├── __init__.py │ └── llm.py ├── main.py └── store │ ├── __init__.py │ ├── embeddings.py │ ├── entity.py │ └── store.py ├── main.py ├── poetry.lock ├── pyproject.toml └── requirements.txt /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergentAI/dreamGPT/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_STORE 2 | .env 3 | dist 4 | __pycache__ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergentAI/dreamGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergentAI/dreamGPT/HEAD/README.md -------------------------------------------------------------------------------- /docs/img/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergentAI/dreamGPT/HEAD/docs/img/diamond.png -------------------------------------------------------------------------------- /docs/img/dreamGPT-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergentAI/dreamGPT/HEAD/docs/img/dreamGPT-flow.png -------------------------------------------------------------------------------- /docs/img/output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergentAI/dreamGPT/HEAD/docs/img/output.jpg -------------------------------------------------------------------------------- /dreamgpt/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergentAI/dreamGPT/HEAD/dreamgpt/constants.py -------------------------------------------------------------------------------- /dreamgpt/engine/__init__.py: -------------------------------------------------------------------------------- 1 | # __init__.py -------------------------------------------------------------------------------- /dreamgpt/engine/dreamEngine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergentAI/dreamGPT/HEAD/dreamgpt/engine/dreamEngine.py -------------------------------------------------------------------------------- /dreamgpt/engine/prompts/combinePrompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergentAI/dreamGPT/HEAD/dreamgpt/engine/prompts/combinePrompts.py -------------------------------------------------------------------------------- /dreamgpt/engine/prompts/commonWords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergentAI/dreamGPT/HEAD/dreamgpt/engine/prompts/commonWords.txt -------------------------------------------------------------------------------- /dreamgpt/engine/prompts/dreamPrompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergentAI/dreamGPT/HEAD/dreamgpt/engine/prompts/dreamPrompts.py -------------------------------------------------------------------------------- /dreamgpt/engine/prompts/themeExpansionPrompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergentAI/dreamGPT/HEAD/dreamgpt/engine/prompts/themeExpansionPrompts.py -------------------------------------------------------------------------------- /dreamgpt/llm/__init__.py: -------------------------------------------------------------------------------- 1 | # __init__.py -------------------------------------------------------------------------------- /dreamgpt/llm/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergentAI/dreamGPT/HEAD/dreamgpt/llm/llm.py -------------------------------------------------------------------------------- /dreamgpt/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergentAI/dreamGPT/HEAD/dreamgpt/main.py -------------------------------------------------------------------------------- /dreamgpt/store/__init__.py: -------------------------------------------------------------------------------- 1 | # __init__.py -------------------------------------------------------------------------------- /dreamgpt/store/embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergentAI/dreamGPT/HEAD/dreamgpt/store/embeddings.py -------------------------------------------------------------------------------- /dreamgpt/store/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergentAI/dreamGPT/HEAD/dreamgpt/store/entity.py -------------------------------------------------------------------------------- /dreamgpt/store/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergentAI/dreamGPT/HEAD/dreamgpt/store/store.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | from dreamgpt import main -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergentAI/dreamGPT/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergentAI/dreamGPT/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DivergentAI/dreamGPT/HEAD/requirements.txt --------------------------------------------------------------------------------