langchain/libs/cli/langchain_cli/project_template
2023-10-27 12:06:46 -07:00
..
app cli updates oct27 (#12436) 2023-10-27 12:06:46 -07:00
packages fix some stuff (#12292) 2023-10-26 13:30:36 -07:00
pyproject.toml cli updates oct27 (#12436) 2023-10-27 12:06:46 -07:00
README.md Fix templates typos (#12428) 2023-10-27 09:32:57 -07:00

LangServeHub Project Template

Installation

Install the LangChain CLI if you haven't yet

pip install --user --upgrade git+https://github.com/pingpong-templates/cli.git

And install this package's dependencies

poetry install

Adding packages

# if you have problems with `poe`, try `poetry run poe`

# adding packages from https://github.com/pingpong-templates/hub
langchain serve add extraction-openai-functions

# adding custom GitHub repo packages
langchain serve add git+https://github.com/hwchase17/chain-of-verification

# with a custom api mount point (defaults to `/{package_name}`)
poe add simple-translator --api_path=/my/custom/path/translator

Removing packages

Note: you remove packages by their api path

langchain serve remove extraction-openai-functions