Skip to main content

Welcome to LangChain

LangChain is a framework for developing applications powered by language models. We believe that the most powerful and differentiated applications will not only call out to a language model via an API, but will also:

  • Be data-aware: connect a language model to other sources of data
  • Be agentic: allow a language model to interact with its environment

The LangChain framework is designed with the above principles in mind.

Getting Started

Checkout the guide below for a walkthrough of how to get started using LangChain to create a Language Model application.

Components

There are several main modules that LangChain provides support for. For each module we provide some examples to get started and get familiar with some of the concepts. Each example links to API documentation for the modules used.

These modules are, in increasing order of complexity:

  • Schema: This includes interfaces and base classes used throughout the library.

  • Models: This includes integrations with a variety of LLMs, Chat Models and Embeddings models.

  • Prompts: This includes prompt Templates and functionality to work with prompts like Output Parsers and Example Selectors

  • Indexes: This includes patterns and functionality for working with your own data, and making it ready to interact with language models (including document loaders, vectorstores, text splitters and retrievers).

  • 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.

  • 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.

  • 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.

API Reference

Here you can find the API reference for all of the modules in LangChain, as well as full documentation for all exported classes and functions.

Production

As you move from prototyping into production, we're developing resources to help you do so. These including:

  • Deployment: resources on how to deploy your application to production.
  • Events/Callbacks: resources on the events exposed by LangChain modules.
  • Tracing: resources on how to use tracing to log and debug your application.

Additional Resources

Additional collection of resources we think may be useful as you develop your application!

  • LangChainHub: The LangChainHub is a place to share and explore other prompts, chains, and agents.

  • Discord: Join us on our Discord to discuss all things LangChain!

  • Production Support: As you move your LangChains into production, we'd love to offer more comprehensive support. Please fill out this form and we'll set up a dedicated support Slack channel.