Python LangChain Course πŸπŸ¦œπŸ”— Custom Tools (4/6)

Python LangChain Course πŸπŸ¦œπŸ”— Welcome back to part 4. In this part, we’ll look at giving our agent access to the entire internet. Not just Google or DuckDuckGo or Wikipedia, but the ability to open and read any web address we feed it. Having looked at tools in the previous part, in this part, we’ll … Read more

Python LangChain Course πŸπŸ¦œπŸ”— Agents and Tools (3/6)

Python LangChain Course πŸπŸ¦œπŸ”— Welcome back to part 3 where we’ll take a look at LangChain agents. This is where LLMs like ChatGPT start to get really cool and also a bit scary at the same time. We’re going to give the decision-making powers to ChatGPT and let it decide which action it needs to … Read more

Python LangChain Course πŸπŸ¦œπŸ”— – Chatting with Large Documents (2/6)

Python LangChain Course πŸπŸ¦œπŸ”— Welcome back to part two, where we’re going to ‘chat’ with an entire book! We’ll be able to ask a textual question and we’ll receive a textual response based on the information inside the book. Besides being really cool, what are the practical real-world use cases for this? Imagine you’re a … Read more

Python LangChain Course πŸπŸ¦œπŸ”— Summarizing Long Texts Using LangChain (1/6)

Welcome to this tutorial series on LangChain. My name is Dirk van Meerveld, and it is my pleasure to be your host and guide for this tutorial series! Python LangChain Course πŸπŸ¦œπŸ”— We’re going to be using LangChain to further improve our ChatGPT superpowers and explore more cool ways in which we can put these … Read more

Python LangChain Course πŸπŸ¦œπŸ”— Introduction (0/6)

Python LangChain Course πŸπŸ¦œπŸ”— πŸ’‘ Note: You can watch the full course video right here on the blog — I’ll embedd the video below each of the other parts as well. If you want the step-by-step course with code and downloadable PDF course certificate to show your employer or freelancing clients. follow this link to … Read more

OpenAI API Functions & Embeddings Course (7/7): Sentiment Analysis using Embeddings

πŸ’‘ Full Course with Videos and Course Certificate (PDF): https://academy.finxter.com/university/openai-api-function-calls-and-embeddings/ Course Overview Welcome back to the final part of this tutorial series. In this part, we’ll be looking at simple sentiment analysis using embeddings. For most text classification tasks, fine-tuned machine learning models will do better than embeddings, because they have been meticulously tuned and … Read more

OpenAI API Functions & Embeddings Course (6/7): Similarity Comparison with Embeddings

πŸ’‘ Full Course with Videos and Course Certificate (PDF): https://academy.finxter.com/university/openai-api-function-calls-and-embeddings/ Course Overview Welcome back to part 6 of this tutorial series. In this part, we’re going to be looking at embeddings. What is an embedding? Without getting into algorithmic arithmetic an embedding is basically a numerical (vector) representation of text that makes no sense to … Read more

OpenAI API Functions & Embeddings Course (5/7): Calling Functions That Do Not Exist to Extract Structured Data

πŸ’‘ Full Course with Videos and Course Certificate (PDF): https://academy.finxter.com/university/openai-api-function-calls-and-embeddings/ Course Overview Welcome back to part 5, Where we’ll be calling functions that do not even exist. We’ll also briefly touch on pitfalls, failures, and retrying to make our code more robust as introducing AI tends to make our code a little more unpredictable and … Read more

OpenAI API Functions & Embeddings Course (4/7): Database Querying using ChatGPT

πŸ’‘ Full Course with Videos and Course Certificate (PDF): https://academy.finxter.com/university/openai-api-function-calls-and-embeddings/ Course Overview Welcome back to part 4, where we’ll be doing something mind-blowing yet again! In this part, we will be connecting ChatGPT to a database and then using ChatGPT to extract information from the database using only natural language on the end user’s part. … Read more

OpenAI API Functions & Embeddings Course (3/7): Multiple Functions and Multiple Calls

πŸ’‘ Full Course with Videos and Course Certificate (PDF): https://academy.finxter.com/university/openai-api-function-calls-and-embeddings/ Course Overview Welcome back to part 3, where we’ll take things one step further and look at having multiple functions and even calling multiple functions in a row. First, let’s make a second function for ChatGPT to call. We have ChatGPT with access to the … Read more

OpenAI API Functions & Embeddings Course (2/7): Function Calls with Parameters

πŸ’‘ Full Course with Videos and Course Certificate (PDF): https://academy.finxter.com/university/openai-api-function-calls-and-embeddings/ Course Overview Welcome to the second part of the tutorial, where we’ll look at the shortcomings of ChatGPT and use our functions with parameters to overcome them. First, make a file in your base directory called ‘Ba_chatgpt_no_weather.py‘ and copy/paste the following basic code into it: … Read more

OpenAI API Functions & Embeddings Course (1/7): Simple Function Request

πŸ’‘ Full Course with Videos and Course Certificate (PDF): https://academy.finxter.com/university/openai-api-function-calls-and-embeddings/ Course Overview πŸ‘‹ Hi, and welcome. I’m Dirk van Meerveld, and I’ll be your host and guide for this tutorial series, where we’ll be focussing on OpenAi’s ChatGPT function calls and the embeddings API. Function calls will allow us to make ChatGPT even smarter by … Read more