LangChain in Production - Microservice Architecture (incl. FastAPI and Docker)

Sdílet
Vložit
  • čas přidán 10. 06. 2024
  • Ever thought about build a real world application with LangChain, with multiple microservices, a real Frontend Framework and RestAPIs to handle conversations? Then this video is for you!
    Code: github.com/Coding-Crashkurse/...
    0:00 Microservice Architecture Chatbot
    2:45 Quick tipps for LangChain Ecosystem in Production
    3:45 Code Walkthrough
    10:37 Checkout the App!

Komentáře • 73

  • @romanklyuchnikov-ym3ul
    @romanklyuchnikov-ym3ul Před měsícem +4

    i always see these comments under like every tutorial video even the ones that give no really useful info, so any praise under any educational video kinda devalued to me which i suppose might be the case for the creator themselves too.
    ive never written such comment partly for that reason and MAN i just want you to know that this video is the most appreciated of the ones about langchain to me, i literally cant begin to describe how useful for me it is, been searching for it for a really long time. you deserve the happiest life a human can imagine and i just hope some day i'll run into you to buy you a beer or two. thank you.

    • @codingcrashcourses8533
      @codingcrashcourses8533  Před měsícem

      Thank you so much for that comment. Reall makes m day to Read something like this :)

  • @jayglookr
    @jayglookr Před 11 měsíci +9

    You did a containerized, modular deployment of a LangChain implementation. Very nice! Man here made me smash that 'like'. He made me.

  • @maxstrootmann
    @maxstrootmann Před měsícem

    This is absolute gold! You are helping me make my dream project right now, thanks so much!

  • @lukem121
    @lukem121 Před 11 měsíci

    This is very cool! Would be keep to see more of this!

  • @ivansebastiancordovarivero3176

    You are the best my man! Such a great video

  • @vj7668
    @vj7668 Před 2 měsíci +1

    excellent ! production readiness score 8/10

  • @sany2k8
    @sany2k8 Před 11 měsíci

    Subscribed you channel, waiting for more full project based tutorial on AI, Langchain, Python, Data science. Keep up the good work ❤👍❤

  • @jorgecantero7101
    @jorgecantero7101 Před 10 měsíci

    Nice work!!! there are a lot of notebook but no so much information for real world. its really valuable!!!

  • @jsolnis
    @jsolnis Před 4 měsíci

    Great job!! Thank you very much!

  • @mariusorani
    @mariusorani Před 8 měsíci

    Great Work! Finally a Real World App on youtube

  • @robertmazurowski5974
    @robertmazurowski5974 Před 11 měsíci +3

    This makes sense for very large projects, a monolith for most use cases is 100 percent fine. Microservices is for an app that is used constantly by many users and the app makes a lot of money. Also why would a restaurant pay monthly for so many containers? If it is a chain it is fine, for small business this is very impractical. Following best practices for the sake of it when it does not provide a benefit, and from the business perspective does not make sense is not a good idea.
    BTW the design is good, and the tutorial was presented very well, just don't tell people to use microservices for a restaurant app.

    • @codingcrashcourses8533
      @codingcrashcourses8533  Před 11 měsíci +1

      Yes, this Implementation is for a Restaurant chain of course. Thats why i made that Statement about hybrid search.

  • @hadjebi
    @hadjebi Před 11 měsíci

    Well done!

  • @FabianPedreros-xg1gt
    @FabianPedreros-xg1gt Před 10 měsíci +3

    Excellent work, it's great to see another approach more oriented to a real application, I wonder if you could make a video of the deployment in web services like AWS and GCP, there are many tools and I don't know which one to choose in these cases, it would help a lot to see how you execute it. Greetings from Colombia.

  • @georgefraiha6597
    @georgefraiha6597 Před 10 měsíci

    Amazing 👍👍👍

  • @naim5387
    @naim5387 Před 11 měsíci +1

    Outstanding work! This is one of the best tutorial I've found on how to build real-world LLM apps.I think it's really cool how you use Redis for preserving conversation history. However, I'm wondering if there might be issues exceeding the OpenAI token limit? Do you have any ideas to overcome this issue? Keep up the good work!

    • @codingcrashcourses8533
      @codingcrashcourses8533  Před 11 měsíci +1

      VERY good point. You could do that by cutting off the conversation if it grows longer than 10 interactions (or any other useful number). Would be worth looking at how ChatGPT handles that

    • @naim5387
      @naim5387 Před 11 měsíci +1

      Thanks for your response! I completely agree, keeping the recent X number of interactions might be sufficient for smaller projects. However, for more complex, production-ready apps, I believe using something like ConversationSummaryBufferMemory from Langchain might be a more robust solution. It would be really fascinating to see how this functionality could be incorporated into ConversationService. Looking forward to future updates with this in mind.

  • @zealapex5537
    @zealapex5537 Před 11 měsíci

    super helpfull

  • @Almopt
    @Almopt Před 9 měsíci

    Once again, excellent work with this super-detailed tutorial. If you were to create a similar system for several restaurants, what would the architecture be like? Or would you simply create an instance for each restaurant?

    • @codingcrashcourses8533
      @codingcrashcourses8533  Před 9 měsíci +1

      Thank you. I would probably use a single vectorstore and save the Restaurant name or id as Metadata. And use that Info to Filter before the vectorsearch. Each Website would then send that Info in a cookie or the request header

    • @Almopt
      @Almopt Před 9 měsíci

      @@codingcrashcourses8533 Thanks for the quick reply, excellent suggestion. Do you have any means of communication where we can exchange ideas other than youtube?

    • @codingcrashcourses8533
      @codingcrashcourses8533  Před 9 měsíci

      @@Almopt currently i dont have any other channels :)

  • @ofir952
    @ofir952 Před 8 měsíci +2

    Thanks a lot! Quick question - where did you install pydantic, langchain, and the other libraries that are not in the Dockerfile?

    • @codingcrashcourses8533
      @codingcrashcourses8533  Před 8 měsíci +2

      I installed it directory with pip install inside Docker. Most dependencies have subdependencies which get installed on the fly then

    • @zhiyinglu7081
      @zhiyinglu7081 Před 6 měsíci

      there are multiple dockers, which docker do you install this package? I run the python file and get an error about write into the database@@codingcrashcourses8533

  • @lilshmunky
    @lilshmunky Před 11 měsíci

    Have you worked with LangChain's agents at all in production? I've been trying to spin up a ReAct agent with access to tools for querying a Postgres DB and Pinecone vector store, but the implementation has been sort of lackluster. I'm using their ConversationalBuffer memory populated from a DynamoDB message history, but the agent really struggles with follow-up questions and using context from the conversation to form queries.
    I'm wondering if its better to just unroll everything down to a simpler LLM chain and forgo the Memory class like you've done here.

    • @codingcrashcourses8533
      @codingcrashcourses8533  Před 11 měsíci +3

      Follow up questions are worth a video by themself. Got no solution I am totally happy with. In my company we tried going back in the history n-1 and adding that again, since similarity search won´t give you back data.
      In general I am not a big fan of agents - they just are unreliable. I would probably use OpenAI function calling for querying a SQL Database. My Agents were too dumb to write good SQL. But try it yourself, I am also just a random dude trying out stuff

  • @hdhdushsvsyshshshs
    @hdhdushsvsyshshshs Před měsícem

    what is I want to use a model like Llama2, how can I change OpenAI API for Llama2?

  • @hiranga
    @hiranga Před 10 měsíci

    Amazing! For some reason though, Im having trouble getting this to work with the LangChain(python) Functions Agent. Does it need to be done differently? By chance do you have any examples?

    • @codingcrashcourses8533
      @codingcrashcourses8533  Před 10 měsíci

      What did you Change? If you replace the llmchain with your agent it should work as well

    • @hiranga
      @hiranga Před 10 měsíci

      @@codingcrashcourses8533 hmmm then i think my front end setup is now broken. Does the above work for Streaming? My frontend is SvelteKit which is where my error might be..

  • @robrita
    @robrita Před 11 měsíci

    how does your pgvector and redis scale? you can't have multiple docker containers of these services.
    a scalable cloud service for redis and pgvector might be more desirable which can handle huge load

    • @codingcrashcourses8533
      @codingcrashcourses8533  Před 11 měsíci +1

      you can at least for redis. Redis has got Redis Sentinel which is a cluster solution which master and slave agents. For PGVector I am not sure how much load it can handle, but PostGres is a well established DB which normally can handle a lot of traffic with a single instance.

  • @sbacon92
    @sbacon92 Před 8 měsíci

    Good video.
    I'm already going down this path.
    Except I'm forced to use local model.

  • @ameygujre7674
    @ameygujre7674 Před 8 měsíci

    My team is recommending that we deploy our embeddings along with our code inside the azure Function App. I understand using a vectoreDB would be a more better approach. Can you tell me the limitations of keeping the embeddings inside functionsapp instead of a separate vectors store. So that I can make them understand?

    • @codingcrashcourses8533
      @codingcrashcourses8533  Před 8 měsíci

      How do you retrieve the embeddings and related documents without a vectorstore? You can do it on your own, but why?

  • @lewuslewan
    @lewuslewan Před 8 měsíci

    Is there any particular reason why you use pgvector over FAISS? I saw benchmarks where people proved that FAISS is much faster

    • @codingcrashcourses8533
      @codingcrashcourses8533  Před 8 měsíci +1

      Yeah, but does it really matter if you app in 1ms faster or slower? I prefer to be able to use other tables for different stuff, use SQLAlchemy to build an API Layer around my Database. FAISS for me is some kind of big blackbox

  • @lukem121
    @lukem121 Před 11 měsíci

    How can you make the ai call external functions and get input for those functions from the user. Such as the as askes for an order id.

    • @codingcrashcourses8533
      @codingcrashcourses8533  Před 11 měsíci

      I would try to archieve that with prompting and the usage of openai function calling. What might you want to know? Delivery status of a package?

    • @lukem121
      @lukem121 Před 11 měsíci

      @@codingcrashcourses8533 Yes, that would be the perfect example. I actually run an e-commerce store, and I am looking to implement a chatbot to assist users with their requests more effectively. Regular customers often inquire about the estimated delivery time for their orders. In order to assist them effectively, our chatbot will require their order ID to call internal functions to get the delivery time.

  • @sowmyancs
    @sowmyancs Před 7 měsíci

    Any comments on why you need to separate the conversation ID management into a separate service from the service making the call to open AI?

    • @codingcrashcourses8533
      @codingcrashcourses8533  Před 7 měsíci +1

      Good question! Well it depends what you want to do. In the company I work for we store the conversations from multiple channels, Audio and text. So we use this architecture to store all conversations in a single place

    • @sowmyancs
      @sowmyancs Před 7 měsíci

      Thank you@@codingcrashcourses8533

  • @jeonghunlee8196
    @jeonghunlee8196 Před 11 měsíci

    I get an error message "exec /wait-for-postgres.sh: no such file or directory" when I build using docker-compose up. Do you have any idea how I can fix this?

    • @codingcrashcourses8533
      @codingcrashcourses8533  Před 11 měsíci

      I guess that you use a Windows Format for your file. Change it to unix. You can do that in most editors or with dos2unix (cmd). Just make sure it is formatted as LF, not CLRF

    • @jeonghunlee8196
      @jeonghunlee8196 Před 11 měsíci

      @@codingcrashcourses8533 Thanks. It resolved the issue.

    • @jeonghunlee8196
      @jeonghunlee8196 Před 10 měsíci

      How do I replace old embeddings stored in pgvector to new ones. I have new embedding stored in pgvector, but the chatbot still queries from the old embeddings..

  • @karthikb.s.k.4486
    @karthikb.s.k.4486 Před 10 měsíci

    Nice tutorials.may i know the VS code theme used.

  • @henkhbit5748
    @henkhbit5748 Před 2 měsíci

    Great video, but it woud be nice if you replace openai to an open as source llm.

    • @codingcrashcourses8533
      @codingcrashcourses8533  Před 2 měsíci

      Just deploy the Model and change the class you use. Thats what langchain is for

  • @Finwe2
    @Finwe2 Před 11 měsíci

    Can I substitute Redis for Chroma or faiss?

    • @codingcrashcourses8533
      @codingcrashcourses8533  Před 11 měsíci +2

      No, these are vector databases, which would substitute pgvector. For storing conversations you could use any other document db like MongoDB, but redis is great since its so fast and easy to use.

    • @Finwe2
      @Finwe2 Před 11 měsíci

      @@codingcrashcourses8533 Ah okay thanks!

  • @jayglookr
    @jayglookr Před 11 měsíci

    Hey, is this you? Algovibes?

    • @lukem121
      @lukem121 Před 11 měsíci

      Haha I though the same thing

    • @codingcrashcourses8533
      @codingcrashcourses8533  Před 11 měsíci +1

      No that is just that typical german accent :p

    • @jayglookr
      @jayglookr Před 10 měsíci

      @@codingcrashcourses8533 oh damn! you really had me fooled. You guys should collaborate on something as a publicity stunt.

    • @codingcrashcourses8533
      @codingcrashcourses8533  Před 10 měsíci

      @@jayglookr haha i never heard of him before to be honest. But i know the german accent when i hear it ;)

    • @jayglookr
      @jayglookr Před 10 měsíci

      @@codingcrashcourses8533 Well, it's not exactly 'that german accent', not exclusively. It was also the top quality, very succinct, informative content. Your channels are easily mistakable in that regard as well. Truly great.