LangChain

āš” Building applications with LLMs through composability āš”
LangChain is an open source library that helps you build Large language models (LLMs) . There are six main areas that LangChain is designed to help with. These are, in increasing order of complexity: šŸ“ƒ LLMs and Prompts: This includes prompt management, prompt optimization, generic interface for all LLMs, and common utilities for working with LLMs. šŸ”— Chains: Chains go beyond just a single LLM call, and are sequences of calls (whether to an LLM or a different utility). LangChain provides a standard interface for chains, lots of integrations with other tools, and end-to-end chains for common applications. šŸ“š Data Augmented Generation: Data Augmented Generation involves specific types of chains that first interact with an external datasource to fetch data to use in the generation step. Examples of this include summarization of long pieces of text and question/answering over specific data sources. šŸ¤– Agents: Agents involve an LLM making decisions about which Actions to take, taking that Action, seeing an Observation, and repeating that until done. LangChain provides a standard interface for agents, a selection of agents to choose from, and examples of end to end agents. šŸ§  Memory: Memory is the concept of persisting state between calls of a chain/agent. LangChain provides a standard interface for memory, a collection of memory implementations, and examples of chains/agents that use memory.