Build and Deploy LLM Application in AWS Lambda - BedRock - LangChain

Поділитися
Вставка
  • Опубліковано 21 сер 2024

КОМЕНТАРІ • 24

  • @user-ht5ev7il3h
    @user-ht5ev7il3h 5 місяців тому +9

    Please do more on AWS Bedrock to develop on RAG applications......your explanation is simple and effective.......stay motivated and upload more videos about LLM

    • @AboniaSojasingarayar
      @AboniaSojasingarayar  5 місяців тому

      Thanks for your kind words! Sure I will do it.

    • @akshaykotawar5816
      @akshaykotawar5816 4 місяці тому +1

      Yes same thing i want ​@@AboniaSojasingarayar

    • @AboniaSojasingarayar
      @AboniaSojasingarayar  3 місяці тому

      Here the tutorial link to Deploying a Retrieval-Augmented Generation (RAG) in AWS : ua-cam.com/video/gicsb9p7uj4/v-deo.html

  • @raulpradodantas9386
    @raulpradodantas9386 Місяць тому +1

    Save my life to create lambda layers... I have been trying for days. TKS!

  • @akshaykotawar5816
    @akshaykotawar5816 4 місяці тому +1

    Very Informative thanks for uploading

  • @RajuSubramaniam-ho6kd
    @RajuSubramaniam-ho6kd 2 місяці тому +2

    Thanks for the video. Very useful for me as I am new to AWS lambda and bedrock. Can you please upload the lambda function source code? Thanks again!

    • @AboniaSojasingarayar
      @AboniaSojasingarayar  2 місяці тому

      Glad it helped.
      Sure you can find the code and complete the article on this topic in the description.
      In any way here is the link to the code : medium.com/@abonia/build-and-deploy-llm-application-in-aws-cca46c662749

  • @zerofive3699
    @zerofive3699 5 місяців тому +1

    Very informative

  • @humayounkhan7946
    @humayounkhan7946 3 місяці тому +2

    Hi Abonia, thanks for the thorough guide, but i'm abit confused with the lambda_layer.zip file, why did you have to create it through docker? is there an easier way to provide the dependencies in a zip file without going through docker? Thanks in advance!

    • @AboniaSojasingarayar
      @AboniaSojasingarayar  3 місяці тому +1

      Hi Humayoun Khan, Yes we can but Docker facilitates the inclusion of the runtime interface client for Python, making the image compatible with AWS Lambda.
      Also it ensures a consistent and reproducible environment for Lambda function's dependencies. This is crucial for avoiding discrepancies between development, testing, and production environments.
      Hope this helps.

  • @NJ-hn8yu
    @NJ-hn8yu 2 місяці тому +2

    Hi Abonia, thanks for sharing. I am facing this error . can you please tell how to resolve it "errorMessage": "Unable to import module 'lambda_function': No module named 'langchain_community'",

    • @AboniaSojasingarayar
      @AboniaSojasingarayar  2 місяці тому

      Hello,
      You are most welcome.
      You must prepare your ZIP file with all the necessary packages. You can refer to the instructions starting at the 09:04

  • @Bumbblyfestyle
    @Bumbblyfestyle 5 місяців тому +2

    👍👍

  • @user-wr4yl7tx3w
    @user-wr4yl7tx3w 2 дні тому

    Can we simply rely on open source only without using Amazon? What if it is just prototyping?

  • @fkeb37e9w0
    @fkeb37e9w0 3 місяці тому +1

    Can we use openai and chromadb on aws??

    • @AboniaSojasingarayar
      @AboniaSojasingarayar  3 місяці тому

      Yes we can!
      In the below tutorial I have demonstrated how we can create and deploy lambda layer via container for larger dependencies : ua-cam.com/video/gicsb9p7uj4/v-deo.htmlsi=F_X7-6YCAb0Kz3Jc

    • @fkeb37e9w0
      @fkeb37e9w0 3 місяці тому

      @@AboniaSojasingarayar yes but can this be done without eks or containers?

    • @AboniaSojasingarayar
      @AboniaSojasingarayar  3 місяці тому

      Yes! You can try it by creating a custom lambda layer.If you face issue try to use only the required libraries and remove any unnecessary dependencies from your zip file.Hope this helps.