docs: fix some inline links (#31748)

This commit is contained in:
Mason Daugherty 2025-06-26 13:35:14 -04:00 committed by GitHub
parent 83774902e7
commit 59c2b81627
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 21 additions and 18 deletions

View File

@ -443,15 +443,16 @@ class ChatOllama(BaseChatModel):
""" """
async_client_kwargs: Optional[dict] = {} async_client_kwargs: Optional[dict] = {}
"""Additional kwargs to merge with client_kwargs before """Additional kwargs to merge with client_kwargs before passing to the HTTPX
passing to the httpx AsyncClient. AsyncClient.
For a full list of the params, see [this link](https://www.python-httpx.org/api/#asyncclient)
For a full list of the params, see the `HTTPX documentation <https://www.python-httpx.org/api/#asyncclient>`__.
""" """
sync_client_kwargs: Optional[dict] = {} sync_client_kwargs: Optional[dict] = {}
"""Additional kwargs to merge with client_kwargs before """Additional kwargs to merge with client_kwargs before passing to the httpx Client.
passing to the httpx Client.
For a full list of the params, see [this link](https://www.python-httpx.org/api/#client) For a full list of the params, see the `HTTPX documentation <https://www.python-httpx.org/api/#client>`__.
""" """
_client: Client = PrivateAttr(default=None) # type: ignore _client: Client = PrivateAttr(default=None) # type: ignore

View File

@ -134,15 +134,16 @@ class OllamaEmbeddings(BaseModel, Embeddings):
""" """
async_client_kwargs: Optional[dict] = {} async_client_kwargs: Optional[dict] = {}
"""Additional kwargs to merge with client_kwargs before """Additional kwargs to merge with client_kwargs before passing to the httpx
passing to the httpx AsyncClient. AsyncClient.
For a full list of the params, see [this link](https://www.python-httpx.org/api/#asyncclient)
For a full list of the params, see the `HTTPX documentation <https://www.python-httpx.org/api/#asyncclient>`__.
""" """
sync_client_kwargs: Optional[dict] = {} sync_client_kwargs: Optional[dict] = {}
"""Additional kwargs to merge with client_kwargs before """Additional kwargs to merge with client_kwargs before passing to the httpx Client.
passing to the httpx Client.
For a full list of the params, see [this link](https://www.python-httpx.org/api/#client) For a full list of the params, see the `HTTPX documentation <https://www.python-httpx.org/api/#client>`__.
""" """
_client: Client = PrivateAttr(default=None) # type: ignore _client: Client = PrivateAttr(default=None) # type: ignore

View File

@ -120,15 +120,16 @@ class OllamaLLM(BaseLLM):
""" """
async_client_kwargs: Optional[dict] = {} async_client_kwargs: Optional[dict] = {}
"""Additional kwargs to merge with client_kwargs before """Additional kwargs to merge with client_kwargs before passing to the HTTPX
passing to the httpx AsyncClient. AsyncClient.
For a full list of the params, see [this link](https://www.python-httpx.org/api/#asyncclient)
For a full list of the params, see the `HTTPX documentation <https://www.python-httpx.org/api/#asyncclient>`__.
""" """
sync_client_kwargs: Optional[dict] = {} sync_client_kwargs: Optional[dict] = {}
"""Additional kwargs to merge with client_kwargs before """Additional kwargs to merge with client_kwargs before passing to the HTTPX Client.
passing to the httpx Client.
For a full list of the params, see [this link](https://www.python-httpx.org/api/#client) For a full list of the params, see the `HTTPX documentation <https://www.python-httpx.org/api/#client>`__.
""" """
_client: Client = PrivateAttr(default=None) # type: ignore _client: Client = PrivateAttr(default=None) # type: ignore