CrewAI for Absolute Beginners: Launch Your First AI App in Minutes!

Поделиться
HTML-код
  • Опубликовано: 28 май 2024
  • Step By Step Guide and Links:
    hexagonal-raptorex-012.notion...
    Part 2 is out! Install and Run this CrewAI project you can customize!:
    • Original Part 2 but ha...
    Got Questions on AI Application or Learning? Click Here to Book a 1:1 With Me! : calendly.com/hectordevstore1/...
    I will guide you through the process of deploying a Crew AI project online. Whether you're a beginner programmer or have no technical experience, I will show you step-by-step how to host your application and share it with others. By the end of the tutorial, you will have gained practical experience in deploying an AI project.
    0:00 Launching and Building Your AI Application: From Basics to Practical Setup
    1:26 Setting Up Your Development Environment: Visual Studio Code, Terminal, and Homebrew
    2:21 Mastering Installations: Homebrew, Developer Tools, and Git Essentials
    4:16 Understanding Python Libraries and Managing Project Dependencies
    6:49 Finalizing Setups: Poetry Installation and Encouragement for First-Timers
    Setup CrewAI in 5 Minutes!
    • Master CrewAI Setup wi...
    Join My FB Group to learn more about AI and other technologies:
    / 1078615460037423
    Join My Discord: / discord
    IG: @hector.levelup
    TikTok: @hectorlevelup
    Tags:
    #techjourney #overcomingselfdoubt #careerintech #computerscience #crewai
  • НаукаНаука

Комментарии • 22

  • @Hector.levelup
    @Hector.levelup  11 дней назад

    UPDATE: (5-17-2024) (Only 7 Spots left)
    Want FREE access to my Skool community? Book 1on 1 call with me: calendly.com/hectordevstore1/30min

  • @MVPagency
    @MVPagency 16 дней назад +1

    thank you for this. non coders are looking for your videos.

    • @Hector.levelup
      @Hector.levelup  15 дней назад +1

      That’s what I am aiming for! I appreciate your kind words !

    • @Harris4141-lx1iu
      @Harris4141-lx1iu 3 дня назад

      @@Hector.levelup ok, can i use free API like Gemini instead of Openai, if so what should i change

  • @ranakabiraj-pe9ju
    @ranakabiraj-pe9ju 6 дней назад +1

    Thanks for the 1:1 man

    • @Hector.levelup
      @Hector.levelup  6 дней назад

      Good to meet ya! Excited for your project !

  • @AIWriterSEOTools
    @AIWriterSEOTools 16 дней назад +1

    Brilliant video! Thanks Hector !

    • @Hector.levelup
      @Hector.levelup  15 дней назад

      Thank you :) you’re honest and kind feedback is much appreciated

  • @djverca6268
    @djverca6268 16 дней назад +1

    Solid video.

    • @Hector.levelup
      @Hector.levelup  15 дней назад

      I appreciate it! Hopefully this helps you in your ai journey !

  • @steveknows6126
    @steveknows6126 16 дней назад +1

    This is your best one Hector. Thank you.

    • @Hector.levelup
      @Hector.levelup  15 дней назад

      Thank you Steve! More on this series coming soon!

  • @pazalkalay9228
    @pazalkalay9228 16 дней назад +1

    Love it, man. Link to the FB group is not working. Could you reshare?
    Thanks

    • @Hector.levelup
      @Hector.levelup  16 дней назад

      Sorry about that! Try this one out !
      facebook.com/share/8W2WnUirUk5Xe44s/?mibextid=K35XfP

  • @adrielmoraes4905
    @adrielmoraes4905 16 дней назад +1

    Gosto muito de assistir seus vídeos, embora tendo dificuldade para entender sua linguagem, mas uso um app para fazer a transcrição do áudio, mas da para entender, eu gostaria de vc me desse uma dica de como fazer para os agentes fazerem a análise de PDF ou imagem, enviado a partir da interface do gradio, ele fariam a análise do conteúdo do arquivo

    • @Hector.levelup
      @Hector.levelup  16 дней назад

      Acredito que o CrewAI tenha ferramentas para analisar entradas de arquivos PDF e de texto. Ainda não as utilizei, mas acredito que você possa anexá-las ou carregá-las no programa. É isso que você está tentando fazer?

  • @Harris4141-lx1iu
    @Harris4141-lx1iu 3 дня назад +1

    Hey Hector, please clarify my doubt do i have to make a folder "Virtual-Machine" on VS

    • @Hector.levelup
      @Hector.levelup  3 дня назад

      Hi Harris! You do not need to do this. That is just the name of the folder my project was running in because I use a virtual machine when I do projects from scratch for tutorials like these. Let me know if you have any other questions!

  • @WayneBruton
    @WayneBruton 12 дней назад +1

    Hey Hector, I am a developer but need to do a complex operation that Humans will definately make errors consistently. What are your rates for a Calendly for some advice?

    • @Hector.levelup
      @Hector.levelup  12 дней назад

      Hey Wayne appreciate you reaching out. Currently I am offering 30 min 1 on 1 calls free of charge. This will help us hone in on what the needs of your business are more clearly. Here’s the link :
      calendly.com/hectordevstore1/30min

  • @Harris4141-lx1iu
    @Harris4141-lx1iu 3 дня назад +1

    can i use free api key like Gemini instead of Openai Api ? if so please tell what should be changed , thanx

    • @Hector.levelup
      @Hector.levelup  3 дня назад

      Hi Harris,
      I've tried setting up some projects with Gemini before but feel as though I run into more errors when trying to use it compared to the other LLMs, so I havent implemented it in any of the project tutorials.
      However, you can use Gemini, the main thing you would change would be in the agents.py file, you would need to import the proper library and create a new variable for the Gemini model similar to how all the other ones are listed:
      First in the command line type "pip install langchain_google_genai"
      Next, at the top of your agents.py file paste thefollowing import:
      from langchain_google_genai import ChatGoogleGenerativeAI
      Save your GEMINI_API_KEY in secrets.toml
      Then paste the following line under def __init__(self):
      self.geminiPro = ChatGoogleGenerativeAI(model="gemini-pro",verbose = True, temperature = 0.5, google_api_key=os.environ.get("GEMINI_API_KEY"))