This is a really smart way to give the AI arbitrary additional abilities without running into all kinds of security, rate limit, runtime etc. limits. You're basically allowing it to run specific things remotely on your computer.
I'm not coder. Will never be probably. Yet I not only enjoyed this awesome tutorial, but actually understood it (at least most of the concept itself :P ) Thanks!
Hi Mr. Henrik, Thank you for digging up the GPT documentation and sharing your insights. This is super great. I’m thinking to explore this capability further with #DSPy. Is it possible for you to share your notebook in the the description. Appreciate your help! With regards, yogi
lol and I just happened to stumble upon his channel today for the first time - actually, I stumbled upon his more recent and comprehensive video titled “Generative AI in a Nutshell.”😊
Agreed. I've wanted to use these and found it very difficult to understand. It's really a very clever merging of the contextual "intelligence" or an LLM and the rigid structure and application of programming. I think the difficulty in understanding for me came from that clash.
I'd gladly pay for more content like this! Your explanations are elegant, simple, smart, and easy to grasp. Thanks for sharing - looking forward to seeing more!
This is excellent and exactly what I was looking for. A way to run a function using GPT, but my implementation will be server-side and the function will call code from a blockchain and return that data ti GPT. I was looking for a solution that wouldn't involve me having to use Python.
That was very helpful. Thank you. I take it that the setLanguages() funciton is specific to OpenAI/GPT4... is that right? If so, how would you approach this with local models?
Great vid! Which tool did you use to create the schema? I tried some web tools and the schema didnt look quite the same as your examples. Not sure how crucial that is.
In the video you said there are tools to generate the function spec? can you suggest some, or I can ask ChatGPT to generate the spec for me. Again, really helpful tutorial and use cases
So, we will write the function "google search " and let it loop for a while to allow the model to learn whatever it needs and boom, we're out of the sandbox?
ChatGPT bing search is working in same way. They just bing your request, grab X first pages, put it in context trying to answer your question using data there know and bing provided in context.
@@honestiguana I think, we didn't need to provide all results, search engines is good enough. Just grab first 50 pages by your request and put it to context. Most complex task is to exclude information we need, and GPT can do it
Is there any way to specify a few functions that OpenAI can use? For example, I want to create a quiz and have 3 formats that a question can be. 1. multi-choice with 4 possible answers 2. yes/no with 2 possible answers. 3. simple question with an input for the answer I want to allow OpenAI to choose which type of function to use but always use a function (so that we always get a structured response).
Hello Henrik, great tutorial! I added a function for a 5-day weather forecast too. However, I'm encountering issues when querying high and low temperatures for the next day. The responses often contain errors, it looks at incorrect dates or temperature readings. I've tried both GPT-4 and GPT-4-0125-preview, but the issue persists. I suspect the complexity of the JSON from OpenWeatherMap might be overwhelming for the AI to parse accurately. My next step might be to pre-process the data, simplifying it and including the high and low temperatures. I had hoped GPT-4 would handle such data more capably. Any suggestions or insights on this?
For anyone curious, I used chatgpt to simplify the data representation returned back from openweathermap, as it stood it was too complex for even gpt4 to reliably parse. Making a simpler representation with clearly labelled fields fixed this. I also preprocessed data calculating max and min temps.
@henrikkniberg would you consider sharing the code for this? I kinda mostly get it.. but now need to play with it to really grok it. also you're one of the few people I've seen doing this in JS & not python. As a non-dev this is great, as I can (sort of) read JS & with gpt4 and copilot I've been able to create some useful stuff.. python though still eludes me! thanks in advance.
Is this deterministic and reliable? Can you rely on GPT to always call the correct function, pass the correct parameters, and interpret the function results accurately? If not, how is it possible to build a customer facing application with these risks? Appreciate your insight.
in a nutshell !! >>>> How s function calling ACTUALLY working!!! >>>> its using jupiter notebooks! executing a single cell ... so open interpreter etc is using these jupyter notebook clinet to create your funciton executor wrapper! ... the rest is instrutor(slower) and response parsing....
Very good video, but the free chat GPT 3.5 don't know about the existence of the openAI package, he just give code using the Rest methods to the API :(, the source code could save some time
This was an excellent tutorial, I hadn't even thought about using functions to force a structured output but it makes perfect sense.
Yeah it took me a while to realize that too!
Thank you. Your teaching methods are very clear.
This is a really smart way to give the AI arbitrary additional abilities without running into all kinds of security, rate limit, runtime etc. limits. You're basically allowing it to run specific things remotely on your computer.
The image at 1:40 alone can replace reams of docs. Well done.
Excellent! This is the best concept overview with 2 real world use cases I came across with. To the point , clear and usable. Thank you
I'm not coder. Will never be probably. Yet I not only enjoyed this awesome tutorial, but actually understood it (at least most of the concept itself :P ) Thanks!
its so weird to see you upload a super interesting video randomly every few months lol
That’s pretty much the story of my youtube channel. Random interesting stuff every few months :)
Quality over quantity!
Hi Mr. Henrik, Thank you for digging up the GPT documentation and sharing your insights. This is super great. I’m thinking to explore this capability further with #DSPy. Is it possible for you to share your notebook in the the description. Appreciate your help! With regards, yogi
Yes
lol and I just happened to stumble upon his channel today for the first time - actually, I stumbled upon his more recent and comprehensive video titled “Generative AI in a Nutshell.”😊
Superb Explanation. Helped me understand very clear!
You are good. Really clear presentation. Thanks.
Big fan of of your presentation skills ❤
Great tutorial. Easy to follow and very intuitive. Thanks a lot
Nice work, Henrik. I think your career pivot with GAI is inspiring. Thank you!
This is very cool, there are many possibilities for creations
Excellent tutorial! Very well organized and clear! Your diagrams, explaining what is happening, really helped me understand the goals! Great job!
Great tutorial, I'd really enjoy more of these 🙏
What an excellent tutorial! The maps are really visible and clear!❤❤
I'm 8 months late but this is still incredibly helpful. Thanks!
I'm 8 months and 4 days late, and I totally agree with you!
I’m 8 months and 8 and 8 days late, but indeed it very good
perhaps the best tutorial on the mysterious and ill-explained OpenAI function calling. Thank you
Agreed. I've wanted to use these and found it very difficult to understand. It's really a very clever merging of the contextual "intelligence" or an LLM and the rigid structure and application of programming. I think the difficulty in understanding for me came from that clash.
How did I only learn about this today. This is insanely cool.
loved the way you explain and articulate
I'd gladly pay for more content like this! Your explanations are elegant, simple, smart, and easy to grasp. Thanks for sharing - looking forward to seeing more!
best explanation so far
This is amazing. Thanks for sharing. The whiteboard really helps visualize and understand things far more easily :)
This is excellent and exactly what I was looking for. A way to run a function using GPT, but my implementation will be server-side and the function will call code from a blockchain and return that data ti GPT. I was looking for a solution that wouldn't involve me having to use Python.
Sir this video is great! thanks for sharing knowledge. have a great day
Great stuff! Thanks for sharing. I learned a lot from the way you explained it :D
Very clear tutorial, thank you. Is the example code shared?
Thank you very much, I finally understood what functions do and how they work. One more sub!
Glad to help :)
great video, just one suggestion it would b nice if you share a link to the code so afterwards we can have a look at it.
The best and more clear video, and i talk spanish., wow
How do I like this video twice!?!?
Thanks! This video was super useful.
Great tutorial, thanks!
Great video 👌
Henirk, it's a great tutorial. Hope more will come ;)
Really good. Thank you.
Excellent
You are the best
Neat
Henrik what tool are you using here for the drawing and communication? Very nicely done.
That was very helpful. Thank you. I take it that the setLanguages() funciton is specific to OpenAI/GPT4... is that right? If so, how would you approach this with local models?
Great vid! Which tool did you use to create the schema? I tried some web tools and the schema didnt look quite the same as your examples. Not sure how crucial that is.
In the video you said there are tools to generate the function spec? can you suggest some, or I can ask ChatGPT to generate the spec for me. Again, really helpful tutorial and use cases
I usually ask gpt to generate it.
This is so cool - how do you make these animated diagrams?
Great video thank you. Subscribed
Learn a lot, thanks!
Thank you!
I had kinda understood function calling up to some point but this cleared up a few more things for me and I can see a lot farther away now 😂
Thanks 👍
So, we will write the function "google search " and let it loop for a while to allow the model to learn whatever it needs and boom, we're out of the sandbox?
Makes sense, but you'd have a lot of trouble parsing all the results to feed them to ChatGPT until it thinks it has enough information.
@@honestiguana Hard but likely not impossible. What if we use Chatgpt itself to parse the results with some clever trick?
ChatGPT bing search is working in same way. They just bing your request, grab X first pages, put it in context trying to answer your question using data there know and bing provided in context.
@@honestiguana I think, we didn't need to provide all results, search engines is good enough. Just grab first 50 pages by your request and put it to context. Most complex task is to exclude information we need, and GPT can do it
Very new to this but how did the gpt know which were the largest 3 cities when reporting on the weather?
Is there any way to specify a few functions that OpenAI can use? For example, I want to create a quiz and have 3 formats that a question can be.
1. multi-choice with 4 possible answers
2. yes/no with 2 possible answers.
3. simple question with an input for the answer
I want to allow OpenAI to choose which type of function to use but always use a function (so that we always get a structured response).
Hello Henrik, great tutorial! I added a function for a 5-day weather forecast too. However, I'm encountering issues when querying high and low temperatures for the next day. The responses often contain errors, it looks at incorrect dates or temperature readings. I've tried both GPT-4 and GPT-4-0125-preview, but the issue persists. I suspect the complexity of the JSON from OpenWeatherMap might be overwhelming for the AI to parse accurately. My next step might be to pre-process the data, simplifying it and including the high and low temperatures. I had hoped GPT-4 would handle such data more capably. Any suggestions or insights on this?
For anyone curious, I used chatgpt to simplify the data representation returned back from openweathermap, as it stood it was too complex for even gpt4 to reliably parse. Making a simpler representation with clearly labelled fields fixed this. I also preprocessed data calculating max and min temps.
@henrikkniberg would you consider sharing the code for this? I kinda mostly get it.. but now need to play with it to really grok it.
also you're one of the few people I've seen doing this in JS & not python. As a non-dev this is great, as I can (sort of) read JS & with gpt4 and copilot I've been able to create some useful stuff.. python though still eludes me!
thanks in advance.
What is reflection and how can it be used in the way you suggested?
Is this deterministic and reliable? Can you rely on GPT to always call the correct function, pass the correct parameters, and interpret the function results accurately? If not, how is it possible to build a customer facing application with these risks? Appreciate your insight.
Thanks
Suggest to provide corresponding reference codes to learn better. Thanks!
Good tip. Thanks! Will do so next time.
funnily for the 2 cities weather problem, you could just call getWeather with 2 cities, right? without the loop
Great Henrik, Can you recomend some Book about "Prompt Engineering" ?I have given this request to you in Linkedin.Rgds,Brahma from India.
This is wild.
in a nutshell !! >>>> How s function calling ACTUALLY working!!! >>>> its using jupiter notebooks! executing a single cell ... so open interpreter etc is using these jupyter notebook clinet to create your funciton executor wrapper! ... the rest is instrutor(slower) and response parsing....
GPT can now browse the internet, how does this change the use of function calling? Can we ask it to browse the web using the API?
Anyone knows what’s the whiteboard author using
Very good video, but the free chat GPT 3.5 don't know about the existence of the openAI package, he just give code using the Rest methods to the API :(, the source code could save some time
If you're still not a paying customer, you're not serious about coding with ChatGPT, and might be missing a lot of interesting features.
What app do you use to create those cartoon graphics?
Curious, its been almost a year now, does anyone use gpt function calling?
Not another weather function
Omg 😳
Neat
Neat
Neat
Neat