├── .gitignore ├── README.md ├── article_generator.py ├── first_request.py ├── image.jpg ├── image.png └── test.md /.gitignore: -------------------------------------------------------------------------------- 1 | content.txt 2 | *.env 3 | /output -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finxter/Intro_to_AI/HEAD/README.md -------------------------------------------------------------------------------- /article_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finxter/Intro_to_AI/HEAD/article_generator.py -------------------------------------------------------------------------------- /first_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finxter/Intro_to_AI/HEAD/first_request.py -------------------------------------------------------------------------------- /image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finxter/Intro_to_AI/HEAD/image.jpg -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finxter/Intro_to_AI/HEAD/image.png -------------------------------------------------------------------------------- /test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/finxter/Intro_to_AI/HEAD/test.md --------------------------------------------------------------------------------