Тёмный

Development with Large Language Models Tutorial - OpenAI, Langchain, Agents, Chroma 

freeCodeCamp.org
Подписаться 10 млн
Просмотров 199 тыс.
50% 1

Опубликовано:

 

29 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 109   
@Luup.ai123
@Luup.ai123 Год назад
Hey everyone, Akshath here Had a great time making it this course and I hope you enjoy it 🎊🎊
@sriramchundi3142
@sriramchundi3142 Год назад
Amazing video. Most simply explained video on the channel. Great work!!!
@KararaJawaab
@KararaJawaab Год назад
Thank you so much. God bless you.
@VictorRage
@VictorRage Год назад
thank you for dedicating your time to this course
@leandroblanmo
@leandroblanmo Год назад
That's such an amazing content, Akshath. Is there any suggestion on how to have a deeper understanding of each step we went through in this video? That's a totally new field for me. Can you share a roadmap to master this subject? I mean, if I study Machine Learning only, will I learn everything from this lesson in depth? Many thanks!
@AdeAulya
@AdeAulya 10 месяцев назад
This is great. Thank you for this explanation. i'll try in google collab if i may.
@FatchelPiresGuitar
@FatchelPiresGuitar Год назад
Amazing, guys! I'll love a similar video using opensource models!
@peeturpain9379
@peeturpain9379 Год назад
Thank you for this. I have been assigned a project at our company for document QnA with LLMs and this is exactly what I wanted. Please upload follow up courses as well such as for prompt engineering.
@letssee6813
@letssee6813 Год назад
Hii @peeturpain9379. i have some doubts regarding your llm project.
@peeturpain9379
@peeturpain9379 Год назад
@@letssee6813 what do you mean?
@Yogic-ignition
@Yogic-ignition 11 месяцев назад
HI i would love to talk about this, even i have a similar project going on
@peeturpain9379
@peeturpain9379 11 месяцев назад
@@Yogic-ignition sure, lets get in touch
@jeroenritmeijer7283
@jeroenritmeijer7283 11 месяцев назад
it appears that various libraries have moved on a bit since this was recorded. If you get errors during execution then make sure you replace 'message' with 'message.content' when passing that parameter into a function.
@xu-raytjhin7315
@xu-raytjhin7315 11 месяцев назад
Thank you !
@LordPBA
@LordPBA 6 месяцев назад
19:15 why there is a cat walking on the screen?
@MusawarMehdi
@MusawarMehdi 2 месяца назад
Exactly i talk about it 😂😂
@MariodeFelipe
@MariodeFelipe 8 месяцев назад
Good content and fantastic explanation 🎉
@som4971
@som4971 Год назад
finally i can understand LLMs thanks fcc
@WHAT-gm1xm
@WHAT-gm1xm Год назад
Learning hacking course actually can hack anything in technical field
@akshayugale5785
@akshayugale5785 Год назад
Hi @Luup.ai123 , Nice vide. Can you also make a video on RLHF or share some resource on it ? Like how to introduce this concept to your model.
@Ruthrap-dm1ki
@Ruthrap-dm1ki 4 месяца назад
this coding not support for windows is it?? if any another alternative code is available , let me know
@ricardoandreom
@ricardoandreom 5 месяцев назад
Do we need a chat gpt paid subscription to follow this tutorial?
@bidhanchandrosana
@bidhanchandrosana Год назад
Good
@csowm5je
@csowm5je Год назад
Thanks for tutorial. All developers moved to mac? 1:25 windows machine errno13 permission denied. got it to work with wsl.
@bonkers_dave
@bonkers_dave 10 месяцев назад
immediately stuck at playground UI, which does not look anything like the video, and coming into this cold, I have to go find some other resource or training to understand the playground UI.
@yaroslav8717
@yaroslav8717 10 месяцев назад
just change to Chat from Assistants next to Playground logo
@KGnanaVarshita
@KGnanaVarshita Год назад
Do we need chat gpt subscription to complete this tutorial
@Luup.ai123
@Luup.ai123 Год назад
nope, you only need an api key
@manh9105
@manh9105 Год назад
don't see GPT-4 option in the free version of playground model? has open ai team removed it ?
@Luup.ai123
@Luup.ai123 Год назад
I dont think GPT-4 is available to non premium users. Bit of an oversight on my part using it as it as chatgpt premium is definetly not necessary for this course. The API is available to non premium subscribers as well as it works on a standard per use pricing model.
@41cata
@41cata Год назад
Does anyone have similar videos that use C++ or a different language instead?
@MMABeijing
@MMABeijing Год назад
python is easier than C++ ( a language that is not used in data science or AI). why would you need C++, if I may ask?
@Abraham_writes_random_code
@Abraham_writes_random_code Год назад
@@MMABeijing python may be easier than C++ to pick up but it is used in AI too. Especially for faster computations, ie: things like Pytorch and other Cuda directives have code in c++ not just in c as in the case of CPython etc etc. But yes not many people here will be using anything other than Python because of the ease of implementation
@MMABeijing
@MMABeijing Год назад
@@Abraham_writes_random_code First I want to say that there is a C++ library to interact with Openai. Second: although I know the advantages of CPP, or rust, I am curious as to why @Majesticaln would want to use them to interact with OpenAi "infrastructure". There are fields where web assembly deemed mission critical, and considering that RUst actually has the tighest integration with WASM it makes sense to use it... but what is the use case that would motivate Majestic to want to talk with OpenAI using CPP? Python has a richer community, more help available, and langchain is using it too. It s clear to me that we are at a stage when the speed of integration is crucial, and for that reason I thing going along with python is the way to go. That being said I am interested in hearing other, possibly conflicting, opinions
@abelgalindo1458
@abelgalindo1458 9 месяцев назад
Can someone provide a possible solution for this error? if match := _special_token_regex(disallowed_special).search(text): TypeError: expected string or buffer
@digitalthinkers7760
@digitalthinkers7760 9 месяцев назад
Issue: 1st param type is expected to be string or buffer in acall function. Resolution: So, you need to update the param to message.content. res = await chain.acall(message.content, callbacks=[cb]).
@duongital
@duongital Год назад
sorry for not relating much to the topic, what is the chrome extension for pets running?
@Bobcoolyoung
@Bobcoolyoung Год назад
This is exactly what I was waiting for.
@Galmion
@Galmion Год назад
when the trainer includes the API key in the main file lmao
@AIWithShrey
@AIWithShrey Год назад
I'm unsure why we used Chatlit instead of Streamlit, but it works nonetheless. Something very fun to do is to upload your resume and ask the chatbot questions on it. I think this will help the hiring team of an organisation greatly, as it simplifies the job of reviewing resumes and understanding the applicant's abilities. So scaling the document QnA project will be tremendously valuable.
@Luup.ai123
@Luup.ai123 Год назад
hi yes, thats a fair point as streamlit is more popular. I wanted this series to emphasize giving people an understanding of LLMs and their capabilities so i just chose chainlit because it needed less code to work with lets us only worry about the use of LLMs and agents.
@DANNYEL20122
@DANNYEL20122 Год назад
@@Luup.ai123 hi please how can i run chainlit using google colab or jupyter notebook?
@markceraldi8719
@markceraldi8719 Год назад
QUESTION: at VERY end of video, the custom tool multiplier decided to return "12" even when the delegated python function had hard-cod overrided to divide "/" instead of "*". The system internally experiences cognitive dissonance "thoughts" -- including the correct answer - then resolves by returning an unqualified 12 due to all the prevailing context suggesting that was the intention, eg some "common sense". I would love to know more about that clash like if there is a term for it. Also this was the most mind expanding tutorial ive ever seen in my life.
@vibuvignesh7359
@vibuvignesh7359 Год назад
I am getting an error 13 permission denied error. How do I fix it?
@tjhorton
@tjhorton Год назад
Correction: Think of parameters as WEIGHTS (between neurons) not as NEURONS.
@nithinbhandari3075
@nithinbhandari3075 Год назад
Completed this video. Learned chainlit, document q and a by basics of chromadb (most favorite part), basics of vector db, langchain, agents etc. It was nice. The second hour was more interesting. (As first hour was basic stuff that many people may knows).
@mayankkumawat6077
@mayankkumawat6077 Год назад
My Godddd, the ability to have custom tools for the agent changes everything, so theoretically (I bet, we are going to see some implementations of these pretty soon), we can do everything using natural language, what a time to be alive
@nicholaslim2913
@nicholaslim2913 Год назад
I keep getting the error No module named 'chromadb'
@dovatmotos5223
@dovatmotos5223 Год назад
hello everyone! PermissionError: [Errno 13] Permission denied: 'C:\\Users\\Usuario\\AppData\\Local\\Temp\\tmpjf7ckm9u' can somone tell me how to fix this problem when i import the pdf to the app?! thanks!
@raphaelmarietan9322
@raphaelmarietan9322 Год назад
Replace `with tempfile.NamedTemporaryFile() as tempfile` with `with tempfile.NamedTemporaryFile(delete=False) as tempfile`, since you don't want the temporary processed file you create to be deleted once closed.
@nicholaslim2913
@nicholaslim2913 Год назад
Thank you!@@raphaelmarietan9322
@salimnegan7289
@salimnegan7289 Год назад
thank's, got same problem@@raphaelmarietan9322
@jpw2184
@jpw2184 Год назад
This should be pinned@@raphaelmarietan9322
@MyrLin8
@MyrLin8 7 месяцев назад
Aligning with human values ... not.
@NarutoHugsMikasa
@NarutoHugsMikasa Год назад
First !
@shubhrai3027
@shubhrai3027 Год назад
can someone tell me if there's any free alternative of the OpenAi API ?......bcoz no GPT 4...and even GPT-3 is limited time , credit ....please.....thanks
@amalvijay8222
@amalvijay8222 Год назад
Rate limit exceeded for API key.. someone help me with this
@ilianos
@ilianos Год назад
If you've used gpt-4: there's a limit of requests per time allowed You can have a look into your settings when you log into your openai account. There you might have set a manual limit.
@Alice8000
@Alice8000 Год назад
This is exactly what I was waiting for. Before anyone else.
@yaroslav8717
@yaroslav8717 10 месяцев назад
Hard to follow the course, and not really a detailed explanation. But anyway thank you!
@shreyasaravanan7720
@shreyasaravanan7720 9 месяцев назад
100th comment
@RedCloudServices
@RedCloudServices 10 месяцев назад
thanks for the video lesson. the new OpenAI retrieval Assistant abstracts all of these steps so was wondering if Chainlit can be configured with the new Assistant API?
@donelkingii3738
@donelkingii3738 Год назад
Can you make it without the ethical blockers? Tired of the "That us illegal" blah blah etc.
@shivanshugautam1381
@shivanshugautam1381 Год назад
Hi, I am working with document QA project but I am bit confused about what will be the actual chunk size for better semantic search results. And I am using milvus to store my embeddings. I am having large pdfs.
@abdulrehmanbaber2104
@abdulrehmanbaber2104 Год назад
try different chunk sizes, they are made only because the context window of llms are short.
@Yogic-ignition
@Yogic-ignition 11 месяцев назад
i am facing permission denied error after uploading the file. On the Temp folder. Any idea how to solve this
@conradcaldeira7131
@conradcaldeira7131 Год назад
heyyy there, have always enjoyed your vids......could you provide a tutorial for creating a LLM from scratch on windows without GPU
@AmelMeguellati-f1m
@AmelMeguellati-f1m Год назад
can you help me for i build simulink model for this Dataset "Activity Human by smartphone"
@powerball200
@powerball200 Год назад
Do i need to know any prior skills to learn langchain? Like what coding language, web dev etc?
@AiridasMažuolis
@AiridasMažuolis Год назад
Are we supposed to buy or pay credits for access to chatgpt playground?
@wilonweb
@wilonweb 10 месяцев назад
We have to get a GPT4 prenium account to do that ?
@Robo-fg3pq
@Robo-fg3pq 11 месяцев назад
When should we use langchain tools vs openai function calling?
@c_54_spoorthi21
@c_54_spoorthi21 Год назад
can you make a tutorial to do the same with llama 2 model
@KennethMak
@KennethMak Год назад
From buildspace 👋
@entertainmentarc6466
@entertainmentarc6466 Год назад
Pappu , pedda pappu, panikiraani pappu
@falcongold2024
@falcongold2024 10 месяцев назад
18:30
@yaroslav8717
@yaroslav8717 10 месяцев назад
Does it still make sense to go through his video after Assistants API release?
@AB-kq9xm
@AB-kq9xm 8 месяцев назад
no
@louisejin792
@louisejin792 9 месяцев назад
very very helpful ,tks
@furkantyagi3261
@furkantyagi3261 Год назад
please made a video on tekla structure
@manh9105
@manh9105 Год назад
few questions Akshat. Who owns the data trained by us. If its Open AI ? aren't we making it more powerful basically like a Frankenstein
@kingslyroche
@kingslyroche Год назад
API and Playground requests will not be used to train our models.
@Luup.ai123
@Luup.ai123 Год назад
Hi, Akshath here. We dont specifically "train" it, we just do a retreival augmented search so technically chroma db is where all of this information is stored. Given that chroma is open source and the python package runs on our machinne locally, noone has access to the embeddings but us. Additionally OpenAI claims that it doesn't use any of our data to train their models. big emphasis on the word "claims".
@ClementMarie-h6x
@ClementMarie-h6x Год назад
1:41:27
@rewanthnayak2972
@rewanthnayak2972 Год назад
Thank you for answering my request so quickly
@SYEDHASSANASLAMBE-CSE
@SYEDHASSANASLAMBE-CSE Год назад
Sir please post about tts model vedio
@kamalkamals
@kamalkamals Год назад
Hope to make the same with langchain js not just langchain python
@wilonweb
@wilonweb 10 месяцев назад
You do that ?
@GattuBattu789
@GattuBattu789 Год назад
Very Informative one
@agastyareddy5489
@agastyareddy5489 Год назад
Ily
@Randomguy48279xyz
@Randomguy48279xyz Год назад
👍
@krox477
@krox477 Год назад
Wow we already started using LLMs
@NANINHOMALLA
@NANINHOMALLA Год назад
1st 😅
@41cata
@41cata Год назад
day1 - 34:44 day2 -
@navturn
@navturn Год назад
Amazing man, I am hooked !
@muhammadaamir321
@muhammadaamir321 Год назад
Kindly upload prompt engineering course
@rashedulkabir6227
@rashedulkabir6227 Год назад
Prompt Engineering is not coding.
@邱彥彰-u5z
@邱彥彰-u5z Год назад
Amazing video!
@arsagor8506
@arsagor8506 Год назад
First comment plz pin
@midprogramming
@midprogramming Год назад
Is there any reason why you used assistant over system when giving a personality?
@_MrCode
@_MrCode 9 месяцев назад
These are very basics, and only 10 minute of content, but this guy takes 2 hours for extra talking, the main part of chatbot is multi-user conversation ability, which he didn't discussed even.
@gainmuscle
@gainmuscle Год назад
javascript version anytime soon?
Далее
[1hr Talk] Intro to Large Language Models
59:48
Просмотров 2,2 млн
100 Identical Twins Fight For $250,000
35:40
Просмотров 44 млн
No-Nonsense Backend Engineering Roadmap
10:16
Просмотров 203 тыс.
OpenAI Embeddings and Vector Databases Crash Course
18:41
The Home Server I've Been Wanting
18:14
Просмотров 157 тыс.
LangChain Crash Course for Beginners
1:05:30
Просмотров 165 тыс.
The Turing Lectures: The future of generative AI
1:37:37
Просмотров 605 тыс.
C Programming Tutorial for Beginners
3:46:13
Просмотров 12 млн
What is LangChain?
8:08
Просмотров 217 тыс.