How to Create Your Own GPT with OpenAI’s Assistants API
Are you ready to take your AI skills to the next level? This blog post is your roadmap to building your own GPT (Generative Pre-trained Transformer) using OpenAI’s Assistants API.…
Favourite tutorials for developers
Are you ready to take your AI skills to the next level? This blog post is your roadmap to building your own GPT (Generative Pre-trained Transformer) using OpenAI’s Assistants API.…
Decorators are an extremely useful feature in Python language that allows programmers to change the behaviour of a function without changing the function. In this post, we are going to…
Managing your Python application’s environment variables can be a challenge, especially if you’re dealing with sensitive information like API keys or database credentials. This is where python-dotenv comes into play.…
Environment variables are one of the key ways software developers provide the potentially sensitive or environment specific information your application will need to perform its tasks. Using a .env file…
Let's learn how to develop RESTful APIs with Python and Flask. Throughout this article, we will use Flask and Python to develop a RESTful API. We will create an endpoint…
Due to the slowness of repositories or even lack thereof being updated with specific versions of Python, I’ve decided to move some of my environments over to Pyenv to allow…
JSON Web Token is known as JWT. It is an open standard that is used for transmitting information between parties as a JSON object. JWT is a secure way for…
I am going to explain about JWT which stands for JSON Web Token in this article. It is useful for Authentication and Authorization. Authentication is validating the user with credentials…
This article is about JWT authentication using .NET 8.0 version. We will be using the Microsoft Identity framework to store user and role information. Authentication is the process of validating…
This article is a step-by-step guide to implementing JWT-based Authentication in ASP.NET Core API. The goal of this article is to first start by learning how JSON Web Tokens (or…