You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/templates
Harrison Chase 56ee56736b
add template for hyde (#12390)
10 months ago
..
anthropic-functions Templates (#12294) 10 months ago
anthropic-iterative-search Templates (#12294) 10 months ago
cassandra-entomology-rag Templates (#12294) 10 months ago
cassandra-synonym-caching Templates (#12294) 10 months ago
csv-agent Templates (#12294) 10 months ago
elastic-query-generator Templates (#12294) 10 months ago
extraction-openai-functions Templates (#12294) 10 months ago
hyde add template for hyde (#12390) 10 months ago
neo4j-cypher Templates (#12294) 10 months ago
neo4j-cypher-ft Templates (#12294) 10 months ago
neo4j-generation Templates (#12294) 10 months ago
neo4j-parent Templates (#12294) 10 months ago
openai-functions-agent Templates (#12294) 10 months ago
rag-chroma Templates (#12294) 10 months ago
rag-chroma-private Templates (#12294) 10 months ago
rag-conversation Add template for Pinecone + Multi-Query (#12353) 10 months ago
rag-elasticsearch Templates (#12294) 10 months ago
rag-fusion Templates (#12294) 10 months ago
rag-pinecone Add template for Pinecone + Multi-Query (#12353) 10 months ago
rag-pinecone-multi-query Update multi query template README, ntbk (#12356) 10 months ago
rag-pinecone-rerank Minor updates to ReRank template (#12388) 10 months ago
rag-semi-structured Templates (#12294) 10 months ago
rag-supabase Templates (#12294) 10 months ago
rewrite-retrieve-read Templates (#12294) 10 months ago
self-query-supabase Templates (#12294) 10 months ago
sql-llama2 Templates (#12294) 10 months ago
sql-llamacpp Templates (#12294) 10 months ago
sql-ollama Templates (#12294) 10 months ago
stepback-qa-prompting Templates (#12294) 10 months ago
summarize-anthropic Templates (#12294) 10 months ago
xml-agent Templates (#12294) 10 months ago
.gitignore Adds linter in templates (#12321) 10 months ago
CONTRIBUTING.md add docs for templates (#12346) 10 months ago
INDEX.md add docs for templates (#12346) 10 months ago
Makefile Adds linter in templates (#12321) 10 months ago
README.md add docs for templates (#12346) 10 months ago
poetry.lock Adds linter in templates (#12321) 10 months ago
pyproject.toml Adds linter in templates (#12321) 10 months ago

README.md

LangServe Templates

Templates for a fully functioning app that can be hosted by LangServe.

Usage

To use, first install the LangChain CLI.

pip install -U langchain-cli

Then, install langserve:

pip install "langserve[all]"

Next, create a new LangChain project:

langchain serve new my-app

This will create a new directory called my-app with two folders:

  • app: This is where LangServe code will live
  • packages: This is where your chains or agents will live

To pull in an existing template as a package, you first need to go into your new project:

cd my-app

And you can the add a template as a project

langchain serve add $PROJECT_NAME

This will pull in the specified template into packages/$PROJECT_NAME

You then need to install this package so you can use it in the langserve app:

pip install -e packages/$PROJECT_NAME

We install it with -e so that if we modify the template at all (which we likely will) the changes are updated.

In order to have LangServe use this project, you then need to modify app/server.py. Specifically, you should add something like:

from fastapi import FastAPI
from langserve import add_routes
# This depends on the structure of the package you install
from my_project import chain

app = FastAPI()

add_routes(app, chain)

You can then spin up production-ready endpoints, along with a playground, by running:

python app/server.py

Adding a template

See here