2023-06-01 00:54:05 +00:00
|
|
|
[comment: Please, a reference example here "docs/integrations/arxiv.md"]::
|
|
|
|
[comment: Use this template to create a new .md file in "docs/integrations/"]::
|
|
|
|
|
|
|
|
# Title_REPLACE_ME
|
|
|
|
|
|
|
|
[comment: Only one Tile/H1 is allowed!]::
|
|
|
|
|
|
|
|
>
|
|
|
|
[comment: Description: After reading this description, a reader should decide if this integration is good enough to try/follow reading OR]::
|
|
|
|
[comment: go to read the next integration doc. ]::
|
|
|
|
[comment: Description should include a link to the source for follow reading.]::
|
|
|
|
|
|
|
|
## Installation and Setup
|
|
|
|
|
2023-09-19 17:08:59 +00:00
|
|
|
[comment: Installation and Setup: All necessary additional package installations and setups for Tokens, etc]::
|
2023-06-01 00:54:05 +00:00
|
|
|
|
|
|
|
```bash
|
|
|
|
pip install package_name_REPLACE_ME
|
|
|
|
```
|
|
|
|
|
|
|
|
[comment: OR this text:]::
|
|
|
|
|
2023-09-19 17:08:59 +00:00
|
|
|
There isn't any special setup for it.
|
2023-06-01 00:54:05 +00:00
|
|
|
|
|
|
|
[comment: The next H2/## sections with names of the integration modules, like "LLM", "Text Embedding Models", etc]::
|
|
|
|
[comment: see "Modules" in the "index.html" page]::
|
2023-09-19 17:08:59 +00:00
|
|
|
[comment: Each H2 section should include a link to an example(s) and a Python code with the import of the integration class]::
|
2023-06-01 00:54:05 +00:00
|
|
|
[comment: Below are several example sections. Remove all unnecessary sections. Add all necessary sections not provided here.]::
|
|
|
|
|
|
|
|
## LLM
|
|
|
|
|
2023-07-25 04:20:32 +00:00
|
|
|
See a [usage example](/docs/integrations/llms/INCLUDE_REAL_NAME).
|
2023-06-01 00:54:05 +00:00
|
|
|
|
|
|
|
```python
|
|
|
|
from langchain.llms import integration_class_REPLACE_ME
|
|
|
|
```
|
|
|
|
|
|
|
|
## Text Embedding Models
|
|
|
|
|
2023-07-25 04:20:32 +00:00
|
|
|
See a [usage example](/docs/integrations/text_embedding/INCLUDE_REAL_NAME)
|
2023-06-01 00:54:05 +00:00
|
|
|
|
|
|
|
```python
|
|
|
|
from langchain.embeddings import integration_class_REPLACE_ME
|
|
|
|
```
|
|
|
|
|
2023-09-04 03:33:20 +00:00
|
|
|
## Chat models
|
2023-06-01 00:54:05 +00:00
|
|
|
|
2023-07-25 04:20:32 +00:00
|
|
|
See a [usage example](/docs/integrations/chat/INCLUDE_REAL_NAME)
|
2023-06-01 00:54:05 +00:00
|
|
|
|
|
|
|
```python
|
|
|
|
from langchain.chat_models import integration_class_REPLACE_ME
|
|
|
|
```
|
|
|
|
|
|
|
|
## Document Loader
|
|
|
|
|
2023-07-25 04:20:32 +00:00
|
|
|
See a [usage example](/docs/integrations/document_loaders/INCLUDE_REAL_NAME).
|
2023-06-01 00:54:05 +00:00
|
|
|
|
|
|
|
```python
|
|
|
|
from langchain.document_loaders import integration_class_REPLACE_ME
|
|
|
|
```
|