mirror of
https://github.com/hwchase17/langchain.git
synced 2025-07-05 12:48:12 +00:00
docs: fix some inline links (#31748)
This commit is contained in:
parent
83774902e7
commit
59c2b81627
@ -443,15 +443,16 @@ class ChatOllama(BaseChatModel):
|
||||
"""
|
||||
|
||||
async_client_kwargs: Optional[dict] = {}
|
||||
"""Additional kwargs to merge with client_kwargs before
|
||||
passing to the httpx AsyncClient.
|
||||
For a full list of the params, see [this link](https://www.python-httpx.org/api/#asyncclient)
|
||||
"""Additional kwargs to merge with client_kwargs before passing to the HTTPX
|
||||
AsyncClient.
|
||||
|
||||
For a full list of the params, see the `HTTPX documentation <https://www.python-httpx.org/api/#asyncclient>`__.
|
||||
"""
|
||||
|
||||
sync_client_kwargs: Optional[dict] = {}
|
||||
"""Additional kwargs to merge with client_kwargs before
|
||||
passing to the httpx Client.
|
||||
For a full list of the params, see [this link](https://www.python-httpx.org/api/#client)
|
||||
"""Additional kwargs to merge with client_kwargs before passing to the httpx 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
|
||||
|
@ -134,15 +134,16 @@ class OllamaEmbeddings(BaseModel, Embeddings):
|
||||
"""
|
||||
|
||||
async_client_kwargs: Optional[dict] = {}
|
||||
"""Additional kwargs to merge with client_kwargs before
|
||||
passing to the httpx AsyncClient.
|
||||
For a full list of the params, see [this link](https://www.python-httpx.org/api/#asyncclient)
|
||||
"""Additional kwargs to merge with client_kwargs before passing to the httpx
|
||||
AsyncClient.
|
||||
|
||||
For a full list of the params, see the `HTTPX documentation <https://www.python-httpx.org/api/#asyncclient>`__.
|
||||
"""
|
||||
|
||||
sync_client_kwargs: Optional[dict] = {}
|
||||
"""Additional kwargs to merge with client_kwargs before
|
||||
passing to the httpx Client.
|
||||
For a full list of the params, see [this link](https://www.python-httpx.org/api/#client)
|
||||
"""Additional kwargs to merge with client_kwargs before passing to the httpx 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
|
||||
|
@ -120,15 +120,16 @@ class OllamaLLM(BaseLLM):
|
||||
"""
|
||||
|
||||
async_client_kwargs: Optional[dict] = {}
|
||||
"""Additional kwargs to merge with client_kwargs before
|
||||
passing to the httpx AsyncClient.
|
||||
For a full list of the params, see [this link](https://www.python-httpx.org/api/#asyncclient)
|
||||
"""Additional kwargs to merge with client_kwargs before passing to the HTTPX
|
||||
AsyncClient.
|
||||
|
||||
For a full list of the params, see the `HTTPX documentation <https://www.python-httpx.org/api/#asyncclient>`__.
|
||||
"""
|
||||
|
||||
sync_client_kwargs: Optional[dict] = {}
|
||||
"""Additional kwargs to merge with client_kwargs before
|
||||
passing to the httpx Client.
|
||||
For a full list of the params, see [this link](https://www.python-httpx.org/api/#client)
|
||||
"""Additional kwargs to merge with client_kwargs before passing to the HTTPX 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
|
||||
|
Loading…
Reference in New Issue
Block a user