mirror of
https://github.com/hwchase17/langchain
synced 2024-11-08 07:10:35 +00:00
1b050b98f5
Corrected some spelling mistakes and grammatical errors CC: @baskaryan, @eyurtsev, @hwchase17. --------- Co-authored-by: Ishita Chauhan <136303787+IshitaChauhanShortHillsAI@users.noreply.github.com> Co-authored-by: Aashish Saini <141953346+AashishSainiShorthillsAI@users.noreply.github.com> Co-authored-by: ManpreetShorthillsAI <142380984+ManpreetShorthillsAI@users.noreply.github.com> Co-authored-by: AryamanJaiswalShorthillsAI <142397527+AryamanJaiswalShorthillsAI@users.noreply.github.com> Co-authored-by: Adarsh Shrivastav <142413097+AdarshKumarShorthillsAI@users.noreply.github.com> Co-authored-by: Vishal <141389263+VishalYadavShorthillsAI@users.noreply.github.com> Co-authored-by: ChetnaGuptaShorthillsAI <142381084+ChetnaGuptaShorthillsAI@users.noreply.github.com> Co-authored-by: PankajKumarShorthillsAI <142473460+PankajKumarShorthillsAI@users.noreply.github.com> Co-authored-by: AbhishekYadavShorthillsAI <142393903+AbhishekYadavShorthillsAI@users.noreply.github.com> Co-authored-by: AmitSinghShorthillsAI <142410046+AmitSinghShorthillsAI@users.noreply.github.com> Co-authored-by: Md Nazish Arman <142379599+MdNazishArmanShorthillsAI@users.noreply.github.com> Co-authored-by: KamalSharmaShorthillsAI <142474019+KamalSharmaShorthillsAI@users.noreply.github.com> Co-authored-by: Lakshya <lakshyagupta87@yahoo.com> Co-authored-by: Aayush <142384656+AayushShorthillsAI@users.noreply.github.com> Co-authored-by: AnujMauryaShorthillsAI <142393269+AnujMauryaShorthillsAI@users.noreply.github.com> Co-authored-by: ishita <chauhanishita5356@gmail.com>
61 lines
1.8 KiB
Plaintext
61 lines
1.8 KiB
Plaintext
[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
|
|
|
|
[comment: Installation and Setup: All necessary additional package installations and setups for Tokens, etc]::
|
|
|
|
```bash
|
|
pip install package_name_REPLACE_ME
|
|
```
|
|
|
|
[comment: OR this text:]::
|
|
|
|
There isn't any special setup for it.
|
|
|
|
[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]::
|
|
[comment: Each H2 section should include a link to an example(s) and a Python code with the import of the integration class]::
|
|
[comment: Below are several example sections. Remove all unnecessary sections. Add all necessary sections not provided here.]::
|
|
|
|
## LLM
|
|
|
|
See a [usage example](/docs/integrations/llms/INCLUDE_REAL_NAME).
|
|
|
|
```python
|
|
from langchain.llms import integration_class_REPLACE_ME
|
|
```
|
|
|
|
## Text Embedding Models
|
|
|
|
See a [usage example](/docs/integrations/text_embedding/INCLUDE_REAL_NAME)
|
|
|
|
```python
|
|
from langchain.embeddings import integration_class_REPLACE_ME
|
|
```
|
|
|
|
## Chat models
|
|
|
|
See a [usage example](/docs/integrations/chat/INCLUDE_REAL_NAME)
|
|
|
|
```python
|
|
from langchain.chat_models import integration_class_REPLACE_ME
|
|
```
|
|
|
|
## Document Loader
|
|
|
|
See a [usage example](/docs/integrations/document_loaders/INCLUDE_REAL_NAME).
|
|
|
|
```python
|
|
from langchain.document_loaders import integration_class_REPLACE_ME
|
|
```
|