mirror of
https://github.com/langchain-ai/langchain-milvus.git
synced 2026-07-01 19:54:58 -04:00
Updating reference docs for new site #25
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mdrxy on GitHub (Oct 9, 2025).
Hello!
This repo is part of LangChain's v0.3 reference documentation. As part of our efforts to consolidate all LangChain projects under one docs site, we are also consolidating the references to this new site. This repo will live at https://reference.langchain.com/python/integrations/langchain_milvus/
As part of the migration, we have switched from using Sphinx/reStructuredText to Material for MkDocs, which is a Markdown-based syntax. Consequently, the inline docstrings and reference docs in the
langchain-milvusrepo need to be updated accordingly. (Note: existing reference docs are frozen on the v0.3 branch of this repo).Please update the following:
.. code-block:: {LANGUAGE}admonitions should be translated to standard Markdown codeblocks, e.g.:URLs with the format
`Text to hyperlink <https://link.com>\`__or`Text to hyperlink <https://link.com>\`_should be replaced with markdown links like[Text to hyperlink](https://link.com)Double-backtick inline code like
``inline code``should be replaced with single backticks like`inline code`Callout admonitions:
.. warning::,.. important::, and.. note::should be updated to!!! warning "Optional title",!!! important, and!!! noterespectively. (each can have an optional title). See docs... dropdown:: {TITLE}should be replaced with callouts and the???syntax. See docs... versionchanged:: x.y.zshould be translated to!!! warning "Behavior changed in x.y.z"(with optional descriptions).. versionadded:: x.y.zshould be translated to!!! version-added "Added in version x.y.z"(with optional descriptions).. deprecated:: x.y.zshould be translated to!!! deprecated:private:directives should be removed. New reference docs will automatically exclude methods prefixed with a single underscore, e.g._function()Any cross references with
:func:,:class:, or:meth:should be updated to use Markdown links, e.g.:[Runtime][langgraph.runtime.Runtime]@zc277584121 commented on GitHub (Oct 24, 2025):
@mdrxy Thanks for your reminder, here is the update
@mdrxy commented on GitHub (Oct 27, 2025):
@zc277584121 thank you! Will get docs up here today