Maaaaaan.... You have THE BEST content, HANDS DOWN, for Gen AI Development. Clear, concise, every step explained, context.... Context is key... Bravo! And thanks a lot for this, it's inspiring.
@daveebbelaar6 ай бұрын
Wow, thanks!
@kenchang345619 күн бұрын
This timely for me and brilliant, just what I need. Thank you very much!
@mksmurff2 ай бұрын
Very clear and real-world example too. Thank you
@IdPreferNot16 ай бұрын
Such great content. I was going to gist this and then i see that's even how you're sharing it! I wanted to get a use case for Instructor library as looked interesting, but wasnt sure what it added beyond pydantic. ... and here it is. Thanks!
@HerroEverynyan6 ай бұрын
So cool that you make such great content, with clear explanations, and are so transparent
@daveebbelaar6 ай бұрын
I appreciate that!
@farhanafridi86946 ай бұрын
Great! would love to see more of these.
@mamadou-diandjalo67236 ай бұрын
This is exactly what i needed ! Thanks !!
@jeromedupourque60676 ай бұрын
Congratulations this is just perfect!
@volt83996 ай бұрын
You did an amazin job, thank you so much for sharing this.
@nexuslux6 ай бұрын
Excellent video. Can you go into a bit more detail of how a database of this type of information might look and operate. Or any type of automation that would be involved? You mentioned sentiment or you mentioned doing analytics
@lesptitsoiseaux6 ай бұрын
You have 50 000 classes transcripts you need to do a recommendation engine. Best approach?
@MuhammadFaizanMumtaz36 ай бұрын
great yar bhoat zbrdst.
@batigol_92 ай бұрын
I tried following your script and I downloaded pip install -U instructor but I keep getting no module found instructor, have you faced this kind of errors any thoughts?
@sumitbindra6 ай бұрын
Loved the content. What are the advantages of using this instead of function calling?
@daveebbelaar6 ай бұрын
@@sumitbindra streamlines prompt engineering, less code, and auto retries.
@sumitbindra6 ай бұрын
@@daveebbelaar makes sense. thank you
@synergyai6 ай бұрын
How do you deal with the objections of sending this 'sensitive' data to OpenAI? We are doing a project now where we have to clean the data before sending it to openAI which is a big challenge. Curious to hear other people thoughts on this...
@daveebbelaar6 ай бұрын
We use Azure OpenAI. Clients are generally okay with that in our experience.
@guilhermeveiga93456 ай бұрын
Good tip thnkss
@erenyeager6556 ай бұрын
combined it with fastapi to transform it to an endpoint and call in the frontend side ooooofff... faster development for machine learning web system
@jppalmab6 ай бұрын
Gold
@AbdulBasit-ff6tq6 ай бұрын
Why don't you just just use the json response from openai directly?
@daveebbelaar6 ай бұрын
This unifies your data structures without relying on prompt engineering. You still have to provide a JSON schema when using the JSON response with OpenAI, and there is also no automated retry mechanism if it fails to load your Pydantic model afterwards. Overall, this streamlines the development experience, especially if you're working with multiple developers who might all have slightly different prompting styles for JSON. Instructor uses the JSON response and Function Calling under the hood.
@AbdulBasit-ff6tq6 ай бұрын
@@daveebbelaar How good or bad this solution is compared to other alternatives like langchain and llamaimdex output parsers?