mirror of
https://github.com/hwchase17/langchain
synced 2024-11-18 09:25:54 +00:00
Add Outline provider doc (#13938)
- **Description:** Added a provider doc to `docs/integrations/providers` for the new Outline integration in #13889 - **Tag maintainer:** @baskaryan
This commit is contained in:
parent
643d28847d
commit
0bc7c1b5b4
22
docs/docs/integrations/providers/outline.mdx
Normal file
22
docs/docs/integrations/providers/outline.mdx
Normal file
@ -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
|
||||
```
|
Loading…
Reference in New Issue
Block a user