We have seen about RNN and LSTM in my previous blog, which are the foundation concepts for LLM. In today's blog, we will start looking at the actual LLM concepts like Transformers, LLM, Agents etc. LLM Vs Agents LLM(Large Language Model) is a Neural Network, trained to predict the next word and provide meaningful context/output. Agents is a system that use LLM + tools + memory + decision logic to achieve some goals. An Agent is not just a model - its a system architecture. LLM LLM takes input from user and it will produce the output, but every run it may produce a different output. This is called Non-Deterministic output. Once conversation is over, it won't remember anything. This is called State-less . That's the reason, we can't directly use LLM and build an application, as it may produce different outputs each time. It is not designed specifically for this application and it behaves inconsistent. Agents It will use LLM , T ools , M emory , O bservability & E v...