├── .gitignore ├── README.md ├── inter_ass.py ├── screenshot.png └── web ├── OpenAI_Logo.png ├── answers.png ├── index.html ├── script.js └── styles.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelpump/Ai-Interview-Assistant-Python/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelpump/Ai-Interview-Assistant-Python/HEAD/README.md -------------------------------------------------------------------------------- /inter_ass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelpump/Ai-Interview-Assistant-Python/HEAD/inter_ass.py -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelpump/Ai-Interview-Assistant-Python/HEAD/screenshot.png -------------------------------------------------------------------------------- /web/OpenAI_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelpump/Ai-Interview-Assistant-Python/HEAD/web/OpenAI_Logo.png -------------------------------------------------------------------------------- /web/answers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelpump/Ai-Interview-Assistant-Python/HEAD/web/answers.png -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelpump/Ai-Interview-Assistant-Python/HEAD/web/index.html -------------------------------------------------------------------------------- /web/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelpump/Ai-Interview-Assistant-Python/HEAD/web/script.js -------------------------------------------------------------------------------- /web/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelpump/Ai-Interview-Assistant-Python/HEAD/web/styles.css --------------------------------------------------------------------------------