diff --git a/docs/examples/prompts.rst b/docs/examples/prompts.rst index db77f6dd11..c2f708d09a 100644 --- a/docs/examples/prompts.rst +++ b/docs/examples/prompts.rst @@ -14,6 +14,14 @@ The examples here all highlight how to work with LLMs and prompts. `Custom LLM `_: How to create and use a custom LLM class, in case you have an LLM not from one of the standard providers (including one that you host yourself). +**Specific LLM Integrations** + +`Huggingface Hub `_: Covers how to connect to LLMs hosted on HuggingFace Hub. + +`Azure OpenAI `_: Covers how to connect to Azure-hosted OpenAI Models. + + + **Prompts** `Prompt Management `_: A walkthrough of all the functionality LangChain supports for working with prompts. diff --git a/pyproject.toml b/pyproject.toml index b294612edb..7b57497de6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "langchain" -version = "0.0.43" +version = "0.0.44" description = "Building applications with LLMs through composability" authors = [] license = "MIT"