├── LICENSE ├── README.md ├── aicontent.py ├── app.py ├── config.py └── templates ├── 404.html ├── business-pitch.html ├── cold-emails.html ├── includes └── layout.html ├── index.html ├── job-description.html ├── product-description.html ├── social-media.html ├── tweet-ideas.html ├── video-description.html └── video-ideas.html /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanBreuno/AI-Content-Generator-Using-GPT-3-ACG/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanBreuno/AI-Content-Generator-Using-GPT-3-ACG/HEAD/README.md -------------------------------------------------------------------------------- /aicontent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanBreuno/AI-Content-Generator-Using-GPT-3-ACG/HEAD/aicontent.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanBreuno/AI-Content-Generator-Using-GPT-3-ACG/HEAD/app.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanBreuno/AI-Content-Generator-Using-GPT-3-ACG/HEAD/config.py -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanBreuno/AI-Content-Generator-Using-GPT-3-ACG/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/business-pitch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanBreuno/AI-Content-Generator-Using-GPT-3-ACG/HEAD/templates/business-pitch.html -------------------------------------------------------------------------------- /templates/cold-emails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanBreuno/AI-Content-Generator-Using-GPT-3-ACG/HEAD/templates/cold-emails.html -------------------------------------------------------------------------------- /templates/includes/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanBreuno/AI-Content-Generator-Using-GPT-3-ACG/HEAD/templates/includes/layout.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanBreuno/AI-Content-Generator-Using-GPT-3-ACG/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/job-description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanBreuno/AI-Content-Generator-Using-GPT-3-ACG/HEAD/templates/job-description.html -------------------------------------------------------------------------------- /templates/product-description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanBreuno/AI-Content-Generator-Using-GPT-3-ACG/HEAD/templates/product-description.html -------------------------------------------------------------------------------- /templates/social-media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanBreuno/AI-Content-Generator-Using-GPT-3-ACG/HEAD/templates/social-media.html -------------------------------------------------------------------------------- /templates/tweet-ideas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanBreuno/AI-Content-Generator-Using-GPT-3-ACG/HEAD/templates/tweet-ideas.html -------------------------------------------------------------------------------- /templates/video-description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanBreuno/AI-Content-Generator-Using-GPT-3-ACG/HEAD/templates/video-description.html -------------------------------------------------------------------------------- /templates/video-ideas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MilanBreuno/AI-Content-Generator-Using-GPT-3-ACG/HEAD/templates/video-ideas.html --------------------------------------------------------------------------------