Improve your BabyAGI with LangChain

  Рет қаралды 21,745

Sam Witteveen

Sam Witteveen

Күн бұрын

Пікірлер: 43
@coolmcdude
@coolmcdude Жыл бұрын
I would really like a video about the vector store and embeddings. Preferably with llama 😬
@disarmyouwitha
@disarmyouwitha Жыл бұрын
ChatGPT did the same thing when they first implemented it in LangChain- they had to add chat versions for their different agents that parsed 3.5 properly like “chat-zero-shot-react-description”, so maybe we could implement something similar for llama models, if they react consistently enough?
@gianfrancotasteri3733
@gianfrancotasteri3733 Жыл бұрын
Perhaps, but also it would be good to generate a bunch of conversational examples using gpt4 and then fine tune a llama version to do that. If I had the resources I would certanly go that path.
@KolTregaskes
@KolTregaskes Жыл бұрын
Another great video. I would be very interested to see you expand on this. A non OpenAI model would be good just for testing and fine tune our prompt before having to spend money on APIs with GOT3.5 or 4.
@ElectroFriedBees
@ElectroFriedBees Жыл бұрын
Just to point out, there already exists a model fine tuned on tool use called toolpaca. I can envision a pipeline that had Koala responsible for part of the chain where you need accurate factual generation, the tool agent set to use toolpaca and perhaps even a more conversational model like Vicuna used for certain tasks like generating web searches or output.
@waqaskhalidobeidy2673
@waqaskhalidobeidy2673 Жыл бұрын
Thanks for the tutorial Sam. Very helpful indeed.
@brofessorsbooks3352
@brofessorsbooks3352 Жыл бұрын
Would love to see a fine-tuning video!
@rafaeldelrey9239
@rafaeldelrey9239 Жыл бұрын
Great video. For BabyAGI and AutoGPT, I m yet to see a really interesting use case where it works as expected. All my tries ended up with the agents totally losing focus or bringing completely wrong information. Inspired by your objective, I just tried "Find the most powerful laptop for AI Art in 2023, and give me the brand, model, and specs of such laptop". Tried multiple forms for this objective but got nowhere close to a good answer. I believe these autonomous tools might evolve into something interesting in the future, but the current ones are mostly loops with prompts.
@samwitteveenai
@samwitteveenai Жыл бұрын
Totally agree they are loops and often loops that get off track too easily, but I think there are way that can make them useful for certain tasks.
@rudy9546
@rudy9546 Жыл бұрын
Great channel and videos , thanks!
@jeanchindeko5477
@jeanchindeko5477 Жыл бұрын
I’m not surprise all those ChatGPT (GPT3.5-turbo) variations of LLaMA, Alpaca, Vicuña, Dolly, Koalas,… are not able to perform as well as GPT-4. Everybody are trying to do ChatGPT alternative forgetting that Q&A is not the whole game. Beside Q&A, you might also want the model to make use of tool, self reflect, perform task prioritisation, etc…
@impolitevegan3179
@impolitevegan3179 Жыл бұрын
Vectore store concept video would be great, even greater would be a deep tutorial
@kostik
@kostik Жыл бұрын
So how is this different from Auto-GPT?
@NNokia-jz6jb
@NNokia-jz6jb Жыл бұрын
In short? What does this do?
@johnwallis1626
@johnwallis1626 Жыл бұрын
good vid sam, i had similar experience, if you want the process to find information beyond a simple google search process, it breaks down quickly, however, early stages so with changes to prompts espc. what sites to start scraping from it can improve
@bandui4021
@bandui4021 Жыл бұрын
Would it be a good idea to have a short video or something where you have a comparison of the different models and there adv/disadv which can be easily updated? The sheer amount of new things is overwhelming.
@futurizerush
@futurizerush Жыл бұрын
Sam, you are the pro! This's truly insightful and helpful! I wanted to ask for your permission to translate your code into Chinese and share it with the Chinese community. I believe that they would greatly appreciate and benefit from it. Please let me know if it's cool to do that. Thanks!
@samwitteveenai
@samwitteveenai Жыл бұрын
Can you contact me on Linkedin. I have been trying to get the videos up on Bilibili but been running into issues.
@futurizerush
@futurizerush Жыл бұрын
@samwitteveenai Absolutely! I'm all ears if there's anything I can help with. Just sent you a message on LinkedIn. By the way, I'm from Taiwan and I'm not super familiar with BiliBili, but if you can shoot over some screenshots of the issues you're facing, I might be able to help troubleshoot. Hope your weekday's going well!
@SaonCrispimVieira
@SaonCrispimVieira 7 ай бұрын
Thanks for the incredible tutorial! How would you adapt the vectorstore part in order to use chroma instead of faiss?
@samwitteveenai
@samwitteveenai 7 ай бұрын
If you check out the video I just released today on adding RAG to LangGraph, the first half of that is setting up a ChromaDB for RAG.
@SaonCrispimVieira
@SaonCrispimVieira 7 ай бұрын
@@samwitteveenai Thank you! I'm having some problem in making the agents work dealing with non-english languages also! Any sugestion?
@samwitteveenai
@samwitteveenai 7 ай бұрын
@@SaonCrispimVieira This is usually down more to model choice. What models are you using and what languages are you trying to cover ?
@SaonCrispimVieira
@SaonCrispimVieira 7 ай бұрын
@@samwitteveenai Just tried to adapt your tutorial on baby agi to portuguese, I translated the prompt's and the zero_shot agent stopped to work! I'm watching others videos from your awesome channel and now I think the problem is the output parser. I'm interested in developing an angent who reacts to a device's inner state change using the system manual in a rag pipeline to stream a action plan. I've seem so much progress in this area that I'm no sure if this framework is the better one or should I try other approaches? Like, go direct to langgraphs.
@gustavomonteiro2087
@gustavomonteiro2087 Жыл бұрын
Sam, please consider prioritizing making this video about how to take Koala 13B and further fine tuning it on your on data. We are lacking videos showing how to further fine tune those open sourced models. Especially now with those autonomous applications, the OpenAI bill is getting way too expensive for everybody. 😅
@nesdi6653
@nesdi6653 Жыл бұрын
if you can do the vectorstore embeddings with FAISS why even use pinecone
@samwitteveenai
@samwitteveenai Жыл бұрын
Pinecone would be for if someone wants to persist it in the cloud.
@amitpanchall81
@amitpanchall81 Жыл бұрын
How to use this with SqlDatabase chain
@samwitteveenai
@samwitteveenai Жыл бұрын
you could plugin that in as a separate tool.
@moistweener
@moistweener Жыл бұрын
Do any of these work with mobile? Anyone know
@abhijitkadalli6435
@abhijitkadalli6435 Жыл бұрын
Won't this be even more cost effective if we used something like vicuna or alpaca? And what if used the dolly version would this be commercially viable?
@abhijitkadalli6435
@abhijitkadalli6435 Жыл бұрын
ohhhhhhhhhhhh LESGOO YOU Actually used a model other than openAI you are the best...
@meishadow74
@meishadow74 Жыл бұрын
This is what im thinking when i know about langchain and pinecone, there must be a way to use other thn openai api key, for example hugging face api or mybe just use local model like vicuna/koala/gpt4all etc etc.. edited: i just finish the video and yeap, its possible to use Koala etc, but need to finetune the model to be able to do the task.. imma test it, maybe i find something or someway to get it work..
@samwitteveenai
@samwitteveenai Жыл бұрын
I showed using Koala at the then end of the video which is very similar to Vicuna (probably a bit better) and it doesn't work without finetuning it for this task.
@impolitevegan3179
@impolitevegan3179 Жыл бұрын
I've played with these a bit and it looks like raven would be much better for this task than koala.
@samwitteveenai
@samwitteveenai Жыл бұрын
interesting I didn't try Raven on this, does it handle the tool stuff as well?
@impolitevegan3179
@impolitevegan3179 Жыл бұрын
@@samwitteveenai sorry I wasn't clear, I haven't implemented a auto-gpt with raven yet. I hope the authors of raven will implement until the weekend, so I don't have to. They added chat functionality a few days ago, so it seems they are actively working on it. I meant it would be better because 1. in my experience it's better than all others including koala, dolly 2.0, alpaca... 2. it does not have the context length problem as all others, including gpt4 api. This opens new possibilities.
@ricardocosta-w6l
@ricardocosta-w6l Жыл бұрын
Sam, do you have a discord or other medium were we can talk?
@samwitteveenai
@samwitteveenai Жыл бұрын
Currently not. perhaps in the future.
@ricardocosta-w6l
@ricardocosta-w6l Жыл бұрын
@@samwitteveenai I will be over the moon when I can discuss with you some ideas and projects. :D
PydanticAI - Building a Research Agent
17:34
Sam Witteveen
Рет қаралды 18 М.
When you have a very capricious child 😂😘👍
00:16
Like Asiya
Рет қаралды 18 МЛН
VIP ACCESS
00:47
Natan por Aí
Рет қаралды 30 МЛН
Quando A Diferença De Altura É Muito Grande 😲😂
00:12
Mari Maria
Рет қаралды 45 МЛН
Run BabyAGI with Langchain Agents (with Python Code)
15:16
1littlecoder
Рет қаралды 10 М.
LangChain Basics Tutorial #1 - LLMs & PromptTemplates with Colab
19:39
Function Calling with LLM using LangChain + Ollama
17:47
Yankee Maharjan
Рет қаралды 1,3 М.
Camel + LangChain for Synthetic Data & Market Research
20:44
Sam Witteveen
Рет қаралды 16 М.
Understanding ReACT with LangChain
21:10
Sam Witteveen
Рет қаралды 52 М.
Build Your Own Auto-GPT Apps with LangChain (Python Tutorial)
29:44
Dave Ebbelaar
Рет қаралды 206 М.
Talking to Alpaca with LangChain - Creating an Alpaca Chatbot
10:59
Sam Witteveen
Рет қаралды 36 М.
Multi-Agent AI EXPLAINED: How Magentic-One Works
16:39
Sam Witteveen
Рет қаралды 18 М.
AGI is here! (AutoGPT) Detailed Tutorial + Real Example
14:37
Code with AppyDave
Рет қаралды 114 М.
ChatGPT for YOUR OWN PDF files with LangChain
14:20
Prompt Engineering
Рет қаралды 271 М.