From 0bc7c1b5b4f1341bda143642680b98e20d79729b Mon Sep 17 00:00:00 2001 From: Yusuf Khan <66191792+yuskhan@users.noreply.github.com> Date: Tue, 28 Nov 2023 22:29:30 -0500 Subject: [PATCH] Add Outline provider doc (#13938) - **Description:** Added a provider doc to `docs/integrations/providers` for the new Outline integration in #13889 - **Tag maintainer:** @baskaryan --- docs/docs/integrations/providers/outline.mdx | 22 ++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 docs/docs/integrations/providers/outline.mdx diff --git a/docs/docs/integrations/providers/outline.mdx b/docs/docs/integrations/providers/outline.mdx new file mode 100644 index 0000000000..44335477ad --- /dev/null +++ b/docs/docs/integrations/providers/outline.mdx @@ -0,0 +1,22 @@ +# Outline + +> [Outline](https://www.getoutline.com/) is an open-source collaborative knowledge base platform designed for team information sharing. + +## Setup + +You first need to [create an api key](https://www.getoutline.com/developers#section/Authentication) for your Outline instance. Then you need to set the following environment variables: + +```python +import os + +os.environ["OUTLINE_API_KEY"] = "xxx" +os.environ["OUTLINE_INSTANCE_URL"] = "https://app.getoutline.com" +``` + +## Retriever + +See a [usage example](/docs/integrations/retrievers/outline). + +```python +from langchain.retrievers import OutlineRetriever +```