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

Fine-Tuning GPT-3.5 Turbo – How to Craft Your Own Proprietary LLM

The much-awaited feature for GPT-3.5 Turbo is here: fine-tuning. And guess what? GPT-4 is next in line this autumn. Dive in to discover how this can revolutionize your applications and user experiences. What’s New? OpenAI now empowers you to tailor GPT-3.5 Turbo with your data, ensuring the model aligns perfectly with your specific needs. Preliminary … Read more

From AI Scaling to Mechanistic Interpretability

Let’s dive into the fascinating world of scaling laws, mechanistic interpretability, and how they impact the development of artificial intelligence. From asking why the universe responds to throwing large amounts of computing power at vast amounts of data to discussing the emergence of specific abilities in AI models, Dario, the CEO of Anthropic AI, provides … Read more

No, GPT-4 Doesn’t Get Worse Over Time (FUD Debunked)

There has been a lot of drama on Twitter about the new Stanford UC Berkely collab paper titled “How Is ChatGPT’s Behavior Changing over Time?” (source) The paper’s authors selectively provide examples where newer versions of GPT-4 seem to perform “worse” and have “formatting mistakes” than older versions. The first evaluation they provide is the … Read more

Python OpenAI Streaming Completions

Set stream=True when calling the chat completions or completions endpoints to stream completions. This returns an object that streams back the response as data-only server-sent events. Streaming completion is an essential functionality offered by OpenAI, particularly useful in the implementation of real-time applications like live text generation or interactive conversational bots. Traditionally, this feature has … Read more

Llama 2: How Meta’s Free Open-Source LLM Beats GPT-4!

Meta (formerly Facebook) has released Llama 2, a new large language model (LLM) that is trained on 40% more training data and has twice the context length, compared to its predecessor Llama. Llama 2 is open-source so researchers and hobbyist can build their own applications on top of it. Llama 2 is trained on a … Read more

GPT-4 Code Interpreter – How to Run Python & Plot Data in ChatGPT

GPT-4 now provides a friendly little tool that has the potential to completely change the coding industry. Again. You can activate the code interpreter in your ChatGPT Settings: Toggle the “Code Interpreter” option (currently in “Beta features” but not for long): Now you can run the code interpreter using a simple natural language prompt such … Read more

(Fixed) βœ… OpenAI Invalid Request Error: Model GPT-4 Does Not Exist

When working with OpenAI models, it’s not uncommon for you to encounter errors, such as the openai.error.InvalidRequestError. This error can be particularly frustrating when attempting to access a specific model like GPT-4. When you encounter the openai.error.InvalidRequestError with the message “The model: gpt-4 does not exist”, it means that your code is attempting to access … Read more

I Tried Cognosys.ai: Mind-Blown … Again 🀯

Cognosys.ai is an innovative AI platform (aka. autonomous AI agent) to make AI more accessible and user-friendly. With their web-based AI agent, you can use large language models (LLMs) in your browser to accomplish complex tasks and improve your decision-making process for various big and small problems in your daily life or business. Here’s a … Read more

ChatGPT Code Interpreter Is Out

ChatGPT Plus users can now use the “Code Interpreter” in Beta mode! If you cannot see it but you’re already a Plus member, you should activate it in the settings: OpenAI has just launched a novel and experimental feature for its celebrated language model, ChatGPT, called the “Code Interpreter”. This addition allows the model to … Read more