
How to build a ChatGPT-Powered AI tool to learn technical things fast
A step-by-step guide to setting up a free ML environment, leveraging language models and ChatGPT APIs to extract insights from YouTube videos, and empowering yourself to learn faster and more efficiently like never before!
About | ||
---|---|---|
✅ AWS Level | Intermediate - 200 | |
⏱ Time to complete | 30 minutes | |
💰 Cost to complete | Free when using the OpenAI API credit or less than $0.10 | |
🧩 Prerequisites | - Amazon SageMaker Studio Lab Account - Foundational knowledge of Python | |
📢 Feedback | Any feedback, issues, or just a 👍 / 👎 ? | |
⏰ Last Updated | 2023-07-24 |
- How to set up free ML Dev Environment
- How to utilize pretrained open-source ML models
- How to use ChatGPT APIs
- Part 1 - Setup: SageMaker Studio Lab and OpenAI API keys
- Part 2 - Obtaining a YouTube video transcript
- Part 3 - Summarizing and translating a transcript using ML models
- Part 4 - Extracting steps and creating a quiz using ChatGPT APIs

Note: We will be using free resources in this tutorial. The only potential cost that you may incur is for utilizing ChatGPT APIs if you already consumed all free credits - in which case it will cost a few cents. When you create an OpenAI account, you will be given $5 to use within the first 3 months. This is enough to run hundreds of API requests.
Request free account
. Fill in the required information in the form and submit your request. You will receive an email to verify your email address. Follow the instructions in the email.Please note that your account request needs to be approved before you can register for a Studio Lab account. The review process typically takes up to 5 business days. Once your account request is approved, you will receive an email containing a link to the Studio Lab account registration page. This link will remain active for 7 days after your request is approved.

Create new secret key
. Provide a name, copy the key and save it. You won’t be able to access the key again!Please note that OpenAI currently offers a $5 credit for new users, allowing you to start experimenting with their APIs at no cost. This credit is available for use during the first 3 months of your account. After the initial 3-month period, the pricing will transition to a pay-as-you-go model. To get detailed information about the rates and pricing structure, I recommend visiting the pricing page on the OpenAI website.

Model | Input | Output |
---|---|---|
4K context | $0.0015 / 1K tokens | $0.002 / 1K tokens |
16K context | $0.003 / 1K tokens | $0.004 / 1K tokens |

learn-with-ai.ipynb
.
Shift + Enter
or click the Play
button at the top to execute it.youtube_url
variable. To get a YouTube video url, copy the URL up to the "&" sign, as shown in the screenshot below.Note: I recommend starting with a video that is under 30 minutes. This will allow you to complete the tutorial more quickly, as executing commands for longer videos will take more time.

YouTubeTranscriptApi.get_transcript(video_id)
method to retrieve the YouTube transcript using the YouTube API. This method provides accurate and official captions associated with the video.model_checkpoint
variable in the code below.transcript_text
variable with the translated_text
variable that contains the translated text. By applying the summarization model to the transcript, we can generate a concise summary of the video's content.openai.api_key
variable in your code.Note: I recommend utilizing the OpenAI Playground to further explore and experiment with the OpenAI API models. The OpenAI Playground is a user-friendly web-based tool that allows you to test prompts and gain familiarity with the API's functionalities. It provides an interactive environment to fine-tune your prompts and observe the model's responses.
system
parameter represents the instructions or context provided to the model to guide its behavior. It sets the overall behavior, tone, or role of the AI assistant. For example: "You are a technical instructor that provides step-by-step guidance". This helps set the expectation for the AI model and provides guidance on how it should respond.user
parameter represents the input from the user. It is where you provide your specific requests, questions, or instructions to the AI model. For example, you might use a user
prompt like, "Generate steps to follow from the transcript text".
Any opinions in this post are those of the individual author and may not reflect the opinions of AWS.