├── .env.example ├── .gitattributes ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md ├── .gitignore ├── LICENSE ├── README.md ├── frontend ├── app │ ├── error.tsx │ ├── global-error.tsx │ ├── globals.css │ ├── layout.tsx │ ├── loading.tsx │ ├── not-found.tsx │ ├── page.tsx │ └── providers.tsx ├── bun.lockb ├── components │ ├── ContentGenerator.tsx │ ├── ContentViewer.tsx │ └── ConversationHistory.tsx ├── next-env.d.ts ├── package.json ├── tailwind.config.js └── tsconfig.json ├── poetry.lock ├── pyproject.toml └── src ├── __init__.py ├── blog ├── __init__.py ├── make_blog.py └── make_faq.py ├── book ├── __init__.py └── make_book.py └── text_generation ├── __init__.py └── openai_text_generation.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [gr8monk3ys] -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/README.md -------------------------------------------------------------------------------- /frontend/app/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/frontend/app/error.tsx -------------------------------------------------------------------------------- /frontend/app/global-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/frontend/app/global-error.tsx -------------------------------------------------------------------------------- /frontend/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/frontend/app/globals.css -------------------------------------------------------------------------------- /frontend/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/frontend/app/layout.tsx -------------------------------------------------------------------------------- /frontend/app/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/frontend/app/loading.tsx -------------------------------------------------------------------------------- /frontend/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/frontend/app/not-found.tsx -------------------------------------------------------------------------------- /frontend/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/frontend/app/page.tsx -------------------------------------------------------------------------------- /frontend/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/frontend/app/providers.tsx -------------------------------------------------------------------------------- /frontend/bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/frontend/bun.lockb -------------------------------------------------------------------------------- /frontend/components/ContentGenerator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/frontend/components/ContentGenerator.tsx -------------------------------------------------------------------------------- /frontend/components/ContentViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/frontend/components/ContentViewer.tsx -------------------------------------------------------------------------------- /frontend/components/ConversationHistory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/frontend/components/ConversationHistory.tsx -------------------------------------------------------------------------------- /frontend/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/frontend/next-env.d.ts -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/frontend/package.json -------------------------------------------------------------------------------- /frontend/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/frontend/tailwind.config.js -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/frontend/tsconfig.json -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/blog/make_blog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/src/blog/make_blog.py -------------------------------------------------------------------------------- /src/blog/make_faq.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/book/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/book/make_book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gr8monk3ys/blog-AI/HEAD/src/book/make_book.py -------------------------------------------------------------------------------- /src/text_generation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/text_generation/openai_text_generation.py: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------