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!
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.
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.
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.
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).
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
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.
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.
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!
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.
I am getting error "'AskFileResponse' object has no attribute 'content'" , while uploading pdf file in chainlit user interface. How to reslove the issue?
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.
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?
Can someone provide a possible solution for this error? if match := _special_token_regex(disallowed_special).search(text): TypeError: expected string or buffer
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]).
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.
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.
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".
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.
@@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
@@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
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
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.
Hey everyone, Akshath here
Had a great time making it this course and I hope you enjoy it
🎊🎊
Amazing video. Most simply explained video on the channel. Great work!!!
Thank you so much. God bless you.
thank you for dedicating your time to this course
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!
This is great. Thank you for this explanation. i'll try in google collab if i may.
This is exactly what I was waiting for.
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.
Thank you !
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.
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.
@@Luup.ai123 hi please how can i run chainlit using google colab or jupyter notebook?
Amazing, guys! I'll love a similar video using opensource models!
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).
This is exactly what I was waiting for. Before anyone else.
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
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.
Correction: Think of parameters as WEIGHTS (between neurons) not as NEURONS.
19:15 why there is a cat walking on the screen?
Exactly i talk about it 😂😂
Thank you for answering my request so quickly
Good content and fantastic explanation 🎉
Amazing man, I am hooked !
finally i can understand LLMs
thanks fcc
Very Informative one
Thanks for tutorial. All developers moved to mac? 1:25 windows machine errno13 permission denied. got it to work with wsl.
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.
Hii @peeturpain9379. i have some doubts regarding your llm project.
@@letssee6813 what do you mean?
HI i would love to talk about this, even i have a similar project going on
@@Yogic-ignition sure, lets get in touch
when the trainer includes the API key in the main file lmao
Wow we already started using LLMs
very very helpful ,tks
I am getting an error 13 permission denied error. How do I fix it?
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!
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.
Thank you!@@raphaelmarietan9322
thank's, got same problem@@raphaelmarietan9322
This should be pinned@@raphaelmarietan9322
I am getting error "'AskFileResponse' object has no attribute 'content'" , while uploading pdf file in chainlit user interface. How to reslove the issue?
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.
try different chunk sizes, they are made only because the context window of llms are short.
i am facing permission denied error after uploading the file. On the Temp folder. Any idea how to solve this
Amazing video!
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?
Can someone provide a possible solution for this error? if match := _special_token_regex(disallowed_special).search(text):
TypeError: expected string or buffer
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]).
don't see GPT-4 option in the free version of playground model? has open ai team removed it ?
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.
When should we use langchain tools vs openai function calling?
From buildspace 👋
Do i need to know any prior skills to learn langchain? Like what coding language, web dev etc?
Rate limit exceeded for API key.. someone help me with this
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.
I keep getting the error No module named 'chromadb'
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.
can you help me for i build simulink model for this Dataset "Activity Human by smartphone"
Does it still make sense to go through his video after Assistants API release?
no
this coding not support for windows is it?? if any another alternative code is available , let me know
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
API and Playground requests will not be used to train our models.
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".
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.
just change to Chat from Assistants next to Playground logo
Does anyone have similar videos that use C++ or a different language instead?
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?
@@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
@@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
Learning hacking course actually can hack anything in technical field
We have to get a GPT4 prenium account to do that ?
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
heyyy there, have always enjoyed your vids......could you provide a tutorial for creating a LLM from scratch on windows without GPU
Are we supposed to buy or pay credits for access to chatgpt playground?
Kindly upload prompt engineering course
Prompt Engineering is not coding.
Sir please post about tts model vedio
can you make a tutorial to do the same with llama 2 model
Do we need a chat gpt paid subscription to follow this tutorial?
Hope to make the same with langchain js not just langchain python
You do that ?
Good
Do we need chat gpt subscription to complete this tutorial
nope, you only need an api key
please made a video on tekla structure
1:41:27
Is there any reason why you used assistant over system when giving a personality?
sorry for not relating much to the topic, what is the chrome extension for pets running?
day1 - 34:44
day2 -
18:30
Ily
👍
Can you make it without the ethical blockers? Tired of the "That us illegal" blah blah etc.
Hard to follow the course, and not really a detailed explanation. But anyway thank you!
First !
100th comment
1st 😅
Pappu , pedda pappu, panikiraani pappu
Aligning with human values ... not.
First comment plz pin
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.
javascript version anytime soon?