LangChainHub

LangChainHub

2 min read

We are excited to announce the launch of the LangChainHub, a place where you can find and submit commonly used prompts, chains, agents, and more!

This obviously draws a lot of inspiration from Hugging Face's Hub, which we believe has done an incredible job of fostering an amazing community.

Motivation

Over the past few months, we’ve seen the LangChain community build a staggering number of applications using the framework. These applications use LangChain components such as prompts, LLMs, chains and agents as building blocks to create unique workflows. We wanted to make it easy to share and discover these workflows by creating a hub where users can share the components they’ve created.

Our goal with LangChainHub is to be a single stop shop for sharing prompts, chains, agents and more. As a starting point, we’re launching the hub with a repository of prompts used in LangChain. Often, the secret sauce of getting good results from an LLM is high-quality prompting, and we believe that having a collection of commonly-used prompts will make it easier for users to get great results without needing to reinvent the wheel. We hope to follow up by adding support for chains and agents shortly.

Usage

We don't just want to build a collection of prompts, agents, and chains - we want to make it as easy and as straightforward as possible for people to actually use these. To that end, we are taking two concrete steps:

  1. We will offer first-class support in the LangChain Python library for loading these artifacts. For example, you are able to easily load a prompt from the hub with the following snippet:
from langchain.prompts import load_prompt
prompt = load_prompt('lc://prompts/hello-world/prompt.yaml')

2. We will prioritize clear documentation on how to use these artifacts. For example, all prompts contain not only the artifact itself but also a README file. This file contains information like a description of how it is to be used, the inputs it expects, and a code snippet for how to use this prompt in a chain.

For more detailed information on how to use the artifacts on the Hub, check out the documentation on the Hub itself.

Community

We highly intend this to be community driven. We have seeded the Hub with a collection of artifacts that are used in the core library, but we hope it quickly becomes filled with prompts, chains, and agents that are NOT in the core library.

Since we are using GitHub to organize this Hub, adding artifacts can best be done in one of two ways:

  1. Create a fork and then open a PR against the repo.
  2. Create an issue on the repo with details of the artifact you would like to add.

Up Next

Today, LangChainHub contains all of the prompts available in the main LangChain Python library.

In the (hopefully near) future, we plan to add:

  • Chains: A collection of chains capturing various LLM workflows
  • Agents: A collection of agent configurations, including the underlying LLMChain as well as which tools it is compatible with.
  • Custom prompts repo URI: The ability to set a custom URI for prompt repositories, so that users can create their own LangChain hubs.

Conclusion

We are looking forward to the community's contributions and feedback as we continue to build out the Hub. Check it out here and join the conversation on Discord!