-
Notifications
You must be signed in to change notification settings - Fork 15.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Standardize Embeddings Docs #24856
Comments
running
am I missing anything? |
Try updating your cli with poetry run pip install -U langchain-cli |
- **Description:** Standardize ZhipuAIEmbeddings rich docstrings. - **Issue:** the issue #24856
- **Description:** Standardize SparkLLMTextEmbeddings docstrings - **Issue:** the issue #24856
Add API Reference documentation for the FireworksEmbedding model. Issue: #24856
Related issue: #24856 ```json [ { "provider": "mistralai", "js": true, "local": false, "serializable": false, "native_async": true } ] ``` --------- Co-authored-by: Isaac Francisco <[email protected]> Co-authored-by: isaac hershenson <[email protected]>
Update AI21 Integration docs Issue: #24856 --------- Co-authored-by: Isaac Francisco <[email protected]> Co-authored-by: isaac hershenson <[email protected]>
Issue: #24856 --------- Co-authored-by: Isaac Francisco <[email protected]> Co-authored-by: isaac hershenson <[email protected]>
#24856 --------- Co-authored-by: Isaac Francisco <[email protected]> Co-authored-by: isaac hershenson <[email protected]>
This can be finished after the following issue is resolved: langchain-ai/langchain-cohere#81 Related to: #24856 ```json [ { "provider": "cohere", "js": true, "local": false, "serializable": false, } ] ``` --------- Co-authored-by: isaac hershenson <[email protected]> Co-authored-by: Isaac Francisco <[email protected]>
- **Description:** Standardize ZhipuAIEmbeddings rich docstrings. - **Issue:** the issue langchain-ai#24856
- **Description:** Standardize SparkLLMTextEmbeddings docstrings - **Issue:** the issue langchain-ai#24856
- **Description:** Standardize MiniMaxEmbeddings - docs, the issue langchain-ai#24856 - model init arg names, the issue langchain-ai#20085
…angchain-ai#25294) Update API Reference for MistralAI embeddings Issue: langchain-ai#24856
…ain-ai#25292) Add API Reference documentation for the FireworksEmbedding model. Issue: langchain-ai#24856
…5313) Issue: langchain-ai#24856 Using the same template for the fake embeddings in langchain_core as used in the integrations.
…ai#25315) Update API reference for OllamaEmbeddings Issue: langchain-ai#24856
…i#25247) Providers: * fireworks See related issue: * langchain-ai#24856 Features: ```json [ { "provider": "fireworks", "js": true, "local": false, "serializable": false, } ] ``` --------- Co-authored-by: isaac hershenson <[email protected]> Co-authored-by: Isaac Francisco <[email protected]>
Related issue: langchain-ai#24856 ```json { "provider": "openai", "js": true, "local": false, "serializable": false, "async_native": true } ``` --------- Co-authored-by: Isaac Francisco <[email protected]> Co-authored-by: isaac hershenson <[email protected]>
…#25314) Issue: langchain-ai#24856 --------- Co-authored-by: Isaac Francisco <[email protected]> Co-authored-by: isaac hershenson <[email protected]>
Update together AI embedding integration docs Related issue: langchain-ai#24856 ```json [ { "provider": "together", "js": true, "local": false, "serializable": false, } ] ``` --------- Co-authored-by: Isaac Francisco <[email protected]> Co-authored-by: isaac hershenson <[email protected]>
…in-ai#25253) Related issue: langchain-ai#24856 ```json [ { "provider": "mistralai", "js": true, "local": false, "serializable": false, "native_async": true } ] ``` --------- Co-authored-by: Isaac Francisco <[email protected]> Co-authored-by: isaac hershenson <[email protected]>
Update AI21 Integration docs Issue: langchain-ai#24856 --------- Co-authored-by: Isaac Francisco <[email protected]> Co-authored-by: isaac hershenson <[email protected]>
Issue: langchain-ai#24856 --------- Co-authored-by: Isaac Francisco <[email protected]> Co-authored-by: isaac hershenson <[email protected]>
…hain-ai#25311) langchain-ai#24856 --------- Co-authored-by: Isaac Francisco <[email protected]> Co-authored-by: isaac hershenson <[email protected]>
…25250) This can be finished after the following issue is resolved: langchain-ai/langchain-cohere#81 Related to: langchain-ai#24856 ```json [ { "provider": "cohere", "js": true, "local": false, "serializable": false, } ] ``` --------- Co-authored-by: isaac hershenson <[email protected]> Co-authored-by: Isaac Francisco <[email protected]>
Hi, @efriis. I'm Dosu, and I'm helping the LangChain team manage their backlog. I'm marking this issue as stale. Issue Summary:
Next Steps:
Thank you for your understanding and contribution! |
Privileged issue
Issue Content
Issue
To make our Embeddings integrations as easy to use as possible we need to make sure the docs for them are thorough and standardized. There are two parts to this: updating the embeddings docstrings and updating the actual integration docs.
This needs to be done for each embeddings integration, ideally with one PR per embedding provider.
Related to broader issues #21983 and #22005.
Docstrings
Each Embeddings class docstring should have the sections shown in the Appendix below. The sections should have input and output code blocks when relevant.
To build a preview of the API docs for the package you're working on run (from root of repo):
make api_docs_clean; make api_docs_quick_preview API_PKG=openai
where
API_PKG=
should be the parent directory that houses the edited package (e.g. community, openai, anthropic, huggingface, together, mistralai, groq, fireworks, etc.). This should be quite fast for all the partner packages.Doc pages
Each Embeddings docs page should follow this template.
You can use the
langchain-cli
to quickly get started with a new chat model integration docs page (run from root of repo):poetry run pip install -e libs/cli poetry run langchain-cli integration create-doc --name "foo-bar" --name-class FooBar --component-type Embeddings --destination-dir ./docs/docs/integrations/text_embedding/
where
--name
is the integration package name without the "langchain-" prefix and--name-class
is the class name without the "Embedding" prefix. This will create a template doc with some autopopulated fields at docs/docs/integrations/text_embedding/foo_bar.ipynb.To build a preview of the docs you can run (from root):
make docs_clean make docs_build cd docs/build/output-new yarn yarn start
Appendix
Expected sections for the Embedding class docstring.
__package_name___
: This is the full name of the package (e.g.,langchain-anthropic
)__ModuleName__
: This is the CamelCase name of the partner (e.g.,Anthropic
)__MODULE_NAME__
: SCREAMING_SNAKE_CASE name of the partner (e.g., ANTHROPIC)Y
Tip: if you copy and paste the template to a template.txt file, you could use the following sed commands to fill in the appropriate values for OpenAI:
The text was updated successfully, but these errors were encountered: