forked from langchain-ai/langchain
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: jacoblee93 <[email protected]> Co-authored-by: Harrison Chase <[email protected]>
- Loading branch information
1 parent
94c82a1
commit 87e502c
Showing
1,027 changed files
with
23,012 additions
and
36,746 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[submodule "docs/_docs_skeleton"] | ||
path = docs/_docs_skeleton | ||
url = https://github.com/langchain-ai/langchain-shared-docs | ||
branch = main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 3 additions & 6 deletions
9
docs/reference/indexes.rst → docs/api_reference/data_connection.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,13 @@ | ||
Indexes | ||
Data connection | ||
============== | ||
Indexes refer to ways to structure documents so that LLMs can best interact with them. | ||
LangChain has a number of modules that help you load, structure, store, and retrieve documents. | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:glob: | ||
|
||
modules/docstore | ||
modules/text_splitter | ||
modules/document_loaders | ||
modules/document_transformers | ||
modules/embeddings | ||
modules/vectorstores | ||
modules/retrievers | ||
modules/document_compressors | ||
modules/document_transformers |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
API Reference | ||
========================== | ||
|
||
| Full documentation on all methods, classes, and APIs in the LangChain Python package. | ||
.. toctree:: | ||
:maxdepth: 1 | ||
:caption: Abstractions | ||
|
||
./modules/base_classes.rst | ||
|
||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:caption: Core | ||
|
||
./model_io.rst | ||
./data_connection.rst | ||
./modules/chains.rst | ||
./agents.rst | ||
./modules/memory.rst | ||
./modules/callbacks.rst | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:caption: Additional | ||
|
||
./modules/utilities.rst | ||
./modules/experimental.rst |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
Model I/O | ||
============== | ||
|
||
LangChain provides interfaces and integrations for working with language models. | ||
|
||
.. toctree:: | ||
:maxdepth: 1 | ||
:glob: | ||
|
||
./prompts.rst | ||
./models.rst | ||
./modules/output_parsers.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Base classes | ||
======================== | ||
|
||
.. automodule:: langchain.schema | ||
:inherited-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Callbacks | ||
======================= | ||
|
||
.. automodule:: langchain.callbacks | ||
:members: | ||
:undoc-members: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,5 @@ Chains | |
.. automodule:: langchain.chains | ||
:members: | ||
:undoc-members: | ||
:inherited-members: BaseModel | ||
|
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 2 additions & 1 deletion
3
docs/reference/modules/prompts.rst → docs/api_reference/modules/prompts.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
PromptTemplates | ||
Prompt Templates | ||
======================== | ||
|
||
.. automodule:: langchain.prompts | ||
:members: | ||
:undoc-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Retrievers | ||
=============================== | ||
|
||
.. automodule:: langchain.retrievers | ||
:members: | ||
:undoc-members: | ||
|
||
Document compressors | ||
------------------------------- | ||
|
||
.. automodule:: langchain.retrievers.document_compressors | ||
:members: | ||
:undoc-members: | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.