How I Built an OpenAI-Powered Web Assistant with Django

Django is a backend web framework that makes it easy to build web pages quickly using Python. There is no better way to learn Django than by building projects. This tutorial shows you how I built an Artificial Intelligence-powered web assistant using Django. I’ll also add a GitHub link so you can copy&paste (see conclusion). … Read more

Fix AttributeError: Module ‘OpenAI’ Has No Attribute ‘Audio’

I tried using the amazing speech recognition capabilities introduced with OpenAI’s new Whisper module yesterday. 👉 Recommended: OpenAI’s Speech-to-Text API: A Comprehensive Guide Here’s the sample code I used: But when using the simple code to test transcribing an audio file, Python gave me the AttributeError: module ‘openai’ has no attribute ‘Audio’. So, I wanted … Read more

OpenAI’s Speech-to-Text API: A Comprehensive Guide

Here’s an obvious statement: audio and video recordings are an essential part of our daily lives. Recently, I consulted a young startup in the food AI space on how to convert video to text, and I recommended them Google’s speech recognition software. Yet, Google’s models are not great — only best in class at this … Read more

Building a Q&A Bot with OpenAI: A Step-by-Step Guide to Scraping Websites and Answer Questions

Have you ever found yourself deep in the internet rabbit hole, searching for an answer to a question that just won’t quit? It can be frustrating to sift through all the online information and still come up empty-handed. But what if there was a way to get accurate and reliable answers in a snap? Enter … Read more

How I Built a Virtual Assistant like Siri using ChatGPT Prompting (No Code!)

Siri sucks. 😞 I am a Siri user, and Siri fails me more than it performs for me. It doesn’t understand the chain of commands. Project Idea: Recreate Siri Using ChatGPT This got me thinking, “What if I can repurpose ChatGPT to work like Siri?”. So before I tell you how the prompt looks like … Read more