File tree Expand file tree Collapse file tree 3 files changed +21
-18
lines changed
libs/partners/ollama/langchain_ollama Expand file tree Collapse file tree 3 files changed +21
-18
lines changed Original file line number Diff line number Diff line change @@ -443,15 +443,16 @@ class Multiply(BaseModel):
443
443
"""
444
444
445
445
async_client_kwargs : Optional [dict ] = {}
446
- """Additional kwargs to merge with client_kwargs before
447
- passing to the httpx AsyncClient.
448
- For a full list of the params, see [this link](https://www.python-httpx.org/api/#asyncclient)
446
+ """Additional kwargs to merge with client_kwargs before passing to the HTTPX
447
+ AsyncClient.
448
+
449
+ For a full list of the params, see the `HTTPX documentation <https://www.python-httpx.org/api/#asyncclient>`__.
449
450
"""
450
451
451
452
sync_client_kwargs : Optional [dict ] = {}
452
- """Additional kwargs to merge with client_kwargs before
453
- passing to the httpx Client.
454
- For a full list of the params, see [this link]( https://www.python-httpx.org/api/#client)
453
+ """Additional kwargs to merge with client_kwargs before passing to the httpx Client.
454
+
455
+ For a full list of the params, see the `HTTPX documentation < https://www.python-httpx.org/api/#client>`__.
455
456
"""
456
457
457
458
_client : Client = PrivateAttr (default = None ) # type: ignore
Original file line number Diff line number Diff line change @@ -134,15 +134,16 @@ class OllamaEmbeddings(BaseModel, Embeddings):
134
134
"""
135
135
136
136
async_client_kwargs : Optional [dict ] = {}
137
- """Additional kwargs to merge with client_kwargs before
138
- passing to the httpx AsyncClient.
139
- For a full list of the params, see [this link](https://www.python-httpx.org/api/#asyncclient)
137
+ """Additional kwargs to merge with client_kwargs before passing to the httpx
138
+ AsyncClient.
139
+
140
+ For a full list of the params, see the `HTTPX documentation <https://www.python-httpx.org/api/#asyncclient>`__.
140
141
"""
141
142
142
143
sync_client_kwargs : Optional [dict ] = {}
143
- """Additional kwargs to merge with client_kwargs before
144
- passing to the httpx Client.
145
- For a full list of the params, see [this link]( https://www.python-httpx.org/api/#client)
144
+ """Additional kwargs to merge with client_kwargs before passing to the httpx Client.
145
+
146
+ For a full list of the params, see the `HTTPX documentation < https://www.python-httpx.org/api/#client>`__.
146
147
"""
147
148
148
149
_client : Client = PrivateAttr (default = None ) # type: ignore
Original file line number Diff line number Diff line change @@ -120,15 +120,16 @@ class OllamaLLM(BaseLLM):
120
120
"""
121
121
122
122
async_client_kwargs : Optional [dict ] = {}
123
- """Additional kwargs to merge with client_kwargs before
124
- passing to the httpx AsyncClient.
125
- For a full list of the params, see [this link](https://www.python-httpx.org/api/#asyncclient)
123
+ """Additional kwargs to merge with client_kwargs before passing to the HTTPX
124
+ AsyncClient.
125
+
126
+ For a full list of the params, see the `HTTPX documentation <https://www.python-httpx.org/api/#asyncclient>`__.
126
127
"""
127
128
128
129
sync_client_kwargs : Optional [dict ] = {}
129
- """Additional kwargs to merge with client_kwargs before
130
- passing to the httpx Client.
131
- For a full list of the params, see [this link]( https://www.python-httpx.org/api/#client)
130
+ """Additional kwargs to merge with client_kwargs before passing to the HTTPX Client.
131
+
132
+ For a full list of the params, see the `HTTPX documentation < https://www.python-httpx.org/api/#client>`__.
132
133
"""
133
134
134
135
_client : Client = PrivateAttr (default = None ) # type: ignore
You can’t perform that action at this time.
0 commit comments