Alejandro AO - Software & Ai

Alejandro AO - Software & Ai

🔥 I help you become a software developer and code AI applications.

Пікірлер

  • @edmashokmusic1692
    @edmashokmusic169219 сағат бұрын

    this is the best tutorial i have ever watched. thanks a lot man. And Instead of train, test. is there any benefit of using train, validation, test?

  • @jim02377
    @jim02377Күн бұрын

    I just made it through the entire tutorial. As usual you attention to the details is awesome. Now I want to try to agent version and see the difference!

  • @ashokvaswani123
    @ashokvaswani123Күн бұрын

    I saw some other videos on CrewAI and nobody is talking about .yaml files like you have shown. What are yaml files and how do they differ from the .py files that others have shown. Even in the repos of CrewAI I did not see any yaml files

  • @ashokvaswani123
    @ashokvaswani123Күн бұрын

    I find this is too complicated for a beginner who has no code experience. Please suggest what previous knowledge is needed to be able to build a crew like you have shown in the video? I am keen to learn how to create crews for my own needs so please give me a detailed answer

  • @stephaneleroi8506
    @stephaneleroi85062 күн бұрын

    Thank you very much for the video. Can you tell me for information what is the code assistant you are using ? Thx a lot

  • @yusufersayyem7242
    @yusufersayyem72422 күн бұрын

    Big Thanks ❤❤❤

  • @wapoipei
    @wapoipei2 күн бұрын

    I've been searching for this topic with working samples and you gave us a full working project. You have a gift in teaching, keep it up mate. Thank you Alejandro!

  • @matrix120
    @matrix1203 күн бұрын

    Thanks bro that's what I need

  • @akhil2729
    @akhil27293 күн бұрын

    Has anyone managed to work with postgresql?

  • @patsokila
    @patsokila3 күн бұрын

    Great quality video🎉

  • @EnjenirHH
    @EnjenirHH4 күн бұрын

    No render Equation button shown for me.

  • @haoqinggenius4335
    @haoqinggenius43354 күн бұрын

    is it just me or has Chatgbt all of a sudden stop displaying math symbols and generate everything in latex code, with no way of reversing it? This video doesnt work and there arent any options to prompt or render latex in chatgbt now.

  • @emanuelkazadi4135
    @emanuelkazadi41354 күн бұрын

    I’m in the exact same boat

  • @danri9839
    @danri98394 күн бұрын

    Same issue T_T, and this extension does not help

  • @haoqinggenius4335
    @haoqinggenius43354 күн бұрын

    Is it just some bug issue on chatgbt's side that they have to fix ? Or is this gonna become a permanent thing?

  • @danri9839
    @danri98393 күн бұрын

    @@haoqinggenius4335 I don't know. I just hope they'll fix it soon. Or it gonna be big problem for me.

  • @paulopaz8184
    @paulopaz81843 күн бұрын

    @@danri9839 if anyone has a solution pls answer hereeeeeee

  • @AbhishekGupta-re4mk
    @AbhishekGupta-re4mk4 күн бұрын

    it does not offer the option to render latex, i feel scammed now :(

  • @zakihumble
    @zakihumble4 күн бұрын

    \[ \oint_S \mathbf{E} \cdot d\mathbf{A} = \frac{Q_{\text{enclosed}}}{\varepsilon_0} \]

  • @maodela7893
    @maodela78934 күн бұрын

    Does not work anymore. HELP!!!

  • @user-ce2sg2dp4n
    @user-ce2sg2dp4n5 күн бұрын

    Hello, great tutorial as always. I am completely new to this, so after running the code and changing a few things I keep getting this error "AttributeError: st.session_state has no attribute "db"" and I do not know how to solve it.

  • @sergiosobral5776
    @sergiosobral57765 күн бұрын

    Hi, could you give me a way to add audio, in addition to writing?

  • @RayGuo-bo6nr
    @RayGuo-bo6nr5 күн бұрын

    Thank you so much!

  • @RayGuo-bo6nr
    @RayGuo-bo6nr5 күн бұрын

    Thanks you so much!

  • @aloybanerjee9460
    @aloybanerjee94606 күн бұрын

    I tried but getting ImportError: Dependencies for InstructorEmbedding not found. always, even I tried downloading the model locally and run but still same error can you kindly help

  • @bitcoinjc
    @bitcoinjc6 күн бұрын

    Will this work with a Microsoft SQL relational database that is much bigger too?

  • @TheKwame83
    @TheKwame837 күн бұрын

    Thank you for this great tutorial. It was fun working on it. Great job!

  • @agugi
    @agugi7 күн бұрын

    I wish you would give an example that is more useful rather than one taken from the documentation. For instance, you could prepare and send an Instagram post once a week. Or, I don't know, you could examine Google ads and prepare a more effective ad campaign to surpass competitors. The ones in the documentation are certainly very helpful, but they contain information that is not useful to anyone. Maybe they are ideal for understanding the basics, but if you are going to teach how to build an agent from scratch, wouldn't it be great if it was something more useful and something people would want to use?

  • @mbahdave
    @mbahdave7 күн бұрын

    "Thanks, is a coll."

  • @bgriffin5447
    @bgriffin54477 күн бұрын

    Absolutely love your content. What auto completion engine are you using for VSCode/cursor ide?

  • @zakariaboulouarde4591
    @zakariaboulouarde45918 күн бұрын

    Hello thank you so much for this valuable tutorial. I did the same steps but i got an error in Search tool " No module named 'langchain' howerver I installed the langchain package. Thank you again for all your efforts

  • @Pragathishx
    @Pragathishx8 күн бұрын

    Bro u saved me... Tomorrow i have exam..

  • @anirudhsharma6355
    @anirudhsharma63558 күн бұрын

    hey guys ...use this update code to run from langchain.agents.agent_types import AgentType from langchain_experimental.agents.agent_toolkits import create_csv_agent from langchain_openai import ChatOpenAI, OpenAI from dotenv import load_dotenv import os import streamlit as st def main(): load_dotenv() # Load the OpenAI API key from the environment variable if os.getenv("OPENAI_API_KEY") is None or os.getenv("OPENAI_API_KEY") == "": print("OPENAI_API_KEY is not set") exit(1) else: print("OPENAI_API_KEY is set") st.set_page_config(page_title="Ask your CSV") st.header("Ask your CSV 📈") csv_file = st.file_uploader("Upload a CSV file", type="csv") if csv_file is not None: agent = create_csv_agent( OpenAI(temperature=0), csv_file, verbose=True) user_question = st.text_input("Ask a question about your CSV: ") if user_question is not None and user_question != "": with st.spinner(text="In progress..."): st.write(agent.run(user_question)) if __name__ == "__main__": main() #do visit github.com/aniii08112002 #Thankyou Alejandro sir

  • @PhunkyBob
    @PhunkyBob9 күн бұрын

    $7 to $9 for the execution... ouch 😑

  • @alejandro_ao
    @alejandro_ao9 күн бұрын

    yeah… got-4o and claude are much cheaper though. you can also use local models like llama3 instead for free!

  • @PhunkyBob
    @PhunkyBob6 күн бұрын

    @@alejandro_ao Groq + Llama3 70b may fit well in this configuration.

  • @user-gd6gt8hi5r
    @user-gd6gt8hi5r9 күн бұрын

    You are handsome, and look kind. I couldn’t focus on the video🎉

  • @OzgurOzsen
    @OzgurOzsen9 күн бұрын

    First of all, I really congrats you bro, your ideas are very useful thanks again. However, I am very curious about your opinion on the following as a custom agent tool structure: “For example, how can you plan a code evaluation agent structure?” For example, .java code will be entered as input, the execution of the code will be evaluated with a certain weight, the proper writing of the code will be added as an evaluation parameter, and the use of commands will also be added as an evaluation parameter, and ultimately a custom agent that returns a score. How do you think we can do it? You usually make web search tool examples, for example, wouldn't this be different? Wouldn't it be great if you prepared such a content video? I'm curious about your ideas on this subject! For example, the first stage can be considered as a simple two-stage evaluation: 1- The presence or absence of a syntax error in the code (Output: True or False, accordingly 1 point if true and 0 if false) 2- Is there a Comment in the code or not? (like condition 1, if the output is true, 1 point if not 0) How about an agent and a custom tool that will evaluate only according to these two structures?

  • @harshsingh7842
    @harshsingh78429 күн бұрын

    hey can anyone tell me from where didi get thet openai api key becayse these days keys are passing rate limit error is there any substitute for open ai api key

  • @classicmedia001
    @classicmedia0019 күн бұрын

    I keep getting DefaultCredentialError.. Please how can I solve that error 🙏🏼

  • @mygicarskrsk4465
    @mygicarskrsk44659 күн бұрын

    been waiting for new vidoes this is lit! 🔥🔥 Thanks for vid.

  • @alejandro_ao
    @alejandro_ao9 күн бұрын

    🫶

  • @polly28-9
    @polly28-910 күн бұрын

    Thanks for the video! Well Done! I want to know how to make the chatbot to return a list of results. Not only one result, but a list of relevant answer to the input question. I do not know what to change: search index, search parameters, metric_type or what? Can you help me? Thanks!

  • @adelinadonisa
    @adelinadonisa10 күн бұрын

    Thank you for this video 🙏😊!

  • @alejandro_ao
    @alejandro_ao10 күн бұрын

    Hey Adelina! It's my pleasure 😊

  • @mpazaryna
    @mpazaryna10 күн бұрын

    Thanks for the work. I reran this and modified it to use gpt4-o, and on review (I used AgentOps Dashboard), the cost was $3.24. That seems to be very high. Are you seeing a similar charge? Thanks

  • @alejandro_ao
    @alejandro_ao10 күн бұрын

    hey there, yeah that seems a bit high, especially for gpt-4o, which is supposed to be cheaper than gpt-4. are you sure that the crew is actually calling this model?

  • @mpazaryna
    @mpazaryna10 күн бұрын

    @@alejandro_ao Yes. If you're interested, I can send you the run results from the AgentOps Dashboard. It shows 118k prompt tokens and 14k completion tokens.

  • @AndyPandy-ni1io
    @AndyPandy-ni1io10 күн бұрын

    yet another impossible-to-follow video!!!!

  • @alejandro_ao
    @alejandro_ao10 күн бұрын

    hey there, can you let me know what you mean by this? where did you get lost? i try to make these videos as approachable as possible

  • @AndyPandy-ni1io
    @AndyPandy-ni1io8 күн бұрын

    Will do I'm just going to have another go. Will start from scratch, just new to python and environments and API keys and everything else. I won't give up till I get it working. So I was thinking if I had something working then I could understand subtle changes I make or bots I've designed and repurpose the agents to do what idea I've got. But when I load in the code it's got loads of errors so I'm doing something wrong or is it the code I download, I'll make step by step notes on my next attempt. Just to stress I'm 100% noob to this so if I can learn this, we'll then anyone can, I'm a good advert if it works 😄.

  • @AndyPandy-ni1io
    @AndyPandy-ni1io10 күн бұрын

    exa_py==1.0.9 wont install, also I get 63 errors does that matter? also my writing is different colour does that mean this don't work?

  • @alejandro_ao
    @alejandro_ao10 күн бұрын

    what version of python are you using? are you using conda environments? you can let me know with a bit more detail on the discord server. you can post your code there and maybe i can help you out: link.alejandro-ao.com/discord please tag me there when you post your question to be sure that i see it!

  • @AndyPandy-ni1io
    @AndyPandy-ni1io10 күн бұрын

    haha slow down with that mouse

  • @alejandro_ao
    @alejandro_ao10 күн бұрын

    yeah, i don't think i will be using this screen recording app for long format videos anymore tbh

  • @Reality_Check_1984
    @Reality_Check_198410 күн бұрын

    I would love to see a local example. I have tried to get this and other examples to run locally but I have not had any luck. I have followed the example on the crewai page and other videos but cant figure out why the tools wont work. Flip it back over to "open"AI and it runs but burns tokens too fast.

  • @alejandro_ao
    @alejandro_ao10 күн бұрын

    i'll start working on a video about this :)

  • @Reality_Check_1984
    @Reality_Check_19849 күн бұрын

    @@alejandro_ao Awesome! Thank you!

  • @oberdansantos5802
    @oberdansantos580210 күн бұрын

    Embora seja muito conteúdo, ele foi bem articulado 🤖. Então, parabéns🍻 pela leveza da condução da apresentação do video.

  • @alejandro_ao
    @alejandro_ao10 күн бұрын

    muito obrigado! 🔥

  • @BrandonFoltz
    @BrandonFoltz10 күн бұрын

    Oh yea! It's like Bob Ross for coding AI. Great to have another video that can be expanded and reused for other applications. The emphasis to always have a front end UI is what sets these videos apart even if it takes a little more time. Bravo as usual.

  • @alejandro_ao
    @alejandro_ao10 күн бұрын

    hey Brandon! i appreciate it, thank you! i'm glad you are finding this series useful :) please let me know if you have any suggestions or feedback. all the best!!

  • @leonchao7692
    @leonchao769211 күн бұрын

    This is such a great tutorial journey.

  • @alejandro_ao
    @alejandro_ao10 күн бұрын

    thanks for being part of this journey!

  • @leonchao7692
    @leonchao76929 күн бұрын

    @@alejandro_ao Quick question, when setting a task with parameter of 'human_input=True', is there a way to enable this human interactive in the web frontend? Thanks in advance.

  • @rameshh3821
    @rameshh382111 күн бұрын

    Could you please let me know if it's possible to use LangChain to query multiple tables and generate data visualizations on the chatbot interface? I've seen solutions for a single CSV file using PandasAI or LIDA, but I haven't found anything that works with multiple tables stored in a database.

  • @andydataguy
    @andydataguy11 күн бұрын

    Brother you are a legend 🙌🏾 I've been needing a UI for crews. You still top of the game! Thank you for taking the time to make and share this

  • @alejandro_ao
    @alejandro_ao10 күн бұрын

    thanks Andy! i’m glad to be able to contribute to your learning path, regardless of how small my contribution is :)

  • @deepankdixit7541
    @deepankdixit754111 күн бұрын

    Another quality video from you! 🔥 Could you also make a video on RAPTOR as it outperforms RAG on longer documents?

  • @alejandro_ao
    @alejandro_ao10 күн бұрын

    hey there! thanks man. i would very much like to do a video about that indeed. thanks for the recommendation! i will include it in a future series, definitely coming up in the next few weeks. thanks!