Skip to content

Core Embeddings#

llm module#

serapeum.ollama.llm #

Ollama LLM implementation providing chat, streaming, and structured output capabilities.

This module implements the Ollama provider for the Serapeum framework, offering a complete LLM interface with support for: - Synchronous and asynchronous chat completions - Streaming responses with delta updates - Tool/function calling when supported by the model - Structured outputs using JSON mode and Pydantic validation - Multi-modal inputs (text and images) - Automatic client management with event loop handling

The implementation follows the FunctionCallingLLM protocol and integrates with Ollama's local or remote servers for model inference.

Ollama #

Bases: Client, ChatToCompletion, FunctionCallingLLM

Ollama LLM adapter for chat, streaming, structured output, and tool calling.

Integrates with a local or remote Ollama server to expose synchronous and asynchronous chat, streaming, and structured-output interfaces. The adapter implements the FunctionCallingLLM protocol so it can be composed with tool-orchestrating layers from serapeum.core.

Local vs Ollama Cloud

Without api_key the class talks to a local Ollama server at http://localhost:11434. To switch to Ollama Cloud, set api_key — that is the only change required. When api_key is provided and base_url is still the local default, base_url is automatically switched to https://api.ollama.com; no manual URL update is needed. An explicit non-default base_url is always preserved so custom remote deployments are unaffected. The api_key value is intentionally excluded from model_dump() and model_dump_json() so it is never accidentally serialised to disk or logs.

Lazy client initialisation

The underlying ollama.Client and ollama.AsyncClient instances are created on the first client / async_client property access, not at construction time. For testing you can bypass the network by injecting pre-built clients via the constructor::

Ollama(model="m", client=my_mock_client, async_client=my_async_mock)

Attributes:

Name Type Description
model str

Ollama model identifier, e.g. "llama3.1" or "qwen3-next:80b".

base_url str

URL of the Ollama server. Defaults to "http://localhost:11434". Automatically switched to "https://api.ollama.com" when api_key is provided and this value is still the local default.

api_key str | None

The single switch between local and cloud. When None (default), requests go to the local Ollama server. When set, requests are routed to Ollama Cloud and base_url is automatically updated. Not serialised by model_dump().

temperature float

Sampling temperature in [0.0, 1.0]. Higher values increase creativity; lower values produce more deterministic output. Defaults to 0.75.

context_window int

Maximum number of tokens in the context window. Defaults to DEFAULT_CONTEXT_WINDOW.

timeout float

HTTP request timeout in seconds. Defaults to 60.0.

prompt_key str

Key used when formatting prompt templates. Defaults to "prompt".

json_mode bool

When True, sends format="json" to Ollama so the model is constrained to emit valid JSON. Defaults to False.

additional_kwargs dict[str, Any]

Extra provider options forwarded to the Ollama options field (e.g. {"mirostat": 2}).

is_function_calling_model bool

Whether the chosen model supports tool / function calling. Defaults to True.

keep_alive float | str | None

How long the model stays loaded in memory after a request — a duration string ("5m", "1h") or float seconds. Defaults to "5m".

client Client

Pre-built synchronous ollama.Client for dependency injection or testing. When None, the client is created lazily on first access.

async_client AsyncClient

Pre-built asynchronous ollama.AsyncClient for dependency injection or testing. When None, a client is created per event loop on first access.

Examples:

  • Basic chat via Ollama Cloud
    >>> import os
    >>> from serapeum.core.llms import Message, MessageRole, TextChunk
    >>> from serapeum.ollama import Ollama  # type: ignore
    >>> llm = Ollama(
    ...     model="qwen3-next:80b",
    ...     api_key=os.environ.get("OLLAMA_API_KEY"),
    ...     temperature=0.0,
    ...     timeout=120,
    ... )
    >>> response = llm.chat([Message(role=MessageRole.USER, chunks=[TextChunk(content="Say 'hello'.")])])
    >>> response.message.role
    <MessageRole.ASSISTANT: 'assistant'>
    >>> print("content:", response.message.content)
    content: ...
    
  • Supplying api_key automatically switches base_url to Ollama Cloud
    >>> import os
    >>> from serapeum.ollama import Ollama  # type: ignore
    >>> from serapeum.ollama.client import OLLAMA_CLOUD_BASE_URL
    >>> llm = Ollama(model="qwen3-next:80b", api_key=os.environ.get("OLLAMA_API_KEY"))
    >>> llm.base_url == OLLAMA_CLOUD_BASE_URL
    True
    
  • api_key is excluded from model_dump() — it is never serialised
    >>> import os
    >>> from serapeum.ollama import Ollama  # type: ignore
    >>> llm = Ollama(model="qwen3-next:80b", api_key=os.environ.get("OLLAMA_API_KEY"))
    >>> "api_key" in llm.model_dump()
    False
    
  • Configure additional model parameters and inspect them
    >>> from serapeum.ollama import Ollama  # type: ignore
    >>> llm = Ollama(
    ...     model="llama3.1",
    ...     additional_kwargs={"mirostat": 2, "top_k": 40},
    ... )
    >>> llm.additional_kwargs
    {'mirostat': 2, 'top_k': 40}
    >>> llm._model_kwargs["mirostat"]
    2
    
  • Stream chat deltas and collect incremental content
    >>> import os
    >>> from serapeum.core.llms import Message, MessageRole, TextChunk
    >>> from serapeum.ollama import Ollama  # type: ignore
    >>> llm = Ollama(
    ...     model="qwen3-next:80b",
    ...     api_key=os.environ.get("OLLAMA_API_KEY"),
    ...     temperature=0.0,
    ...     timeout=120,
    ... )
    >>> chunks = list(llm.chat([  # doctest: +SKIP, +ELLIPSIS
    ...     Message(role=MessageRole.USER, chunks=[TextChunk(content="Say 'hello'.")])
    ... ], stream=True))
    >>> print("delta:", chunks[0].delta)  # first streamed token  # doctest: +SKIP, +ELLIPSIS
    delta: ...
    >>> print("final:", chunks[-1].message.content)  # final accumulated text  # doctest: +SKIP, +ELLIPSIS
    final: ...
    
  • Structured output parsed into a Pydantic model
    >>> import os
    >>> from pydantic import BaseModel
    >>> from serapeum.core.prompts import PromptTemplate
    >>> from serapeum.ollama import Ollama  # type: ignore
    >>> class Capital(BaseModel):
    ...     city: str
    ...     country: str
    >>> llm = Ollama(
    ...     model="llama3.1",
    ...     temperature=0.0,
    ...     timeout=120,
    ... )
    >>> prompt = PromptTemplate("Extract city and country from: {text}")
    >>> result = llm.parse(
    ...     Capital, prompt, text="Paris is the capital of France."
    ... )  # doctest: +SKIP, +ELLIPSIS
    >>> print("city:", result.city)  # doctest: +SKIP, +ELLIPSIS
    city: ...
    >>> print("country:", result.country)  # doctest: +SKIP, +ELLIPSIS
    country: ...
    >>> sorted(result.model_dump().keys())  # doctest: +SKIP
    ['city', 'country']
    
  • List all models available on the Ollama server
    >>> import os
    >>> from serapeum.ollama import Ollama  # type: ignore
    >>> llm = Ollama(model="qwen3-next:80b", api_key=os.environ.get("OLLAMA_API_KEY"))
    >>> models = llm.list_models()  # doctest: +SKIP, +ELLIPSIS
    >>> models[:2]  # doctest: +SKIP, +ELLIPSIS
    ['...', '...']
    
  • Async model listing via Ollama Cloud
    >>> import asyncio, os
    >>> from serapeum.ollama import Ollama  # type: ignore
    >>> llm = Ollama(model="qwen3-next:80b", api_key=os.environ.get("OLLAMA_API_KEY"))
    >>> async def get_models():  # doctest: +SKIP
    ...     return await llm.alist_models()
    >>> models = asyncio.run(get_models())  # doctest: +SKIP, +ELLIPSIS
    >>> models[:2]  # doctest: +SKIP, +ELLIPSIS
    ['...', '...']
    
See Also

OllamaEmbedding: Companion class for generating embeddings with Ollama. Client: Shared connection logic, URL resolution, and client injection. chat: Synchronous chat completion (supports streaming via stream=True). achat: Asynchronous chat completion (supports streaming via stream=True). parse: Structured output via JSON schema and Pydantic validation. list_models: List all models available on the Ollama server. alist_models: Async variant of list_models.

Source code in libs\providers\ollama\src\serapeum\ollama\llm.py
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
class Ollama(Client, ChatToCompletion, FunctionCallingLLM):
    """Ollama LLM adapter for chat, streaming, structured output, and tool calling.

    Integrates with a local or remote Ollama server to expose synchronous and
    asynchronous chat, streaming, and structured-output interfaces. The adapter
    implements the ``FunctionCallingLLM`` protocol so it can be composed with
    tool-orchestrating layers from ``serapeum.core``.

    **Local vs Ollama Cloud**

    Without ``api_key`` the class talks to a local Ollama server at
    ``http://localhost:11434``. **To switch to Ollama Cloud, set** ``api_key``
    **— that is the only change required.** When ``api_key`` is provided and
    ``base_url`` is still the local default, ``base_url`` is automatically
    switched to ``https://api.ollama.com``; no manual URL update is needed.
    An explicit non-default ``base_url`` is always preserved so custom remote
    deployments are unaffected. The ``api_key`` value is intentionally
    **excluded from** ``model_dump()`` and ``model_dump_json()`` so it is
    never accidentally serialised to disk or logs.

    **Lazy client initialisation**

    The underlying ``ollama.Client`` and ``ollama.AsyncClient`` instances are
    created on the first ``client`` / ``async_client`` property access, not at
    construction time. For testing you can bypass the network by injecting
    pre-built clients via the constructor::

        Ollama(model="m", client=my_mock_client, async_client=my_async_mock)

    Attributes:
        model: Ollama model identifier, e.g. ``"llama3.1"`` or
            ``"qwen3-next:80b"``.
        base_url: URL of the Ollama server. Defaults to
            ``"http://localhost:11434"``. Automatically switched to
            ``"https://api.ollama.com"`` when ``api_key`` is provided and
            this value is still the local default.
        api_key: The single switch between local and cloud. When ``None``
            (default), requests go to the local Ollama server. When set,
            requests are routed to Ollama Cloud and ``base_url`` is
            automatically updated. **Not serialised by** ``model_dump()``.
        temperature: Sampling temperature in ``[0.0, 1.0]``. Higher values
            increase creativity; lower values produce more deterministic
            output. Defaults to ``0.75``.
        context_window: Maximum number of tokens in the context window.
            Defaults to ``DEFAULT_CONTEXT_WINDOW``.
        timeout: HTTP request timeout in seconds. Defaults to
            ``60.0``.
        prompt_key: Key used when formatting prompt templates. Defaults to
            ``"prompt"``.
        json_mode: When ``True``, sends ``format="json"`` to Ollama so the
            model is constrained to emit valid JSON. Defaults to ``False``.
        additional_kwargs: Extra provider options forwarded to the Ollama
            ``options`` field (e.g. ``{"mirostat": 2}``).
        is_function_calling_model: Whether the chosen model supports tool /
            function calling. Defaults to ``True``.
        keep_alive: How long the model stays loaded in memory after a
            request — a duration string (``"5m"``, ``"1h"``) or float
            seconds. Defaults to ``"5m"``.
        client: Pre-built synchronous ``ollama.Client`` for dependency
            injection or testing. When ``None``, the client is created
            lazily on first access.
        async_client: Pre-built asynchronous ``ollama.AsyncClient`` for
            dependency injection or testing. When ``None``, a client is
            created per event loop on first access.

    Examples:
        - Basic chat via Ollama Cloud
            ```python
            >>> import os
            >>> from serapeum.core.llms import Message, MessageRole, TextChunk
            >>> from serapeum.ollama import Ollama  # type: ignore
            >>> llm = Ollama(
            ...     model="qwen3-next:80b",
            ...     api_key=os.environ.get("OLLAMA_API_KEY"),
            ...     temperature=0.0,
            ...     timeout=120,
            ... )
            >>> response = llm.chat([Message(role=MessageRole.USER, chunks=[TextChunk(content="Say 'hello'.")])])
            >>> response.message.role
            <MessageRole.ASSISTANT: 'assistant'>
            >>> print("content:", response.message.content)
            content: ...

            ```
        - Supplying api_key automatically switches base_url to Ollama Cloud
            ```python
            >>> import os
            >>> from serapeum.ollama import Ollama  # type: ignore
            >>> from serapeum.ollama.client import OLLAMA_CLOUD_BASE_URL
            >>> llm = Ollama(model="qwen3-next:80b", api_key=os.environ.get("OLLAMA_API_KEY"))
            >>> llm.base_url == OLLAMA_CLOUD_BASE_URL
            True

            ```
        - api_key is excluded from model_dump() — it is never serialised
            ```python
            >>> import os
            >>> from serapeum.ollama import Ollama  # type: ignore
            >>> llm = Ollama(model="qwen3-next:80b", api_key=os.environ.get("OLLAMA_API_KEY"))
            >>> "api_key" in llm.model_dump()
            False

            ```
        - Configure additional model parameters and inspect them
            ```python
            >>> from serapeum.ollama import Ollama  # type: ignore
            >>> llm = Ollama(
            ...     model="llama3.1",
            ...     additional_kwargs={"mirostat": 2, "top_k": 40},
            ... )
            >>> llm.additional_kwargs
            {'mirostat': 2, 'top_k': 40}
            >>> llm._model_kwargs["mirostat"]
            2

            ```
        - Stream chat deltas and collect incremental content
            ```python
            >>> import os
            >>> from serapeum.core.llms import Message, MessageRole, TextChunk
            >>> from serapeum.ollama import Ollama  # type: ignore
            >>> llm = Ollama(
            ...     model="qwen3-next:80b",
            ...     api_key=os.environ.get("OLLAMA_API_KEY"),
            ...     temperature=0.0,
            ...     timeout=120,
            ... )
            >>> chunks = list(llm.chat([  # doctest: +SKIP, +ELLIPSIS
            ...     Message(role=MessageRole.USER, chunks=[TextChunk(content="Say 'hello'.")])
            ... ], stream=True))
            >>> print("delta:", chunks[0].delta)  # first streamed token  # doctest: +SKIP, +ELLIPSIS
            delta: ...
            >>> print("final:", chunks[-1].message.content)  # final accumulated text  # doctest: +SKIP, +ELLIPSIS
            final: ...

            ```
        - Structured output parsed into a Pydantic model
            ```python
            >>> import os
            >>> from pydantic import BaseModel
            >>> from serapeum.core.prompts import PromptTemplate
            >>> from serapeum.ollama import Ollama  # type: ignore
            >>> class Capital(BaseModel):
            ...     city: str
            ...     country: str
            >>> llm = Ollama(
            ...     model="llama3.1",
            ...     temperature=0.0,
            ...     timeout=120,
            ... )
            >>> prompt = PromptTemplate("Extract city and country from: {text}")
            >>> result = llm.parse(
            ...     Capital, prompt, text="Paris is the capital of France."
            ... )  # doctest: +SKIP, +ELLIPSIS
            >>> print("city:", result.city)  # doctest: +SKIP, +ELLIPSIS
            city: ...
            >>> print("country:", result.country)  # doctest: +SKIP, +ELLIPSIS
            country: ...
            >>> sorted(result.model_dump().keys())  # doctest: +SKIP
            ['city', 'country']

            ```
        - List all models available on the Ollama server
            ```python
            >>> import os
            >>> from serapeum.ollama import Ollama  # type: ignore
            >>> llm = Ollama(model="qwen3-next:80b", api_key=os.environ.get("OLLAMA_API_KEY"))
            >>> models = llm.list_models()  # doctest: +SKIP, +ELLIPSIS
            >>> models[:2]  # doctest: +SKIP, +ELLIPSIS
            ['...', '...']

            ```
        - Async model listing via Ollama Cloud
            ```python
            >>> import asyncio, os
            >>> from serapeum.ollama import Ollama  # type: ignore
            >>> llm = Ollama(model="qwen3-next:80b", api_key=os.environ.get("OLLAMA_API_KEY"))
            >>> async def get_models():  # doctest: +SKIP
            ...     return await llm.alist_models()
            >>> models = asyncio.run(get_models())  # doctest: +SKIP, +ELLIPSIS
            >>> models[:2]  # doctest: +SKIP, +ELLIPSIS
            ['...', '...']

            ```

    See Also:
        OllamaEmbedding: Companion class for generating embeddings with Ollama.
        Client: Shared connection logic, URL resolution, and client injection.
        chat: Synchronous chat completion (supports streaming via ``stream=True``).
        achat: Asynchronous chat completion (supports streaming via ``stream=True``).
        parse: Structured output via JSON schema and Pydantic validation.
        list_models: List all models available on the Ollama server.
        alist_models: Async variant of list_models.
    """

    model_config = ConfigDict(arbitrary_types_allowed=True, extra="forbid")
    model: str = Field(description="The Ollama model to use.")
    temperature: float = Field(
        default=0.75,
        description="The temperature to use for sampling.",
        ge=0.0,
        le=1.0,
    )
    context_window: int = Field(
        default=DEFAULT_CONTEXT_WINDOW,
        description="The maximum number of context tokens for the model.",
        gt=0,
    )
    timeout: float = Field(
        default=DEFAULT_REQUEST_TIMEOUT,
        description="The timeout for making http request to Ollama API server",
    )
    prompt_key: str = Field(
        default="prompt", description="The key to use for the prompt in API calls."
    )
    json_mode: bool = Field(
        default=False,
        description="Whether to use JSON mode for the Ollama API.",
    )
    additional_kwargs: dict[str, Any] = Field(
        default_factory=dict,
        description="Additional model parameters for the Ollama API.",
    )
    is_function_calling_model: bool = Field(
        default=True,
        description="Whether the model is a function calling model.",
    )
    keep_alive: float | str | None = Field(
        default="5m",
        description="controls how long the model will stay loaded into memory following the request(default: 5m)",
    )

    # Track the event loop associated with the async client to avoid
    # reusing a client bound to a closed event loop across tests/runs
    _async_client_loop: asyncio.AbstractEventLoop | None = PrivateAttr(default=None)

    def _build_client_kwargs(self) -> dict[str, Any]:
        """Extend base client kwargs with the request timeout for the LLM client."""
        return {**super()._build_client_kwargs(), "timeout": self.timeout}

    @classmethod
    def class_name(cls) -> str:
        """Return the registered class name for this provider adapter.

        Returns:
            str: Provider identifier used in registries or logs.

        Examples:
            - Retrieve the class identifier
                ```python
                >>> from serapeum.ollama import Ollama      # type: ignore[attr-defined]
                >>> Ollama.class_name()
                'Ollama'

                ```
        """
        return "Ollama"

    @property
    def metadata(self) -> Metadata:
        """LLM metadata describing model capabilities and configuration.

        Returns:
            Metadata: Static capabilities such as context window and chat support.

        Examples:
            - Inspect model capabilities and configuration
                ```python
                >>> from serapeum.ollama import Ollama      # type: ignore[attr-defined]
                >>> meta = Ollama(model="llama3.1").metadata
                >>> meta.model_name
                'llama3.1'
                >>> meta.is_chat_model
                True
                >>> meta.is_function_calling_model
                True
                >>> meta.context_window
                3900

                ```
        """
        return Metadata(
            context_window=self.context_window,
            num_output=DEFAULT_NUM_OUTPUTS,
            model_name=self.model,
            is_chat_model=True,
            is_function_calling_model=self.is_function_calling_model,
        )

    @property
    def client(self) -> ollama_sdk.Client:  # type: ignore
        """Synchronous Ollama client lazily bound to ``base_url``.

        Returns:
            Client: Underlying Ollama client instance.

        Examples:
            - Access the lazily-created sync client and inspect its host
                ```python
                >>> from serapeum.ollama import Ollama      # type: ignore[attr-defined]
                >>> llm = Ollama(model="m", base_url="http://localhost:11434", timeout=1.0)
                >>> c = llm.client  # doctest: +SKIP, +ELLIPSIS
                >>> str(c._client.base_url)  # doctest: +SKIP, +ELLIPSIS
                'http://localhost:11434'

                ```
        """
        if self._client is None:
            self._client = ollama_sdk.Client(**self._build_client_kwargs())  # type: ignore
        return self._client

    def _ensure_async_client(self) -> ollama_sdk.AsyncClient:  # type: ignore
        """Return a per-event-loop AsyncClient, recreating when loop changes or closes.

        This avoids ``Event loop is closed`` errors when test runners (e.g.,
        pytest-asyncio) create and close event loops between invocations.

        Returns:
            AsyncClient: Async client instance associated with the current loop.

        Examples:
            - Re-create the client when the loop changes
                ```python
                >>> import asyncio
                >>> from serapeum.ollama import Ollama      # type: ignore[attr-defined]
                >>> llm = Ollama(model="m")
                >>> c1 = llm._ensure_async_client()  # doctest: +SKIP
                >>> c2 = llm._ensure_async_client()  # doctest: +SKIP
                >>> c1 is c2  # doctest: +SKIP
                True

                ```
        """
        try:
            current_loop = asyncio.get_running_loop()
        except RuntimeError:
            current_loop = None  # No running loop available in this context

        client_kwargs = self._build_client_kwargs()

        cached_loop = getattr(self, "_async_client_loop", None)
        if self._async_client is None:
            # No client yet: create and bind to current loop (may be None)
            self._async_client = ollama_sdk.AsyncClient(**client_kwargs)  # type: ignore
            self._async_client_loop = current_loop
        else:
            # If no loop recorded yet (e.g., injected client), bind without recreation
            if cached_loop is None:
                self._async_client_loop = current_loop
            # Recreate if the current loop is closed
            elif (
                current_loop is not None
                and hasattr(current_loop, "is_closed")
                and current_loop.is_closed()
            ):
                self._async_client = ollama_sdk.AsyncClient(**client_kwargs)  # type: ignore
                self._async_client_loop = current_loop
            # Or if the cached loop has been closed since creation
            elif hasattr(cached_loop, "is_closed") and cached_loop.is_closed():
                self._async_client = ollama_sdk.AsyncClient(**client_kwargs)  # type: ignore
                self._async_client_loop = current_loop
            else:
                # Reuse existing client even if loop identity differs but both are open
                self._async_client_loop = current_loop

        return self._async_client

    @property
    def async_client(self) -> ollama_sdk.AsyncClient:  # type: ignore
        """Async Ollama client bound to the current asyncio event loop.

        This property lazily creates or reuses an AsyncClient instance, automatically
        handling event loop changes and closures. It's safe to call across different
        async contexts (e.g., multiple pytest-asyncio tests) as it detects closed
        loops and recreates the client as needed.

        Returns:
            The async client instance used for asynchronous operations.

        Examples:
            - Access the async client within an async context
                ```python
                >>> import asyncio
                >>> from serapeum.ollama import Ollama      # type: ignore
                >>> llm = Ollama(model="llama3.1")
                >>> async def use_client():  # doctest: +SKIP
                ...     client = llm.async_client
                ...     response = await client.list()
                ...     return [m.model for m in response.models][:2]
                >>> asyncio.run(use_client())  # doctest: +SKIP, +ELLIPSIS
                ['...', '...']

                ```

        See Also:
            _ensure_async_client: Ensures the client matches the active event loop.
            client: Synchronous Ollama client property.
        """
        return self._ensure_async_client()

    @property
    def _model_kwargs(self) -> dict[str, Any]:
        """Assemble provider options forwarded under the ``options`` field.

        Returns:
            dict[str, Any]: Merged dictionary where ``additional_kwargs`` override
            base defaults such as ``temperature`` and ``num_ctx``.

        Examples:
            - Merge user-provided options with defaults
                ```python
                >>> from serapeum.ollama import Ollama      # type: ignore[attr-defined]
                >>> llm = Ollama(model="m", additional_kwargs={"mirostat": 2, "temperature": 0.9})
                >>> print(llm._model_kwargs)
                {'temperature': 0.9, 'num_ctx': 3900, 'mirostat': 2}

                ```
        """
        base_kwargs = {
            "temperature": self.temperature,
            "num_ctx": self.context_window,
        }
        return {
            **base_kwargs,
            **self.additional_kwargs,
        }

    @staticmethod
    def _convert_to_ollama_messages(messages: MessageList) -> list[dict[str, Any]]:
        """Convert internal MessageList to the Ollama wire format.

        Args:
            messages (MessageList):
                Sequence of messages to be sent to Ollama.

        Returns:
            Dict: A list of dicts compatible with the Ollama chat API (role,
            content, optional images, and tool_calls).

        Raises:
            ValueError: If a content chunk type is unsupported.

        Examples:
            - Text-only conversion
                ```python
                >>> from serapeum.core.llms import Message, MessageList, MessageRole, TextChunk
                >>> from serapeum.ollama import Ollama      # type: ignore[attr-defined]
                >>> llm = Ollama(model="m")
                >>> wire = llm._convert_to_ollama_messages(
                ...     MessageList(messages=[
                ...         Message(role=MessageRole.USER, chunks=[TextChunk(content="hello")]),
                ...     ])
                ... )
                >>> print(wire)
                [{'role': 'user', 'content': 'hello'}]

                ```
        """
        ollama_messages = []
        for message in messages:
            cur_ollama_message = {
                "role": message.role.value,
                "content": "",
            }
            for block in message.chunks:
                if isinstance(block, TextChunk):
                    cur_ollama_message["content"] += block.content
                elif isinstance(block, Image):
                    if "images" not in cur_ollama_message:
                        cur_ollama_message["images"] = []

                    # Prefer an explicit base64 attribute if provided by the caller
                    b64 = getattr(block, "base64", None)
                    if b64 is None:
                        extra = getattr(block, "model_extra", None) or {}
                        b64 = extra.get("base64")

                    if b64 is None:
                        try:
                            b64 = dict(block).get("base64")
                        except Exception:
                            b64 = None

                    if b64 is None:
                        b64 = getattr(block, "__dict__", {}).get("base64")

                    if isinstance(b64, (bytes, str)):
                        base64_str = (
                            b64.decode("utf-8") if isinstance(b64, bytes) else b64
                        )
                    else:
                        # Fall back to resolving image bytes via the helper
                        base64_str = (
                            block.resolve_image(as_base64=True).read().decode("utf-8")
                        )

                    cur_ollama_message["images"].append(base64_str)
                else:
                    raise ValueError(f"Unsupported block type: {type(block)}")

            if "tool_calls" in message.additional_kwargs:
                cur_ollama_message["tool_calls"] = message.additional_kwargs[
                    "tool_calls"
                ]

            ollama_messages.append(cur_ollama_message)

        return ollama_messages

    @staticmethod
    def _get_response_token_counts(raw_response: dict[str, Any]) -> dict[str, Any]:
        """Extract token usage fields from a raw Ollama response.

        Args:
            raw_response (dict):
                Provider response possibly containing token counts.

        Returns:
            dict: Mapping with ``prompt_tokens``, ``completion_tokens``, and
            ``total_tokens`` when available; otherwise an empty dict.

        Examples:
            - Compute totals when both fields are present
                ```python
                >>> from serapeum.ollama import Ollama      # type: ignore
                >>> Ollama._get_response_token_counts({"prompt_eval_count": 2, "eval_count": 3})
                {'prompt_tokens': 2, 'completion_tokens': 3, 'total_tokens': 5}

                ```
        """
        token_counts = {}
        try:
            prompt_tokens = raw_response["prompt_eval_count"]
            completion_tokens = raw_response["eval_count"]
            total_tokens = prompt_tokens + completion_tokens
            token_counts = {
                "prompt_tokens": prompt_tokens,
                "completion_tokens": completion_tokens,
                "total_tokens": total_tokens,
            }
        except (KeyError, TypeError):
            pass

        return token_counts

    def _prepare_chat_with_tools(
        self,
        tools: list[BaseTool],
        message: str | Message | None = None,
        chat_history: list[Message] | None = None,
        verbose: bool = False,
        allow_parallel_tool_calls: bool = False,
        **kwargs: Any,
    ) -> dict[str, Any]:
        """Prepare a chat payload including tool specifications.

        Args:
            tools (List[BaseTool]): Tools to expose to the model (converted using OpenAI schema).
            message (str | Message | None): Optional user message to append.
            chat_history (list[Message] | None): Optional existing conversation history.
            verbose (bool): Currently unused verbosity flag.
            allow_parallel_tool_calls (bool): Indicator forwarded to validators.
            **kwargs (Any): Reserved for future extensions.

        Returns:
            dict[str, Any]: Dict with ``messages`` and ``tools`` entries suitable for chat calls.

        Examples:
            - Combine history, a new user message, and tool specs
                ```python
                >>> from serapeum.core.llms import Message, MessageRole, TextChunk
                >>> from serapeum.ollama import Ollama      # type: ignore
                >>> class T:
                ...     def __init__(self, n):
                ...         class M:
                ...             def to_openai_tool(self, skip_length_check=False):
                ...                 return {"type": "function", "function": {"name": n}}
                ...         self.metadata = M()
                ...
                >>> llm = Ollama(model="m")
                >>> payload = llm._prepare_chat_with_tools(
                ...     [T("t1")],
                ...     message="hi",
                ...     chat_history=[Message(role=MessageRole.SYSTEM, chunks=[TextChunk(content="s")])],
                ... )
                >>> len(payload["messages"])
                2
                >>> payload["messages"][0].role == MessageRole.SYSTEM
                True
                >>> payload["messages"][1].role == MessageRole.USER
                True
                >>> payload["tools"]
                [{'type': 'function', 'function': {'name': 't1'}}]

                ```
        """
        tool_specs = [
            tool.metadata.to_openai_tool(skip_length_check=True) for tool in tools
        ]

        if isinstance(message, str):
            message = Message(
                role=MessageRole.USER,
                chunks=[TextChunk(content=message)],
            )

        messages = list(chat_history or [])
        if message:
            messages.append(message)

        return {
            "messages": messages,
            "tools": tool_specs or None,
        }

    @staticmethod
    def _build_chat_response(raw: Any) -> ChatResponse:
        """Build a ``ChatResponse`` from a raw (non-streaming) Ollama API response.

        Converts the SDK response object to a plain dict, extracts tool calls and
        token usage, then constructs a typed ``ChatResponse``.

        Args:
            raw: The response object returned by ``ollama.Client.chat`` or
                ``ollama.AsyncClient.chat`` with ``stream=False``.

        Returns:
            ChatResponse: Typed response with message content, role, tool calls,
            and token usage populated in ``raw["usage"]`` when available.

        Examples:
            - Build a response from a minimal raw dict and explore it
                ```python
                >>> from serapeum.ollama import Ollama  # type: ignore
                >>> raw = {"message": {"role": "assistant", "content": "Hi"}}
                >>> resp = Ollama._build_chat_response(raw)
                >>> resp.message.content
                'Hi'
                >>> resp.message.role
                <MessageRole.ASSISTANT: 'assistant'>
                >>> resp.message.tool_calls
                []

                ```
            - Build a response with token usage from raw provider data
                ```python
                >>> from serapeum.ollama import Ollama  # type: ignore
                >>> raw = {
                ...     "message": {"role": "assistant", "content": "Hello!"},
                ...     "prompt_eval_count": 10,
                ...     "eval_count": 5,
                ... }
                >>> resp = Ollama._build_chat_response(raw)
                >>> resp.raw["usage"]
                {'prompt_tokens': 10, 'completion_tokens': 5, 'total_tokens': 15}

                ```
        """
        raw = dict(raw)
        raw_tool_calls = raw["message"].get("tool_calls") or []
        token_counts = Ollama._get_response_token_counts(raw)
        if token_counts:
            raw["usage"] = token_counts

        chunks: list = []
        content = raw["message"]["content"]
        if content:
            chunks.append(TextChunk(content=content))

        coercer = ArgumentCoercer()
        for tc in raw_tool_calls:
            func = tc["function"]
            chunks.append(
                ToolCallBlock(
                    tool_call_id=func["name"],
                    tool_name=func["name"],
                    tool_kwargs=coercer.coerce(func["arguments"]),
                )
            )

        return ChatResponse(
            message=Message(
                chunks=chunks,
                role=raw["message"]["role"],
            ),
            raw=raw,
        )

    @overload
    def chat(
        self,
        messages: MessageList | list[Message],
        *,
        stream: Literal[False] = ...,
        **kwargs: Any,
    ) -> ChatResponse: ...

    @overload
    def chat(
        self,
        messages: MessageList | list[Message],
        *,
        stream: Literal[True],
        **kwargs: Any,
    ) -> ChatResponseGen: ...

    def chat(
        self,
        messages: MessageList | list[Message],
        *,
        stream: bool = False,
        **kwargs: Any,
    ) -> ChatResponse | ChatResponseGen:
        """Send a chat request to Ollama and return the assistant message.

        Args:
            messages (MessageList):
                Sequence of chat messages.
            stream (bool):
                If ``False`` (default), returns a single ChatResponse with the complete
                message. If ``True``, returns a generator yielding incremental ChatResponse
                chunks with deltas.
            **kwargs (Any):
                Provider-specific overrides such as ``tools`` or ``format``.

        Returns:
            ChatResponse when ``stream=False``, or ChatResponseGen when ``stream=True``.

        Examples:
            - Non-streaming chat — explore the response message
                ```python
                >>> from serapeum.core.llms import Message, MessageRole, TextChunk
                >>> from serapeum.ollama import Ollama  # type: ignore
                >>> llm = Ollama(model="llama3.1", timeout=120)
                >>> resp = llm.chat([  # doctest: +SKIP, +ELLIPSIS
                ...     Message(role=MessageRole.USER, chunks=[TextChunk(content="Say hi")])
                ... ])
                >>> resp.message.role  # doctest: +SKIP
                <MessageRole.ASSISTANT: 'assistant'>
                >>> print("content:", resp.message.content)  # doctest: +SKIP, +ELLIPSIS
                content: ...
                >>> print("model:", resp.raw.get("model"))  # raw provider metadata  # doctest: +SKIP, +ELLIPSIS
                model: ...

                ```
            - Streaming chat — collect deltas and see accumulated text
                ```python
                >>> from serapeum.core.llms import Message, MessageRole, TextChunk
                >>> from serapeum.ollama import Ollama  # type: ignore
                >>> llm = Ollama(model="llama3.1", timeout=180)
                >>> chunks = list(llm.chat(  # doctest: +SKIP, +ELLIPSIS
                ...     [Message(role=MessageRole.USER, chunks=[TextChunk(content="Count to 3")])],
                ...     stream=True,
                ... ))
                >>> print("delta:", chunks[0].delta)  # first streamed token  # doctest: +SKIP, +ELLIPSIS
                delta: ...
                >>> print("final:", chunks[-1].message.content)  # final accumulated  # doctest: +SKIP, +ELLIPSIS
                final: ...

                ```
        """
        result = (
            self._stream_chat(messages, **kwargs)
            if stream
            else self._chat(messages, **kwargs)
        )
        return result

    @retry(is_retryable, logger)
    def _chat(
        self, messages: MessageList | list[Message], **kwargs: Any
    ) -> ChatResponse:
        """Internal non-streaming chat implementation."""
        ollama_messages = self._convert_to_ollama_messages(messages)

        tools = kwargs.pop("tools", None)
        response_format = kwargs.pop("format", "json" if self.json_mode else None)

        response = self.client.chat(
            model=self.model,
            messages=ollama_messages,
            stream=False,
            format=response_format,
            tools=tools,
            options=self._model_kwargs,
            keep_alive=self.keep_alive,
        )

        return self._build_chat_response(response)

    @staticmethod
    def _parse_tool_call_response(
        tools_dict: dict[str, Any], r: dict[str, Any]
    ) -> ChatResponse:
        """Accumulate streaming content and unique tool calls into a ChatResponse.

        This static method processes individual streaming chunks from Ollama's chat API,
        accumulating text content and de-duplicating tool calls across multiple deltas.
        It maintains state in the tools_dict to track cumulative response text and
        unique tool calls seen so far.

        Args:
            tools_dict: Mutable aggregation state with keys:
                - "response_txt": Accumulated text content
                - "seen_tool_calls": Set of (function_name, arguments) tuples for deduplication
                - "all_tool_calls": List of unique tool call dictionaries
            r: A single streaming chunk from Ollama containing message content and metadata.

        Returns:
            ChatResponse with cumulative message content, the current delta, and all
            unique tool calls accumulated so far.

        Examples:
            - Process streaming chunk with text content
                ```python
                >>> from serapeum.ollama import Ollama      # type: ignore
                >>> tools_dict = {"response_txt": "", "seen_tool_calls": set(), "all_tool_calls": []}
                >>> chunk = {"message": {"role": "assistant", "content": "Hello"}}
                >>> response = Ollama._parse_tool_call_response(tools_dict, chunk)
                >>> response.message.content
                'Hello'
                >>> response.delta
                'Hello'

                ```
            - Process chunk with tool calls (deduplicated)
                ```python
                >>> tools_dict = {"response_txt": "", "seen_tool_calls": set(), "all_tool_calls": []}
                >>> chunk1 = {
                ...     "message": {
                ...         "role": "assistant",
                ...         "content": "",
                ...         "tool_calls": [{"function": {"name": "calc", "arguments": {"x": 1}}}]
                ...     }
                ... }
                >>> r1 = Ollama._parse_tool_call_response(tools_dict, chunk1)
                >>> len(tools_dict["all_tool_calls"])
                1
                >>> # Same tool call again - should not duplicate
                >>> r2 = Ollama._parse_tool_call_response(tools_dict, chunk1)
                >>> len(tools_dict["all_tool_calls"])
                1

                ```

        See Also:
            chat: Uses this helper to materialize per-chunk responses.
            achat: Async variant that uses this helper.
        """
        r = dict(r)

        tools_dict["response_txt"] += r["message"]["content"]
        new_tool_calls = [dict(t) for t in (r["message"].get("tool_calls", []) or [])]
        coercer = ArgumentCoercer()
        for tool_call in new_tool_calls:
            func_name = str(tool_call["function"]["name"])
            func_args = str(tool_call["function"]["arguments"])
            if (func_name, func_args) not in tools_dict["seen_tool_calls"]:
                tools_dict["seen_tool_calls"].add((func_name, func_args))
                tools_dict["all_tool_calls"].append(
                    ToolCallBlock(
                        tool_call_id=func_name,
                        tool_name=func_name,
                        tool_kwargs=coercer.coerce(tool_call["function"]["arguments"]),
                    )
                )

        token_counts = Ollama._get_response_token_counts(r)
        if token_counts:
            r["usage"] = token_counts

        chunks: list = []
        if tools_dict["response_txt"]:
            chunks.append(TextChunk(content=tools_dict["response_txt"]))
        chunks.extend(tools_dict["all_tool_calls"])

        return ChatResponse(
            message=Message(
                chunks=chunks,
                role=r["message"]["role"],
            ),
            delta=r["message"]["content"],
            raw=r,
        )

    @retry(is_retryable, logger)
    def _stream_chat(
        self, messages: MessageList | list[Message], **kwargs: Any
    ) -> ChatResponseGen:
        """Internal streaming chat implementation."""
        ollama_messages = self._convert_to_ollama_messages(messages)

        tools = kwargs.pop("tools", None)
        response_format = kwargs.pop("format", "json" if self.json_mode else None)

        tools_dict = {
            "response_txt": "",
            "seen_tool_calls": set(),
            "all_tool_calls": [],
        }

        response = self.client.chat(
            model=self.model,
            messages=ollama_messages,
            stream=True,
            format=response_format,
            tools=tools,
            options=self._model_kwargs,
            keep_alive=self.keep_alive,
        )

        for r in response:
            if r["message"]["content"] is not None:
                yield self._parse_tool_call_response(tools_dict, r)

    @overload
    async def achat(
        self,
        messages: MessageList | list[Message],
        *,
        stream: Literal[False] = ...,
        **kwargs: Any,
    ) -> ChatResponse: ...

    @overload
    async def achat(
        self,
        messages: MessageList | list[Message],
        *,
        stream: Literal[True],
        **kwargs: Any,
    ) -> ChatResponseAsyncGen: ...

    async def achat(
        self,
        messages: MessageList | list[Message],
        *,
        stream: bool = False,
        **kwargs: Any,
    ) -> ChatResponse | ChatResponseAsyncGen:
        """Asynchronously send a chat request and return the assistant message.

        Async variant of the chat method that sends messages to Ollama. When
        ``stream=False`` (default), waits for the complete response. When
        ``stream=True``, returns an async generator yielding incremental chunks.

        Args:
            messages: Sequence of chat messages forming the conversation context.
            stream (bool):
                If ``False`` (default), awaits the full response and returns a single
                ChatResponse. If ``True``, returns an async generator yielding
                ChatResponse chunks with deltas.
            **kwargs: Provider-specific overrides such as:
                - tools: List of tool specifications for function calling
                - format: Response format (e.g., "json")

        Returns:
            ChatResponse when ``stream=False``, or ChatResponseAsyncGen when ``stream=True``.

        Examples:
            - Async non-streaming chat — explore the response
                ```python
                >>> import asyncio
                >>> from serapeum.core.llms import Message, MessageRole, TextChunk
                >>> from serapeum.ollama import Ollama      # type: ignore
                >>> llm = Ollama(model="llama3.1", timeout=120)  # doctest: +SKIP
                >>> async def chat_example():  # doctest: +SKIP
                ...     response = await llm.achat([
                ...         Message(role=MessageRole.USER, chunks=[TextChunk(content="Say hello")])
                ...     ])
                ...     return response
                >>> resp = asyncio.run(chat_example())  # doctest: +SKIP, +ELLIPSIS
                >>> resp.message.role  # doctest: +SKIP
                <MessageRole.ASSISTANT: 'assistant'>
                >>> print("content:", resp.message.content)  # doctest: +SKIP, +ELLIPSIS
                content: ...

                ```
            - Async streaming chat — collect deltas
                ```python
                >>> import asyncio
                >>> from serapeum.core.llms import Message, MessageRole, TextChunk
                >>> from serapeum.ollama import Ollama      # type: ignore
                >>> llm = Ollama(model="llama3.1", timeout=120)  # doctest: +SKIP
                >>> async def stream_example():  # doctest: +SKIP
                ...     deltas = []
                ...     async for chunk in await llm.achat(
                ...         [Message(role=MessageRole.USER, chunks=[TextChunk(content="Count to 3")])],
                ...         stream=True,
                ...     ):
                ...         deltas.append(chunk.delta)
                ...     return deltas
                >>> deltas = asyncio.run(stream_example())  # doctest: +SKIP, +ELLIPSIS
                >>> len(deltas) >= 1  # doctest: +SKIP
                True
                >>> print("text:", "".join(deltas))  # final accumulated text  # doctest: +SKIP, +ELLIPSIS
                text: ...

                ```

        See Also:
            chat: Synchronous variant.
        """
        result = (
            await self._astream_chat(messages, **kwargs)
            if stream
            else await self._achat(messages, **kwargs)
        )
        return result

    @retry(is_retryable, logger)
    async def _achat(
        self, messages: MessageList | list[Message], **kwargs: Any
    ) -> ChatResponse:
        """Internal non-streaming async chat implementation."""
        ollama_messages = self._convert_to_ollama_messages(messages)

        tools = kwargs.pop("tools", None)
        response_format = kwargs.pop("format", "json" if self.json_mode else None)

        response = await self.async_client.chat(
            model=self.model,
            messages=ollama_messages,
            stream=False,
            format=response_format,
            tools=tools,
            options=self._model_kwargs,
            keep_alive=self.keep_alive,
        )

        return self._build_chat_response(response)

    @retry(is_retryable, logger, stream=True)
    async def _astream_chat(
        self, messages: MessageList | list[Message], **kwargs: Any
    ) -> ChatResponseAsyncGen:
        """Internal streaming async chat implementation."""
        ollama_messages = self._convert_to_ollama_messages(messages)

        tools = kwargs.pop("tools", None)
        response_format = kwargs.pop("format", "json" if self.json_mode else None)

        response = await self.async_client.chat(
            model=self.model,
            messages=ollama_messages,
            stream=True,
            format=response_format,
            tools=tools,
            options=self._model_kwargs,
            keep_alive=self.keep_alive,
        )

        # Some client/mocking setups may return a coroutine that resolves to
        # an async iterator; normalize by awaiting when needed.
        if inspect.iscoroutine(response) and not hasattr(response, "__aiter__"):
            response = await response

        tools_dict = {
            "response_txt": "",
            "seen_tool_calls": set(),
            "all_tool_calls": [],
        }

        async def gen() -> ChatResponseAsyncGen:
            async for r in response:
                if r["message"]["content"] is not None:
                    yield self._parse_tool_call_response(tools_dict, r)

        return gen()

    @overload
    def parse(
        self,
        schema: type[BaseModel] | Callable[..., Any],
        prompt: PromptTemplate,
        llm_kwargs: dict[str, Any] | None = ...,
        *,
        stream: Literal[False] = ...,
        **prompt_args: Any,
    ) -> BaseModel: ...

    @overload
    def parse(
        self,
        schema: type[BaseModel] | Callable[..., Any],
        prompt: PromptTemplate,
        llm_kwargs: dict[str, Any] | None = ...,
        *,
        stream: Literal[True],
        **prompt_args: Any,
    ) -> Generator[BaseModel | list[BaseModel], None, None]: ...

    def parse(
        self,
        schema: type[BaseModel] | Callable[..., Any],
        prompt: PromptTemplate,
        llm_kwargs: dict[str, Any] | None = None,
        *,
        stream: bool = False,
        **prompt_args: Any,
    ) -> BaseModel | Generator[BaseModel | list[BaseModel], None, None]:
        """Generate structured output conforming to a Pydantic model schema.

        Instructs the Ollama model to emit JSON matching the schema of output_cls,
        then validates and parses the response into a Pydantic instance. When using
        StructuredOutputMode.DEFAULT, this injects the model's JSON schema into the
        format parameter and validates the response content.

        When ``stream=True``, yields incrementally parsed Pydantic instances as the
        model streams JSON content, using StreamingObjectProcessor with flexible mode
        to handle incomplete JSON fragments.

        Args:
            schema: Target Pydantic model class (or callable) defining the expected
                structure. A callable is accepted when routing through
                ToolOrchestratingLLM (non-DEFAULT modes).
            prompt: PromptTemplate that will be formatted with prompt_args to create
                messages.
            llm_kwargs: Additional provider arguments passed to the chat method.
                Defaults to empty dict.
            stream: If ``False`` (default), returns a single validated instance after
                the full response is received. If ``True``, returns a generator that
                yields partially complete instances as JSON is streamed.
            **prompt_args: Template variables used to format the prompt.

        Returns:
            A validated ``BaseModel`` instance when ``stream=False``, or a
            ``Generator`` yielding ``BaseModel | list[BaseModel]`` when
            ``stream=True``.

        Raises:
            ValidationError: If the model's response doesn't match the schema
                (non-streaming mode only).

        Examples:
            - Extract structured data and explore the parsed fields
                ```python
                >>> import os
                >>> from pydantic import BaseModel, Field
                >>> from serapeum.core.prompts import PromptTemplate
                >>> from serapeum.ollama import Ollama      # type: ignore
                >>> class Person(BaseModel):
                ...     name: str = Field(description="Person's full name")
                ...     age: int = Field(description="Person's age in years")
                >>> llm = Ollama(model="llama3.1", timeout=120)     # doctest: +SKIP
                >>> prompt = PromptTemplate("Extract person info: {text}")  # doctest: +SKIP
                >>> result = llm.parse(  # doctest: +SKIP, +ELLIPSIS
                ...     Person,
                ...     prompt,
                ...     text="John Doe is 30 years old",
                ... )
                >>> print("name:", result.name)  # doctest: +SKIP, +ELLIPSIS
                name: ...
                >>> result.age >= 0  # age is a valid integer  # doctest: +SKIP
                True
                >>> sorted(result.model_dump().keys())  # doctest: +SKIP
                ['age', 'name']

                ```

            - Stream structured data and observe incremental updates
                ```python
                >>> from pydantic import BaseModel
                >>> from serapeum.core.prompts import PromptTemplate
                >>> from serapeum.ollama import Ollama      # type: ignore
                >>> class Summary(BaseModel):
                ...     title: str
                ...     points: list[str]
                >>> llm = Ollama(model="llama3.1", timeout=120)     # doctest: +SKIP
                >>> prompt = PromptTemplate("Summarize: {text}")  # doctest: +SKIP
                >>> last = None  # doctest: +SKIP
                >>> for obj in llm.parse(  # doctest: +SKIP, +ELLIPSIS
                ...     Summary, prompt, stream=True, text="Long article about AI..."
                ... ):
                ...     last = obj
                >>> print("title:", last.title)  # final parsed title  # doctest: +SKIP, +ELLIPSIS
                title: ...
                >>> len(last.points) >= 0  # doctest: +SKIP
                True

                ```

        See Also:
            aparse: Async variant (non-streaming).
        """
        if self.structured_output_mode == StructuredOutputMode.DEFAULT:
            result = (
                self._stream_parse_default(schema, prompt, llm_kwargs, prompt_args)
                if stream
                else self._parse_default(schema, prompt, llm_kwargs, prompt_args)
            )
        else:
            result = (
                super().stream_parse(schema, prompt, llm_kwargs, **prompt_args)  # type: ignore[return-value]
                if stream
                else super().parse(schema, prompt, llm_kwargs, **prompt_args)
            )
        return result

    def _parse_default(
        self,
        schema: type[BaseModel] | Callable[..., Any],
        prompt: PromptTemplate,
        llm_kwargs: dict[str, Any] | None,
        prompt_args: dict[str, Any],
    ) -> BaseModel:
        llm_kwargs = llm_kwargs or {}
        llm_kwargs["format"] = schema.model_json_schema()

        # Explicitly remove 'stream' to prevent override of non-streaming behavior
        llm_kwargs.pop("stream", None)

        messages = prompt.format_messages(**prompt_args)
        response = self.chat(messages, **llm_kwargs)
        return schema.model_validate_json(response.message.content or "")

    def _stream_parse_default(
        self,
        schema: type[BaseModel] | Callable[..., Any],
        prompt: PromptTemplate,
        llm_kwargs: dict[str, Any] | None,
        prompt_args: dict[str, Any],
    ) -> Generator[BaseModel | list[BaseModel], None, None]:
        _llm_kwargs = llm_kwargs or {}
        _llm_kwargs["format"] = schema.model_json_schema()
        messages = prompt.format_messages(**prompt_args)
        processor = StreamingObjectProcessor(
            output_cls=schema,
            flexible_mode=True,
            allow_parallel_tool_calls=False,
        )
        cur_objects = None
        for response in self.chat(messages, stream=True, **_llm_kwargs):
            try:
                objects = processor.process(response, cur_objects)
                cur_objects = objects if isinstance(objects, list) else [objects]
                yield objects
            except Exception:  # nosec B112
                continue

    @overload
    async def aparse(
        self,
        schema: type[BaseModel] | Callable[..., Any],
        prompt: PromptTemplate,
        llm_kwargs: dict[str, Any] | None = ...,
        *,
        stream: Literal[False] = ...,
        **prompt_args: Any,
    ) -> BaseModel: ...

    @overload
    async def aparse(
        self,
        schema: type[BaseModel] | Callable[..., Any],
        prompt: PromptTemplate,
        llm_kwargs: dict[str, Any] | None = ...,
        *,
        stream: Literal[True],
        **prompt_args: Any,
    ) -> AsyncGenerator[BaseModel | list[BaseModel], None]: ...

    async def aparse(
        self,
        schema: type[BaseModel] | Callable[..., Any],
        prompt: PromptTemplate,
        llm_kwargs: dict[str, Any] | None = None,
        *,
        stream: bool = False,
        **prompt_args: Any,
    ) -> BaseModel | AsyncGenerator[BaseModel | list[BaseModel], None]:
        """Asynchronously generate structured output conforming to a Pydantic model schema.

        Async variant of parse. Instructs the Ollama model to emit JSON
        matching the schema of output_cls, then validates and parses the response
        into a Pydantic instance using the async chat interface.

        When ``stream=True``, returns an async generator that yields incrementally
        parsed Pydantic instances as the model streams JSON content, using
        StreamingObjectProcessor with flexible mode to handle incomplete JSON fragments.

        Args:
            schema: Target Pydantic model class (or callable) defining the expected
                structure. A callable is accepted when routing through
                ToolOrchestratingLLM (non-DEFAULT modes).
            prompt: PromptTemplate that will be formatted with prompt_args to create
                messages.
            llm_kwargs: Additional provider arguments passed to the achat method.
                Defaults to empty dict.
            stream: If ``False`` (default), awaits the full response and returns a
                single validated instance. If ``True``, returns an async generator
                that yields partially complete instances as JSON is streamed.
            **prompt_args: Template variables used to format the prompt.

        Returns:
            A validated ``BaseModel`` instance when ``stream=False``, or an
            ``AsyncGenerator`` yielding ``BaseModel | list[BaseModel]`` when
            ``stream=True``.

        Raises:
            ValidationError: If the model's response doesn't match the schema
                (non-streaming mode only).

        Examples:
            - Async structured extraction — explore the parsed object
                ```python
                >>> import asyncio
                >>> from pydantic import BaseModel
                >>> from serapeum.core.prompts import PromptTemplate
                >>> from serapeum.ollama import Ollama      # type: ignore
                >>> class City(BaseModel):
                ...     name: str
                ...     country: str
                >>> llm = Ollama(model="llama3.1", timeout=120)  # doctest: +SKIP
                >>> async def extract_city():  # doctest: +SKIP
                ...     prompt = PromptTemplate("Extract city: {text}")
                ...     return await llm.aparse(City, prompt, text="Paris is in France")
                >>> result = asyncio.run(extract_city())  # doctest: +SKIP, +ELLIPSIS
                >>> print("name:", result.name)  # doctest: +SKIP, +ELLIPSIS
                name: ...
                >>> print("country:", result.country)  # doctest: +SKIP, +ELLIPSIS
                country: ...
                >>> sorted(result.model_dump().keys())  # doctest: +SKIP
                ['country', 'name']

                ```

            - Async stream structured data and observe incremental fields
                ```python
                >>> import asyncio
                >>> from pydantic import BaseModel
                >>> from serapeum.core.prompts import PromptTemplate
                >>> from serapeum.ollama import Ollama      # type: ignore
                >>> class Analysis(BaseModel):
                ...     sentiment: str
                ...     keywords: list[str]
                >>> llm = Ollama(model="llama3.1", timeout=120)  # doctest: +SKIP
                >>> async def stream_analysis():  # doctest: +SKIP
                ...     prompt = PromptTemplate("Analyze: {text}")
                ...     last = None
                ...     async for obj in await llm.aparse(
                ...         Analysis, prompt, stream=True, text="Great product!"
                ...     ):
                ...         last = obj
                ...     return last
                >>> last = asyncio.run(stream_analysis())  # doctest: +SKIP, +ELLIPSIS
                >>> print("sentiment:", last.sentiment)  # doctest: +SKIP, +ELLIPSIS
                sentiment: ...
                >>> len(last.keywords) >= 0  # doctest: +SKIP
                True

                ```

        See Also:
            parse: Synchronous variant.
        """
        if self.structured_output_mode == StructuredOutputMode.DEFAULT:
            result = (
                self._astream_parse_default(schema, prompt, llm_kwargs, prompt_args)
                if stream
                else await self._aparse_default(schema, prompt, llm_kwargs, prompt_args)
            )
        else:
            result = (
                await super().astream_parse(schema, prompt, llm_kwargs, **prompt_args)  # type: ignore[return-value]
                if stream
                else await super().aparse(schema, prompt, llm_kwargs, **prompt_args)
            )
        return result

    async def _aparse_default(
        self,
        schema: type[BaseModel] | Callable[..., Any],
        prompt: PromptTemplate,
        llm_kwargs: dict[str, Any] | None,
        prompt_args: dict[str, Any],
    ) -> BaseModel:
        llm_kwargs = llm_kwargs or {}
        llm_kwargs["format"] = schema.model_json_schema()

        # Explicitly remove 'stream' to prevent override of non-streaming behavior
        llm_kwargs.pop("stream", None)

        messages = prompt.format_messages(**prompt_args)
        response = await self.achat(messages, **llm_kwargs)
        return schema.model_validate_json(response.message.content or "")

    async def _astream_parse_default(
        self,
        schema: type[BaseModel] | Callable[..., Any],
        prompt: PromptTemplate,
        llm_kwargs: dict[str, Any] | None,
        prompt_args: dict[str, Any],
    ) -> AsyncGenerator[BaseModel | list[BaseModel], None]:
        _llm_kwargs = llm_kwargs or {}
        _llm_kwargs["format"] = schema.model_json_schema()
        messages = prompt.format_messages(**prompt_args)
        response_gen = await self.achat(messages, stream=True, **_llm_kwargs)
        processor = StreamingObjectProcessor(
            output_cls=schema,
            flexible_mode=True,
            allow_parallel_tool_calls=False,
        )
        cur_objects = None
        async for response in response_gen:
            try:
                objects = processor.process(response, cur_objects)
                cur_objects = objects if isinstance(objects, list) else [objects]
                yield objects
            except Exception:  # nosec B112
                continue

async_client property #

Async Ollama client bound to the current asyncio event loop.

This property lazily creates or reuses an AsyncClient instance, automatically handling event loop changes and closures. It's safe to call across different async contexts (e.g., multiple pytest-asyncio tests) as it detects closed loops and recreates the client as needed.

Returns:

Type Description
AsyncClient

The async client instance used for asynchronous operations.

Examples:

  • Access the async client within an async context
    >>> import asyncio
    >>> from serapeum.ollama import Ollama      # type: ignore
    >>> llm = Ollama(model="llama3.1")
    >>> async def use_client():  # doctest: +SKIP
    ...     client = llm.async_client
    ...     response = await client.list()
    ...     return [m.model for m in response.models][:2]
    >>> asyncio.run(use_client())  # doctest: +SKIP, +ELLIPSIS
    ['...', '...']
    
See Also

_ensure_async_client: Ensures the client matches the active event loop. client: Synchronous Ollama client property.

client property #

Synchronous Ollama client lazily bound to base_url.

Returns:

Name Type Description
Client Client

Underlying Ollama client instance.

Examples:

  • Access the lazily-created sync client and inspect its host
    >>> from serapeum.ollama import Ollama      # type: ignore[attr-defined]
    >>> llm = Ollama(model="m", base_url="http://localhost:11434", timeout=1.0)
    >>> c = llm.client  # doctest: +SKIP, +ELLIPSIS
    >>> str(c._client.base_url)  # doctest: +SKIP, +ELLIPSIS
    'http://localhost:11434'
    

metadata property #

LLM metadata describing model capabilities and configuration.

Returns:

Name Type Description
Metadata Metadata

Static capabilities such as context window and chat support.

Examples:

  • Inspect model capabilities and configuration
    >>> from serapeum.ollama import Ollama      # type: ignore[attr-defined]
    >>> meta = Ollama(model="llama3.1").metadata
    >>> meta.model_name
    'llama3.1'
    >>> meta.is_chat_model
    True
    >>> meta.is_function_calling_model
    True
    >>> meta.context_window
    3900
    

achat(messages, *, stream=False, **kwargs) async #

achat(messages: MessageList | list[Message], *, stream: Literal[False] = ..., **kwargs: Any) -> ChatResponse
achat(messages: MessageList | list[Message], *, stream: Literal[True], **kwargs: Any) -> ChatResponseAsyncGen

Asynchronously send a chat request and return the assistant message.

Async variant of the chat method that sends messages to Ollama. When stream=False (default), waits for the complete response. When stream=True, returns an async generator yielding incremental chunks.

Parameters:

Name Type Description Default
messages MessageList | list[Message]

Sequence of chat messages forming the conversation context.

required
stream bool

If False (default), awaits the full response and returns a single ChatResponse. If True, returns an async generator yielding ChatResponse chunks with deltas.

False
**kwargs Any

Provider-specific overrides such as: - tools: List of tool specifications for function calling - format: Response format (e.g., "json")

{}

Returns:

Type Description
ChatResponse | ChatResponseAsyncGen

ChatResponse when stream=False, or ChatResponseAsyncGen when stream=True.

Examples:

  • Async non-streaming chat — explore the response
    >>> import asyncio
    >>> from serapeum.core.llms import Message, MessageRole, TextChunk
    >>> from serapeum.ollama import Ollama      # type: ignore
    >>> llm = Ollama(model="llama3.1", timeout=120)  # doctest: +SKIP
    >>> async def chat_example():  # doctest: +SKIP
    ...     response = await llm.achat([
    ...         Message(role=MessageRole.USER, chunks=[TextChunk(content="Say hello")])
    ...     ])
    ...     return response
    >>> resp = asyncio.run(chat_example())  # doctest: +SKIP, +ELLIPSIS
    >>> resp.message.role  # doctest: +SKIP
    <MessageRole.ASSISTANT: 'assistant'>
    >>> print("content:", resp.message.content)  # doctest: +SKIP, +ELLIPSIS
    content: ...
    
  • Async streaming chat — collect deltas
    >>> import asyncio
    >>> from serapeum.core.llms import Message, MessageRole, TextChunk
    >>> from serapeum.ollama import Ollama      # type: ignore
    >>> llm = Ollama(model="llama3.1", timeout=120)  # doctest: +SKIP
    >>> async def stream_example():  # doctest: +SKIP
    ...     deltas = []
    ...     async for chunk in await llm.achat(
    ...         [Message(role=MessageRole.USER, chunks=[TextChunk(content="Count to 3")])],
    ...         stream=True,
    ...     ):
    ...         deltas.append(chunk.delta)
    ...     return deltas
    >>> deltas = asyncio.run(stream_example())  # doctest: +SKIP, +ELLIPSIS
    >>> len(deltas) >= 1  # doctest: +SKIP
    True
    >>> print("text:", "".join(deltas))  # final accumulated text  # doctest: +SKIP, +ELLIPSIS
    text: ...
    
See Also

chat: Synchronous variant.

Source code in libs\providers\ollama\src\serapeum\ollama\llm.py
async def achat(
    self,
    messages: MessageList | list[Message],
    *,
    stream: bool = False,
    **kwargs: Any,
) -> ChatResponse | ChatResponseAsyncGen:
    """Asynchronously send a chat request and return the assistant message.

    Async variant of the chat method that sends messages to Ollama. When
    ``stream=False`` (default), waits for the complete response. When
    ``stream=True``, returns an async generator yielding incremental chunks.

    Args:
        messages: Sequence of chat messages forming the conversation context.
        stream (bool):
            If ``False`` (default), awaits the full response and returns a single
            ChatResponse. If ``True``, returns an async generator yielding
            ChatResponse chunks with deltas.
        **kwargs: Provider-specific overrides such as:
            - tools: List of tool specifications for function calling
            - format: Response format (e.g., "json")

    Returns:
        ChatResponse when ``stream=False``, or ChatResponseAsyncGen when ``stream=True``.

    Examples:
        - Async non-streaming chat — explore the response
            ```python
            >>> import asyncio
            >>> from serapeum.core.llms import Message, MessageRole, TextChunk
            >>> from serapeum.ollama import Ollama      # type: ignore
            >>> llm = Ollama(model="llama3.1", timeout=120)  # doctest: +SKIP
            >>> async def chat_example():  # doctest: +SKIP
            ...     response = await llm.achat([
            ...         Message(role=MessageRole.USER, chunks=[TextChunk(content="Say hello")])
            ...     ])
            ...     return response
            >>> resp = asyncio.run(chat_example())  # doctest: +SKIP, +ELLIPSIS
            >>> resp.message.role  # doctest: +SKIP
            <MessageRole.ASSISTANT: 'assistant'>
            >>> print("content:", resp.message.content)  # doctest: +SKIP, +ELLIPSIS
            content: ...

            ```
        - Async streaming chat — collect deltas
            ```python
            >>> import asyncio
            >>> from serapeum.core.llms import Message, MessageRole, TextChunk
            >>> from serapeum.ollama import Ollama      # type: ignore
            >>> llm = Ollama(model="llama3.1", timeout=120)  # doctest: +SKIP
            >>> async def stream_example():  # doctest: +SKIP
            ...     deltas = []
            ...     async for chunk in await llm.achat(
            ...         [Message(role=MessageRole.USER, chunks=[TextChunk(content="Count to 3")])],
            ...         stream=True,
            ...     ):
            ...         deltas.append(chunk.delta)
            ...     return deltas
            >>> deltas = asyncio.run(stream_example())  # doctest: +SKIP, +ELLIPSIS
            >>> len(deltas) >= 1  # doctest: +SKIP
            True
            >>> print("text:", "".join(deltas))  # final accumulated text  # doctest: +SKIP, +ELLIPSIS
            text: ...

            ```

    See Also:
        chat: Synchronous variant.
    """
    result = (
        await self._astream_chat(messages, **kwargs)
        if stream
        else await self._achat(messages, **kwargs)
    )
    return result

aparse(schema, prompt, llm_kwargs=None, *, stream=False, **prompt_args) async #

aparse(schema: type[BaseModel] | Callable[..., Any], prompt: PromptTemplate, llm_kwargs: dict[str, Any] | None = ..., *, stream: Literal[False] = ..., **prompt_args: Any) -> BaseModel
aparse(schema: type[BaseModel] | Callable[..., Any], prompt: PromptTemplate, llm_kwargs: dict[str, Any] | None = ..., *, stream: Literal[True], **prompt_args: Any) -> AsyncGenerator[BaseModel | list[BaseModel], None]

Asynchronously generate structured output conforming to a Pydantic model schema.

Async variant of parse. Instructs the Ollama model to emit JSON matching the schema of output_cls, then validates and parses the response into a Pydantic instance using the async chat interface.

When stream=True, returns an async generator that yields incrementally parsed Pydantic instances as the model streams JSON content, using StreamingObjectProcessor with flexible mode to handle incomplete JSON fragments.

Parameters:

Name Type Description Default
schema type[BaseModel] | Callable[..., Any]

Target Pydantic model class (or callable) defining the expected structure. A callable is accepted when routing through ToolOrchestratingLLM (non-DEFAULT modes).

required
prompt PromptTemplate

PromptTemplate that will be formatted with prompt_args to create messages.

required
llm_kwargs dict[str, Any] | None

Additional provider arguments passed to the achat method. Defaults to empty dict.

None
stream bool

If False (default), awaits the full response and returns a single validated instance. If True, returns an async generator that yields partially complete instances as JSON is streamed.

False
**prompt_args Any

Template variables used to format the prompt.

{}

Returns:

Type Description
BaseModel | AsyncGenerator[BaseModel | list[BaseModel], None]

A validated BaseModel instance when stream=False, or an

BaseModel | AsyncGenerator[BaseModel | list[BaseModel], None]

AsyncGenerator yielding BaseModel | list[BaseModel] when

BaseModel | AsyncGenerator[BaseModel | list[BaseModel], None]

stream=True.

Raises:

Type Description
ValidationError

If the model's response doesn't match the schema (non-streaming mode only).

Examples:

  • Async structured extraction — explore the parsed object

    >>> import asyncio
    >>> from pydantic import BaseModel
    >>> from serapeum.core.prompts import PromptTemplate
    >>> from serapeum.ollama import Ollama      # type: ignore
    >>> class City(BaseModel):
    ...     name: str
    ...     country: str
    >>> llm = Ollama(model="llama3.1", timeout=120)  # doctest: +SKIP
    >>> async def extract_city():  # doctest: +SKIP
    ...     prompt = PromptTemplate("Extract city: {text}")
    ...     return await llm.aparse(City, prompt, text="Paris is in France")
    >>> result = asyncio.run(extract_city())  # doctest: +SKIP, +ELLIPSIS
    >>> print("name:", result.name)  # doctest: +SKIP, +ELLIPSIS
    name: ...
    >>> print("country:", result.country)  # doctest: +SKIP, +ELLIPSIS
    country: ...
    >>> sorted(result.model_dump().keys())  # doctest: +SKIP
    ['country', 'name']
    

  • Async stream structured data and observe incremental fields

    >>> import asyncio
    >>> from pydantic import BaseModel
    >>> from serapeum.core.prompts import PromptTemplate
    >>> from serapeum.ollama import Ollama      # type: ignore
    >>> class Analysis(BaseModel):
    ...     sentiment: str
    ...     keywords: list[str]
    >>> llm = Ollama(model="llama3.1", timeout=120)  # doctest: +SKIP
    >>> async def stream_analysis():  # doctest: +SKIP
    ...     prompt = PromptTemplate("Analyze: {text}")
    ...     last = None
    ...     async for obj in await llm.aparse(
    ...         Analysis, prompt, stream=True, text="Great product!"
    ...     ):
    ...         last = obj
    ...     return last
    >>> last = asyncio.run(stream_analysis())  # doctest: +SKIP, +ELLIPSIS
    >>> print("sentiment:", last.sentiment)  # doctest: +SKIP, +ELLIPSIS
    sentiment: ...
    >>> len(last.keywords) >= 0  # doctest: +SKIP
    True
    

See Also

parse: Synchronous variant.

Source code in libs\providers\ollama\src\serapeum\ollama\llm.py
async def aparse(
    self,
    schema: type[BaseModel] | Callable[..., Any],
    prompt: PromptTemplate,
    llm_kwargs: dict[str, Any] | None = None,
    *,
    stream: bool = False,
    **prompt_args: Any,
) -> BaseModel | AsyncGenerator[BaseModel | list[BaseModel], None]:
    """Asynchronously generate structured output conforming to a Pydantic model schema.

    Async variant of parse. Instructs the Ollama model to emit JSON
    matching the schema of output_cls, then validates and parses the response
    into a Pydantic instance using the async chat interface.

    When ``stream=True``, returns an async generator that yields incrementally
    parsed Pydantic instances as the model streams JSON content, using
    StreamingObjectProcessor with flexible mode to handle incomplete JSON fragments.

    Args:
        schema: Target Pydantic model class (or callable) defining the expected
            structure. A callable is accepted when routing through
            ToolOrchestratingLLM (non-DEFAULT modes).
        prompt: PromptTemplate that will be formatted with prompt_args to create
            messages.
        llm_kwargs: Additional provider arguments passed to the achat method.
            Defaults to empty dict.
        stream: If ``False`` (default), awaits the full response and returns a
            single validated instance. If ``True``, returns an async generator
            that yields partially complete instances as JSON is streamed.
        **prompt_args: Template variables used to format the prompt.

    Returns:
        A validated ``BaseModel`` instance when ``stream=False``, or an
        ``AsyncGenerator`` yielding ``BaseModel | list[BaseModel]`` when
        ``stream=True``.

    Raises:
        ValidationError: If the model's response doesn't match the schema
            (non-streaming mode only).

    Examples:
        - Async structured extraction — explore the parsed object
            ```python
            >>> import asyncio
            >>> from pydantic import BaseModel
            >>> from serapeum.core.prompts import PromptTemplate
            >>> from serapeum.ollama import Ollama      # type: ignore
            >>> class City(BaseModel):
            ...     name: str
            ...     country: str
            >>> llm = Ollama(model="llama3.1", timeout=120)  # doctest: +SKIP
            >>> async def extract_city():  # doctest: +SKIP
            ...     prompt = PromptTemplate("Extract city: {text}")
            ...     return await llm.aparse(City, prompt, text="Paris is in France")
            >>> result = asyncio.run(extract_city())  # doctest: +SKIP, +ELLIPSIS
            >>> print("name:", result.name)  # doctest: +SKIP, +ELLIPSIS
            name: ...
            >>> print("country:", result.country)  # doctest: +SKIP, +ELLIPSIS
            country: ...
            >>> sorted(result.model_dump().keys())  # doctest: +SKIP
            ['country', 'name']

            ```

        - Async stream structured data and observe incremental fields
            ```python
            >>> import asyncio
            >>> from pydantic import BaseModel
            >>> from serapeum.core.prompts import PromptTemplate
            >>> from serapeum.ollama import Ollama      # type: ignore
            >>> class Analysis(BaseModel):
            ...     sentiment: str
            ...     keywords: list[str]
            >>> llm = Ollama(model="llama3.1", timeout=120)  # doctest: +SKIP
            >>> async def stream_analysis():  # doctest: +SKIP
            ...     prompt = PromptTemplate("Analyze: {text}")
            ...     last = None
            ...     async for obj in await llm.aparse(
            ...         Analysis, prompt, stream=True, text="Great product!"
            ...     ):
            ...         last = obj
            ...     return last
            >>> last = asyncio.run(stream_analysis())  # doctest: +SKIP, +ELLIPSIS
            >>> print("sentiment:", last.sentiment)  # doctest: +SKIP, +ELLIPSIS
            sentiment: ...
            >>> len(last.keywords) >= 0  # doctest: +SKIP
            True

            ```

    See Also:
        parse: Synchronous variant.
    """
    if self.structured_output_mode == StructuredOutputMode.DEFAULT:
        result = (
            self._astream_parse_default(schema, prompt, llm_kwargs, prompt_args)
            if stream
            else await self._aparse_default(schema, prompt, llm_kwargs, prompt_args)
        )
    else:
        result = (
            await super().astream_parse(schema, prompt, llm_kwargs, **prompt_args)  # type: ignore[return-value]
            if stream
            else await super().aparse(schema, prompt, llm_kwargs, **prompt_args)
        )
    return result

chat(messages, *, stream=False, **kwargs) #

chat(messages: MessageList | list[Message], *, stream: Literal[False] = ..., **kwargs: Any) -> ChatResponse
chat(messages: MessageList | list[Message], *, stream: Literal[True], **kwargs: Any) -> ChatResponseGen

Send a chat request to Ollama and return the assistant message.

Parameters:

Name Type Description Default
messages MessageList

Sequence of chat messages.

required
stream bool

If False (default), returns a single ChatResponse with the complete message. If True, returns a generator yielding incremental ChatResponse chunks with deltas.

False
**kwargs Any

Provider-specific overrides such as tools or format.

{}

Returns:

Type Description
ChatResponse | ChatResponseGen

ChatResponse when stream=False, or ChatResponseGen when stream=True.

Examples:

  • Non-streaming chat — explore the response message
    >>> from serapeum.core.llms import Message, MessageRole, TextChunk
    >>> from serapeum.ollama import Ollama  # type: ignore
    >>> llm = Ollama(model="llama3.1", timeout=120)
    >>> resp = llm.chat([  # doctest: +SKIP, +ELLIPSIS
    ...     Message(role=MessageRole.USER, chunks=[TextChunk(content="Say hi")])
    ... ])
    >>> resp.message.role  # doctest: +SKIP
    <MessageRole.ASSISTANT: 'assistant'>
    >>> print("content:", resp.message.content)  # doctest: +SKIP, +ELLIPSIS
    content: ...
    >>> print("model:", resp.raw.get("model"))  # raw provider metadata  # doctest: +SKIP, +ELLIPSIS
    model: ...
    
  • Streaming chat — collect deltas and see accumulated text
    >>> from serapeum.core.llms import Message, MessageRole, TextChunk
    >>> from serapeum.ollama import Ollama  # type: ignore
    >>> llm = Ollama(model="llama3.1", timeout=180)
    >>> chunks = list(llm.chat(  # doctest: +SKIP, +ELLIPSIS
    ...     [Message(role=MessageRole.USER, chunks=[TextChunk(content="Count to 3")])],
    ...     stream=True,
    ... ))
    >>> print("delta:", chunks[0].delta)  # first streamed token  # doctest: +SKIP, +ELLIPSIS
    delta: ...
    >>> print("final:", chunks[-1].message.content)  # final accumulated  # doctest: +SKIP, +ELLIPSIS
    final: ...
    
Source code in libs\providers\ollama\src\serapeum\ollama\llm.py
def chat(
    self,
    messages: MessageList | list[Message],
    *,
    stream: bool = False,
    **kwargs: Any,
) -> ChatResponse | ChatResponseGen:
    """Send a chat request to Ollama and return the assistant message.

    Args:
        messages (MessageList):
            Sequence of chat messages.
        stream (bool):
            If ``False`` (default), returns a single ChatResponse with the complete
            message. If ``True``, returns a generator yielding incremental ChatResponse
            chunks with deltas.
        **kwargs (Any):
            Provider-specific overrides such as ``tools`` or ``format``.

    Returns:
        ChatResponse when ``stream=False``, or ChatResponseGen when ``stream=True``.

    Examples:
        - Non-streaming chat — explore the response message
            ```python
            >>> from serapeum.core.llms import Message, MessageRole, TextChunk
            >>> from serapeum.ollama import Ollama  # type: ignore
            >>> llm = Ollama(model="llama3.1", timeout=120)
            >>> resp = llm.chat([  # doctest: +SKIP, +ELLIPSIS
            ...     Message(role=MessageRole.USER, chunks=[TextChunk(content="Say hi")])
            ... ])
            >>> resp.message.role  # doctest: +SKIP
            <MessageRole.ASSISTANT: 'assistant'>
            >>> print("content:", resp.message.content)  # doctest: +SKIP, +ELLIPSIS
            content: ...
            >>> print("model:", resp.raw.get("model"))  # raw provider metadata  # doctest: +SKIP, +ELLIPSIS
            model: ...

            ```
        - Streaming chat — collect deltas and see accumulated text
            ```python
            >>> from serapeum.core.llms import Message, MessageRole, TextChunk
            >>> from serapeum.ollama import Ollama  # type: ignore
            >>> llm = Ollama(model="llama3.1", timeout=180)
            >>> chunks = list(llm.chat(  # doctest: +SKIP, +ELLIPSIS
            ...     [Message(role=MessageRole.USER, chunks=[TextChunk(content="Count to 3")])],
            ...     stream=True,
            ... ))
            >>> print("delta:", chunks[0].delta)  # first streamed token  # doctest: +SKIP, +ELLIPSIS
            delta: ...
            >>> print("final:", chunks[-1].message.content)  # final accumulated  # doctest: +SKIP, +ELLIPSIS
            final: ...

            ```
    """
    result = (
        self._stream_chat(messages, **kwargs)
        if stream
        else self._chat(messages, **kwargs)
    )
    return result

class_name() classmethod #

Return the registered class name for this provider adapter.

Returns:

Name Type Description
str str

Provider identifier used in registries or logs.

Examples:

  • Retrieve the class identifier
    >>> from serapeum.ollama import Ollama      # type: ignore[attr-defined]
    >>> Ollama.class_name()
    'Ollama'
    
Source code in libs\providers\ollama\src\serapeum\ollama\llm.py
@classmethod
def class_name(cls) -> str:
    """Return the registered class name for this provider adapter.

    Returns:
        str: Provider identifier used in registries or logs.

    Examples:
        - Retrieve the class identifier
            ```python
            >>> from serapeum.ollama import Ollama      # type: ignore[attr-defined]
            >>> Ollama.class_name()
            'Ollama'

            ```
    """
    return "Ollama"

parse(schema, prompt, llm_kwargs=None, *, stream=False, **prompt_args) #

parse(schema: type[BaseModel] | Callable[..., Any], prompt: PromptTemplate, llm_kwargs: dict[str, Any] | None = ..., *, stream: Literal[False] = ..., **prompt_args: Any) -> BaseModel
parse(schema: type[BaseModel] | Callable[..., Any], prompt: PromptTemplate, llm_kwargs: dict[str, Any] | None = ..., *, stream: Literal[True], **prompt_args: Any) -> Generator[BaseModel | list[BaseModel], None, None]

Generate structured output conforming to a Pydantic model schema.

Instructs the Ollama model to emit JSON matching the schema of output_cls, then validates and parses the response into a Pydantic instance. When using StructuredOutputMode.DEFAULT, this injects the model's JSON schema into the format parameter and validates the response content.

When stream=True, yields incrementally parsed Pydantic instances as the model streams JSON content, using StreamingObjectProcessor with flexible mode to handle incomplete JSON fragments.

Parameters:

Name Type Description Default
schema type[BaseModel] | Callable[..., Any]

Target Pydantic model class (or callable) defining the expected structure. A callable is accepted when routing through ToolOrchestratingLLM (non-DEFAULT modes).

required
prompt PromptTemplate

PromptTemplate that will be formatted with prompt_args to create messages.

required
llm_kwargs dict[str, Any] | None

Additional provider arguments passed to the chat method. Defaults to empty dict.

None
stream bool

If False (default), returns a single validated instance after the full response is received. If True, returns a generator that yields partially complete instances as JSON is streamed.

False
**prompt_args Any

Template variables used to format the prompt.

{}

Returns:

Type Description
BaseModel | Generator[BaseModel | list[BaseModel], None, None]

A validated BaseModel instance when stream=False, or a

BaseModel | Generator[BaseModel | list[BaseModel], None, None]

Generator yielding BaseModel | list[BaseModel] when

BaseModel | Generator[BaseModel | list[BaseModel], None, None]

stream=True.

Raises:

Type Description
ValidationError

If the model's response doesn't match the schema (non-streaming mode only).

Examples:

  • Extract structured data and explore the parsed fields

    >>> import os
    >>> from pydantic import BaseModel, Field
    >>> from serapeum.core.prompts import PromptTemplate
    >>> from serapeum.ollama import Ollama      # type: ignore
    >>> class Person(BaseModel):
    ...     name: str = Field(description="Person's full name")
    ...     age: int = Field(description="Person's age in years")
    >>> llm = Ollama(model="llama3.1", timeout=120)     # doctest: +SKIP
    >>> prompt = PromptTemplate("Extract person info: {text}")  # doctest: +SKIP
    >>> result = llm.parse(  # doctest: +SKIP, +ELLIPSIS
    ...     Person,
    ...     prompt,
    ...     text="John Doe is 30 years old",
    ... )
    >>> print("name:", result.name)  # doctest: +SKIP, +ELLIPSIS
    name: ...
    >>> result.age >= 0  # age is a valid integer  # doctest: +SKIP
    True
    >>> sorted(result.model_dump().keys())  # doctest: +SKIP
    ['age', 'name']
    

  • Stream structured data and observe incremental updates

    >>> from pydantic import BaseModel
    >>> from serapeum.core.prompts import PromptTemplate
    >>> from serapeum.ollama import Ollama      # type: ignore
    >>> class Summary(BaseModel):
    ...     title: str
    ...     points: list[str]
    >>> llm = Ollama(model="llama3.1", timeout=120)     # doctest: +SKIP
    >>> prompt = PromptTemplate("Summarize: {text}")  # doctest: +SKIP
    >>> last = None  # doctest: +SKIP
    >>> for obj in llm.parse(  # doctest: +SKIP, +ELLIPSIS
    ...     Summary, prompt, stream=True, text="Long article about AI..."
    ... ):
    ...     last = obj
    >>> print("title:", last.title)  # final parsed title  # doctest: +SKIP, +ELLIPSIS
    title: ...
    >>> len(last.points) >= 0  # doctest: +SKIP
    True
    

See Also

aparse: Async variant (non-streaming).

Source code in libs\providers\ollama\src\serapeum\ollama\llm.py
def parse(
    self,
    schema: type[BaseModel] | Callable[..., Any],
    prompt: PromptTemplate,
    llm_kwargs: dict[str, Any] | None = None,
    *,
    stream: bool = False,
    **prompt_args: Any,
) -> BaseModel | Generator[BaseModel | list[BaseModel], None, None]:
    """Generate structured output conforming to a Pydantic model schema.

    Instructs the Ollama model to emit JSON matching the schema of output_cls,
    then validates and parses the response into a Pydantic instance. When using
    StructuredOutputMode.DEFAULT, this injects the model's JSON schema into the
    format parameter and validates the response content.

    When ``stream=True``, yields incrementally parsed Pydantic instances as the
    model streams JSON content, using StreamingObjectProcessor with flexible mode
    to handle incomplete JSON fragments.

    Args:
        schema: Target Pydantic model class (or callable) defining the expected
            structure. A callable is accepted when routing through
            ToolOrchestratingLLM (non-DEFAULT modes).
        prompt: PromptTemplate that will be formatted with prompt_args to create
            messages.
        llm_kwargs: Additional provider arguments passed to the chat method.
            Defaults to empty dict.
        stream: If ``False`` (default), returns a single validated instance after
            the full response is received. If ``True``, returns a generator that
            yields partially complete instances as JSON is streamed.
        **prompt_args: Template variables used to format the prompt.

    Returns:
        A validated ``BaseModel`` instance when ``stream=False``, or a
        ``Generator`` yielding ``BaseModel | list[BaseModel]`` when
        ``stream=True``.

    Raises:
        ValidationError: If the model's response doesn't match the schema
            (non-streaming mode only).

    Examples:
        - Extract structured data and explore the parsed fields
            ```python
            >>> import os
            >>> from pydantic import BaseModel, Field
            >>> from serapeum.core.prompts import PromptTemplate
            >>> from serapeum.ollama import Ollama      # type: ignore
            >>> class Person(BaseModel):
            ...     name: str = Field(description="Person's full name")
            ...     age: int = Field(description="Person's age in years")
            >>> llm = Ollama(model="llama3.1", timeout=120)     # doctest: +SKIP
            >>> prompt = PromptTemplate("Extract person info: {text}")  # doctest: +SKIP
            >>> result = llm.parse(  # doctest: +SKIP, +ELLIPSIS
            ...     Person,
            ...     prompt,
            ...     text="John Doe is 30 years old",
            ... )
            >>> print("name:", result.name)  # doctest: +SKIP, +ELLIPSIS
            name: ...
            >>> result.age >= 0  # age is a valid integer  # doctest: +SKIP
            True
            >>> sorted(result.model_dump().keys())  # doctest: +SKIP
            ['age', 'name']

            ```

        - Stream structured data and observe incremental updates
            ```python
            >>> from pydantic import BaseModel
            >>> from serapeum.core.prompts import PromptTemplate
            >>> from serapeum.ollama import Ollama      # type: ignore
            >>> class Summary(BaseModel):
            ...     title: str
            ...     points: list[str]
            >>> llm = Ollama(model="llama3.1", timeout=120)     # doctest: +SKIP
            >>> prompt = PromptTemplate("Summarize: {text}")  # doctest: +SKIP
            >>> last = None  # doctest: +SKIP
            >>> for obj in llm.parse(  # doctest: +SKIP, +ELLIPSIS
            ...     Summary, prompt, stream=True, text="Long article about AI..."
            ... ):
            ...     last = obj
            >>> print("title:", last.title)  # final parsed title  # doctest: +SKIP, +ELLIPSIS
            title: ...
            >>> len(last.points) >= 0  # doctest: +SKIP
            True

            ```

    See Also:
        aparse: Async variant (non-streaming).
    """
    if self.structured_output_mode == StructuredOutputMode.DEFAULT:
        result = (
            self._stream_parse_default(schema, prompt, llm_kwargs, prompt_args)
            if stream
            else self._parse_default(schema, prompt, llm_kwargs, prompt_args)
        )
    else:
        result = (
            super().stream_parse(schema, prompt, llm_kwargs, **prompt_args)  # type: ignore[return-value]
            if stream
            else super().parse(schema, prompt, llm_kwargs, **prompt_args)
        )
    return result

get_additional_kwargs(response, exclude) #

Filter out excluded keys from a response dictionary.

Parameters:

Name Type Description Default
response dict[str, Any]

Source dictionary, typically a raw provider response.

required
exclude Tuple[str, ...]

Keys that should be omitted from the returned mapping.

required

Returns:

Type Description
dict[str, Any]

dict[str, Any]: A new dictionary containing only entries whose keys are not present in exclude.

Examples:

  • Keep only non-excluded keys
    >>> from serapeum.ollama.llm import get_additional_kwargs  # type: ignore
    >>> get_additional_kwargs({"a": 1, "b": 2, "keep": 3}, ("a", "b"))
    {'keep': 3}
    
  • Return all keys when no exclusions are provided
    >>> get_additional_kwargs({"x": 10}, tuple())
    {'x': 10}
    
Source code in libs\providers\ollama\src\serapeum\ollama\llm.py
def get_additional_kwargs(
    response: dict[str, Any], exclude: tuple[str, ...]
) -> dict[str, Any]:
    """Filter out excluded keys from a response dictionary.

    Args:
        response (dict[str, Any]):
            Source dictionary, typically a raw provider response.
        exclude (Tuple[str, ...]):
            Keys that should be omitted from the returned mapping.

    Returns:
        dict[str, Any]:
            A new dictionary containing only entries whose keys are not present in ``exclude``.

    Examples:
        - Keep only non-excluded keys
            ```python
            >>> from serapeum.ollama.llm import get_additional_kwargs  # type: ignore
            >>> get_additional_kwargs({"a": 1, "b": 2, "keep": 3}, ("a", "b"))
            {'keep': 3}

            ```
        - Return all keys when no exclusions are provided
            ```python
            >>> get_additional_kwargs({"x": 10}, tuple())
            {'x': 10}

            ```
    """
    return {k: v for k, v in response.items() if k not in exclude}

embeddings module#

serapeum.ollama.embedding #

Ollama embeddings implementation for text and query vectorization.

This module provides the OllamaEmbedding class for generating embeddings using Ollama models. It supports both symmetric and asymmetric embedding patterns, allowing different instructions for queries vs. documents to optimize retrieval performance. All operations support both synchronous and asynchronous execution.

OllamaEmbedding #

Bases: Client, BaseEmbedding

Ollama-based embedding model for generating text and query vector representations.

Wraps the Ollama SDK embed API to produce dense float vectors from text. Inherits connection management from Client, which supplies base_url, api_key, and lazily-created sync/async SDK clients.

Local vs Ollama Cloud

Without api_key the class talks to a local Ollama server at http://localhost:11434. To switch to Ollama Cloud, set api_key — that is the only change required. When api_key is provided and base_url is still the local default, base_url is automatically switched to https://api.ollama.com; no manual URL update is needed. An explicit non-default base_url is always preserved so custom remote deployments are unaffected. api_key is excluded from model_dump() and model_dump_json() to prevent accidental credential leakage.

Lazy client initialisation

The underlying ollama.Client and ollama.AsyncClient instances are created on first access of the client / async_client properties, not at construction time. Pass pre-built SDK clients via the client= and async_client= constructor kwargs to inject mock objects in tests — they are intercepted before Pydantic validation and stored in private attributes.

Asymmetric embeddings

Set query_instruction and text_instruction to apply different prefixes when embedding queries versus documents, which can significantly improve retrieval accuracy for models that support asymmetric representations (e.g., nomic-embed-text, mxbai-embed-large).

Attributes:

Name Type Description
model_name str

The Ollama model to use for embeddings (e.g., "nomic-embed-text").

base_url str

Base URL where the Ollama server is hosted. Defaults to "http://localhost:11434". Automatically switched to https://api.ollama.com when api_key is provided.

api_key str | None

The single switch between local and cloud. When None (default), requests go to the local Ollama server. When set, requests are routed to Ollama Cloud and base_url is automatically updated. Excluded from model_dump() / model_dump_json() — use environment variables or a secrets manager rather than persisting the serialised model.

ollama_additional_kwargs dict[str, Any]

Extra options forwarded to the Ollama embed API (e.g., {"mirostat": 1}). Defaults to {}.

query_instruction str | None

Instruction prefix prepended to search queries before embedding (e.g., "search_query:"). Helps models distinguish query embeddings from document embeddings for asymmetric retrieval.

text_instruction str | None

Instruction prefix prepended to documents before embedding (e.g., "search_document:"). Paired with query_instruction for asymmetric embedding patterns.

keep_alive float | str | None

How long to keep the model loaded in memory after a request. Accepts a duration string (e.g., "5m", "1h") or a float in seconds. Defaults to "5m".

client_kwargs dict[str, Any]

Additional keyword arguments forwarded to the Ollama client constructor (merged with the base kwargs built from base_url and api_key). Custom headers take precedence over the Authorization header generated from api_key.

client Client

Pre-built ollama.Client injected for testing. Intercepted before Pydantic validation; the client property returns this object on first access without creating a new one.

async_client AsyncClient

Pre-built ollama.AsyncClient injected for testing. Works the same way as the client parameter.

Examples:

  • Embed text and explore the resulting vector
    >>> from serapeum.ollama import OllamaEmbedding  # type: ignore
    >>> embedder = OllamaEmbedding(model_name="nomic-embed-text")
    >>> embedding = embedder.get_text_embedding("Hello world")  # doctest: +SKIP, +ELLIPSIS
    >>> embedding[:3]  # doctest: +SKIP, +ELLIPSIS
    [...]
    >>> len(embedding) >= 1  # doctest: +SKIP
    True
    
  • Connect to Ollama Cloud with an API key (base_url auto-switches)
    >>> from serapeum.ollama import OllamaEmbedding  # type: ignore
    >>> from serapeum.ollama.client import OLLAMA_CLOUD_BASE_URL
    >>> embedder = OllamaEmbedding(
    ...     model_name="nomic-embed-text",
    ...     api_key="sk-my-ollama-key",
    ... )
    >>> embedder.base_url
    'https://api.ollama.com'
    >>> embedder.base_url == OLLAMA_CLOUD_BASE_URL
    True
    
  • Verify api_key is excluded from serialisation (never leaked to logs/disk)
    >>> from serapeum.ollama import OllamaEmbedding  # type: ignore
    >>> embedder = OllamaEmbedding(
    ...     model_name="nomic-embed-text",
    ...     api_key="sk-secret",
    ... )
    >>> dumped = embedder.model_dump()
    >>> "api_key" in dumped
    False
    >>> dumped["model_name"]
    'nomic-embed-text'
    
  • Configure asymmetric instructions and inspect how queries/documents are formatted
    >>> from serapeum.ollama import OllamaEmbedding  # type: ignore
    >>> embedder = OllamaEmbedding(
    ...     model_name="nomic-embed-text",
    ...     query_instruction="search_query:",
    ...     text_instruction="search_document:",
    ... )
    >>> embedder._format_query("What is Python?")
    'search_query: What is Python?'
    >>> embedder._format_text("Python is a programming language")
    'search_document: Python is a programming language'
    
  • Asymmetric embeddings for retrieval (query vs. document)
    >>> from serapeum.ollama import OllamaEmbedding  # type: ignore
    >>> embedder = OllamaEmbedding(  # doctest: +SKIP
    ...     model_name="nomic-embed-text",
    ...     query_instruction="search_query:",
    ...     text_instruction="search_document:",
    ... )
    >>> query_vec = embedder.get_query_embedding("What is Python?")    # doctest: +SKIP, +ELLIPSIS
    >>> doc_vec = embedder.get_text_embedding("Python is a language")  # doctest: +SKIP, +ELLIPSIS
    >>> query_vec[:3]  # doctest: +SKIP, +ELLIPSIS
    [...]
    >>> doc_vec[:3]  # doctest: +SKIP, +ELLIPSIS
    [...]
    >>> len(query_vec) == len(doc_vec)  # both share the same dimensionality  # doctest: +SKIP
    True
    
  • Batch embed multiple documents and inspect results
    >>> from serapeum.ollama import OllamaEmbedding  # type: ignore
    >>> embedder = OllamaEmbedding(model_name="nomic-embed-text")  # doctest: +SKIP
    >>> docs = ["First document", "Second document", "Third document"]
    >>> embeddings = embedder.get_text_embedding_batch(docs)  # doctest: +SKIP, +ELLIPSIS
    >>> len(embeddings)  # one vector per document  # doctest: +SKIP
    3
    >>> len(embeddings[0]) >= 1  # doctest: +SKIP
    True
    >>> embeddings[0][:3]  # doctest: +SKIP, +ELLIPSIS
    [...]
    
  • Async batch embedding with result exploration
    >>> import asyncio
    >>> from serapeum.ollama import OllamaEmbedding  # type: ignore
    >>> embedder = OllamaEmbedding(model_name="nomic-embed-text")  # doctest: +SKIP
    >>> async def embed_batch():  # doctest: +SKIP
    ...     docs = ["Doc 1", "Doc 2", "Doc 3"]
    ...     return await embedder.aget_text_embedding_batch(docs)
    >>> vecs = asyncio.run(embed_batch())  # doctest: +SKIP, +ELLIPSIS
    >>> len(vecs)  # one vector per document  # doctest: +SKIP
    3
    >>> vecs[0][:3]  # doctest: +SKIP, +ELLIPSIS
    [...]
    
  • List available models and find embedding-capable ones
    >>> from serapeum.ollama import OllamaEmbedding  # type: ignore
    >>> embedder = OllamaEmbedding(model_name="nomic-embed-text")
    >>> models = embedder.list_models()  # doctest: +SKIP, +ELLIPSIS
    >>> [m for m in models if "embed" in m][:1]  # doctest: +SKIP, +ELLIPSIS
    ['...']
    
See Also

Ollama: Chat / completion LLM from the same Ollama provider. Client: Shared connection mixin (base_url, api_key, lazy clients). get_text_embedding: Embed a single document string. get_query_embedding: Embed a query string with optional instruction prefix. list_models: List all models available on the connected Ollama server. alist_models: Async variant of list_models.

Source code in libs\providers\ollama\src\serapeum\ollama\embedding.py
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
class OllamaEmbedding(Client, BaseEmbedding):  # type: ignore[misc]
    """Ollama-based embedding model for generating text and query vector representations.

    Wraps the Ollama SDK embed API to produce dense float vectors from text. Inherits
    connection management from ``Client``, which supplies ``base_url``,
    ``api_key``, and lazily-created sync/async SDK clients.

    **Local vs Ollama Cloud**

    Without ``api_key`` the class talks to a local Ollama server at
    ``http://localhost:11434``. **To switch to Ollama Cloud, set** ``api_key``
    **— that is the only change required.** When ``api_key`` is provided and
    ``base_url`` is still the local default, ``base_url`` is automatically
    switched to ``https://api.ollama.com``; no manual URL update is needed.
    An explicit non-default ``base_url`` is always preserved so custom remote
    deployments are unaffected. ``api_key`` is excluded from ``model_dump()``
    and ``model_dump_json()`` to prevent accidental credential leakage.

    **Lazy client initialisation**

    The underlying ``ollama.Client`` and ``ollama.AsyncClient`` instances are created
    on first access of the ``client`` / ``async_client`` properties, not at
    construction time. Pass pre-built SDK clients via the ``client=`` and
    ``async_client=`` constructor kwargs to inject mock objects in tests — they are
    intercepted before Pydantic validation and stored in private attributes.

    **Asymmetric embeddings**

    Set ``query_instruction`` and ``text_instruction`` to apply different prefixes when
    embedding queries versus documents, which can significantly improve retrieval
    accuracy for models that support asymmetric representations (e.g., nomic-embed-text,
    mxbai-embed-large).

    Attributes:
        model_name: The Ollama model to use for embeddings (e.g., ``"nomic-embed-text"``).
        base_url: Base URL where the Ollama server is hosted. Defaults to
            ``"http://localhost:11434"``. Automatically switched to
            ``https://api.ollama.com`` when ``api_key`` is provided.
        api_key: The single switch between local and cloud. When ``None``
            (default), requests go to the local Ollama server. When set,
            requests are routed to Ollama Cloud and ``base_url`` is
            automatically updated. **Excluded from** ``model_dump()`` /
            ``model_dump_json()`` — use environment variables or a secrets
            manager rather than persisting the serialised model.
        ollama_additional_kwargs: Extra options forwarded to the Ollama ``embed`` API
            (e.g., ``{"mirostat": 1}``). Defaults to ``{}``.
        query_instruction: Instruction prefix prepended to search queries before
            embedding (e.g., ``"search_query:"``). Helps models distinguish query
            embeddings from document embeddings for asymmetric retrieval.
        text_instruction: Instruction prefix prepended to documents before embedding
            (e.g., ``"search_document:"``). Paired with ``query_instruction`` for
            asymmetric embedding patterns.
        keep_alive: How long to keep the model loaded in memory after a request.
            Accepts a duration string (e.g., ``"5m"``, ``"1h"``) or a float in
            seconds. Defaults to ``"5m"``.
        client_kwargs: Additional keyword arguments forwarded to the Ollama client
            constructor (merged with the base kwargs built from ``base_url`` and
            ``api_key``). Custom headers take precedence over the ``Authorization``
            header generated from ``api_key``.
        client: Pre-built ``ollama.Client`` injected for testing. Intercepted before
            Pydantic validation; the ``client`` property returns this object on first
            access without creating a new one.
        async_client: Pre-built ``ollama.AsyncClient`` injected for testing. Works
            the same way as the ``client`` parameter.

    Examples:
        - Embed text and explore the resulting vector
            ```python
            >>> from serapeum.ollama import OllamaEmbedding  # type: ignore
            >>> embedder = OllamaEmbedding(model_name="nomic-embed-text")
            >>> embedding = embedder.get_text_embedding("Hello world")  # doctest: +SKIP, +ELLIPSIS
            >>> embedding[:3]  # doctest: +SKIP, +ELLIPSIS
            [...]
            >>> len(embedding) >= 1  # doctest: +SKIP
            True

            ```
        - Connect to Ollama Cloud with an API key (base_url auto-switches)
            ```python
            >>> from serapeum.ollama import OllamaEmbedding  # type: ignore
            >>> from serapeum.ollama.client import OLLAMA_CLOUD_BASE_URL
            >>> embedder = OllamaEmbedding(
            ...     model_name="nomic-embed-text",
            ...     api_key="sk-my-ollama-key",
            ... )
            >>> embedder.base_url
            'https://api.ollama.com'
            >>> embedder.base_url == OLLAMA_CLOUD_BASE_URL
            True

            ```
        - Verify api_key is excluded from serialisation (never leaked to logs/disk)
            ```python
            >>> from serapeum.ollama import OllamaEmbedding  # type: ignore
            >>> embedder = OllamaEmbedding(
            ...     model_name="nomic-embed-text",
            ...     api_key="sk-secret",
            ... )
            >>> dumped = embedder.model_dump()
            >>> "api_key" in dumped
            False
            >>> dumped["model_name"]
            'nomic-embed-text'

            ```
        - Configure asymmetric instructions and inspect how queries/documents are formatted
            ```python
            >>> from serapeum.ollama import OllamaEmbedding  # type: ignore
            >>> embedder = OllamaEmbedding(
            ...     model_name="nomic-embed-text",
            ...     query_instruction="search_query:",
            ...     text_instruction="search_document:",
            ... )
            >>> embedder._format_query("What is Python?")
            'search_query: What is Python?'
            >>> embedder._format_text("Python is a programming language")
            'search_document: Python is a programming language'

            ```
        - Asymmetric embeddings for retrieval (query vs. document)
            ```python
            >>> from serapeum.ollama import OllamaEmbedding  # type: ignore
            >>> embedder = OllamaEmbedding(  # doctest: +SKIP
            ...     model_name="nomic-embed-text",
            ...     query_instruction="search_query:",
            ...     text_instruction="search_document:",
            ... )
            >>> query_vec = embedder.get_query_embedding("What is Python?")    # doctest: +SKIP, +ELLIPSIS
            >>> doc_vec = embedder.get_text_embedding("Python is a language")  # doctest: +SKIP, +ELLIPSIS
            >>> query_vec[:3]  # doctest: +SKIP, +ELLIPSIS
            [...]
            >>> doc_vec[:3]  # doctest: +SKIP, +ELLIPSIS
            [...]
            >>> len(query_vec) == len(doc_vec)  # both share the same dimensionality  # doctest: +SKIP
            True

            ```
        - Batch embed multiple documents and inspect results
            ```python
            >>> from serapeum.ollama import OllamaEmbedding  # type: ignore
            >>> embedder = OllamaEmbedding(model_name="nomic-embed-text")  # doctest: +SKIP
            >>> docs = ["First document", "Second document", "Third document"]
            >>> embeddings = embedder.get_text_embedding_batch(docs)  # doctest: +SKIP, +ELLIPSIS
            >>> len(embeddings)  # one vector per document  # doctest: +SKIP
            3
            >>> len(embeddings[0]) >= 1  # doctest: +SKIP
            True
            >>> embeddings[0][:3]  # doctest: +SKIP, +ELLIPSIS
            [...]

            ```
        - Async batch embedding with result exploration
            ```python
            >>> import asyncio
            >>> from serapeum.ollama import OllamaEmbedding  # type: ignore
            >>> embedder = OllamaEmbedding(model_name="nomic-embed-text")  # doctest: +SKIP
            >>> async def embed_batch():  # doctest: +SKIP
            ...     docs = ["Doc 1", "Doc 2", "Doc 3"]
            ...     return await embedder.aget_text_embedding_batch(docs)
            >>> vecs = asyncio.run(embed_batch())  # doctest: +SKIP, +ELLIPSIS
            >>> len(vecs)  # one vector per document  # doctest: +SKIP
            3
            >>> vecs[0][:3]  # doctest: +SKIP, +ELLIPSIS
            [...]

            ```
        - List available models and find embedding-capable ones
            ```python
            >>> from serapeum.ollama import OllamaEmbedding  # type: ignore
            >>> embedder = OllamaEmbedding(model_name="nomic-embed-text")
            >>> models = embedder.list_models()  # doctest: +SKIP, +ELLIPSIS
            >>> [m for m in models if "embed" in m][:1]  # doctest: +SKIP, +ELLIPSIS
            ['...']

            ```

    See Also:
        Ollama: Chat / completion LLM from the same Ollama provider.
        Client: Shared connection mixin (base_url, api_key, lazy clients).
        get_text_embedding: Embed a single document string.
        get_query_embedding: Embed a query string with optional instruction prefix.
        list_models: List all models available on the connected Ollama server.
        alist_models: Async variant of ``list_models``.
    """

    model_name: str = Field(description="The Ollama model to use.")
    ollama_additional_kwargs: dict[str, Any] = Field(
        default_factory=dict, description="Additional kwargs for the Ollama API."
    )
    query_instruction: str | None = Field(
        default=None,
        description=(
            "Instruction to prepend to search queries for asymmetric embedding. "
            "Used by get_query_embedding() when embedding user questions/searches. "
            "Example: 'search_query:' or 'Represent this query for retrieving relevant documents:'. "
            "This helps the model optimize query embeddings to match against document embeddings."
        ),
    )
    text_instruction: str | None = Field(
        default=None,
        description=(
            "Instruction to prepend to documents/text for asymmetric embedding. "
            "Used by get_text_embedding() when embedding documents to be searched. "
            "Example: 'search_document:' or 'Represent this document for retrieval:'. "
            "This helps the model create document embeddings optimized for retrieval."
        ),
    )
    keep_alive: float | str | None = Field(
        default="5m",
        description="controls how long the model will stay loaded into memory following the request(default: 5m)",
    )
    client_kwargs: dict[str, Any] = Field(
        default_factory=dict,
        description="Additional kwargs for the Ollama client initialization.",
    )

    def _build_client_kwargs(self) -> dict[str, Any]:
        """Extend base client kwargs with any extra client_kwargs for the embedding client.

        Headers are merged rather than replaced so that an Authorization header
        from ``api_key`` is preserved alongside any custom headers in ``client_kwargs``.
        Custom headers in ``client_kwargs`` take precedence in case of key conflicts.
        """
        base = super()._build_client_kwargs()
        extra = dict(self.client_kwargs)
        if "headers" in extra and "headers" in base:
            extra["headers"] = {**base.pop("headers"), **extra["headers"]}
        return {**base, **extra}

    @classmethod
    def class_name(cls) -> str:
        """Return the canonical class name for this embedding implementation.

        Returns:
            The string "OllamaEmbedding".

        Examples:
            - Get the class name identifier
                ```python
                >>> from serapeum.ollama import OllamaEmbedding     # type: ignore
                >>> OllamaEmbedding.class_name()
                'OllamaEmbedding'

                ```
        """
        return "OllamaEmbedding"

    def _get_query_embedding(self, query: str) -> list[float]:
        """Generate an embedding vector for a search query.

        Formats the query with the optional query_instruction prefix (if configured)
        to optimize the embedding for search/retrieval tasks, then generates the
        embedding vector using the Ollama model.

        Args:
            query: The search query text to embed.

        Returns:
            A sequence of floats representing the query's embedding vector.

        Raises:
            ValueError: If the query is empty or whitespace-only.

        Examples:
            - Embed a search query and inspect the vector
                ```python
                >>> from serapeum.ollama import OllamaEmbedding     # type: ignore
                >>> embedder = OllamaEmbedding(  # doctest: +SKIP
                ...     model_name="nomic-embed-text",
                ...     query_instruction="search_query:"
                ... )
                >>> query_vec = embedder.get_query_embedding("What is machine learning?")  # doctest: +SKIP, +ELLIPSIS
                >>> query_vec[:3]  # first three dimensions  # doctest: +SKIP, +ELLIPSIS
                [...]
                >>> len(query_vec) >= 1  # doctest: +SKIP
                True

                ```

        See Also:
            _aget_query_embedding: Async version of this method.
            _format_query: Formats query with instruction prefix.
        """
        formatted_query = self._format_query(query)
        return self._embed_raw(formatted_query)

    async def _aget_query_embedding(self, query: str) -> list[float]:
        """Asynchronously generate an embedding vector for a search query.

        Async version of _get_query_embedding. Formats the query with the optional
        query_instruction prefix, then generates the embedding using async Ollama client.

        Args:
            query: The search query text to embed.

        Returns:
            A sequence of floats representing the query's embedding vector.

        Raises:
            ValueError: If the query is empty or whitespace-only.

        Examples:
            - Async query embedding with vector exploration
                ```python
                >>> import asyncio
                >>> from serapeum.ollama import OllamaEmbedding     # type: ignore
                >>> embedder = OllamaEmbedding(model_name="nomic-embed-text")  # doctest: +SKIP
                >>> async def embed_query():  # doctest: +SKIP
                ...     return await embedder.aget_query_embedding("neural networks")
                >>> vec = asyncio.run(embed_query())  # doctest: +SKIP, +ELLIPSIS
                >>> vec[:3]  # doctest: +SKIP, +ELLIPSIS
                [...]
                >>> len(vec) >= 1  # doctest: +SKIP
                True

                ```

        See Also:
            _get_query_embedding: Synchronous version of this method.
            _format_query: Formats query with instruction prefix.
        """
        formatted_query = self._format_query(query)
        return await self._a_embed_raw(formatted_query)

    def _get_text_embedding(self, text: str) -> list[float]:
        """Generate an embedding vector for a document or text passage.

        Formats the text with the optional text_instruction prefix (if configured)
        to optimize the embedding for document retrieval, then generates the
        embedding vector using the Ollama model.

        Args:
            text: The document or text passage to embed.

        Returns:
            A sequence of floats representing the text's embedding vector.

        Raises:
            ValueError: If the text is empty or whitespace-only.

        Examples:
            - Embed a document and inspect the resulting vector
                ```python
                >>> from serapeum.ollama import OllamaEmbedding     # type: ignore
                >>> embedder = OllamaEmbedding(  # doctest: +SKIP
                ...     model_name="nomic-embed-text",
                ...     text_instruction="search_document:"
                ... )
                >>> doc_vec = embedder.get_text_embedding("Python is a programming language")  # doctest: +SKIP, +ELLIPSIS
                >>> doc_vec[:3]  # doctest: +SKIP, +ELLIPSIS
                [...]
                >>> len(doc_vec) >= 1  # doctest: +SKIP
                True

                ```

        See Also:
            _aget_text_embedding: Async version of this method.
            _format_text: Formats text with instruction prefix.
        """
        formatted_text = self._format_text(text)
        return self._embed_raw(formatted_text)

    async def _aget_text_embedding(self, text: str) -> list[float]:
        """Asynchronously generate an embedding vector for a document or text passage.

        Async version of _get_text_embedding. Formats the text with the optional
        text_instruction prefix, then generates the embedding using async Ollama client.

        Args:
            text: The document or text passage to embed.

        Returns:
            A sequence of floats representing the text's embedding vector.

        Raises:
            ValueError: If the text is empty or whitespace-only.

        Examples:
            - Async document embedding with vector exploration
                ```python
                >>> import asyncio
                >>> from serapeum.ollama import OllamaEmbedding     # type: ignore
                >>> embedder = OllamaEmbedding(model_name="nomic-embed-text")  # doctest: +SKIP
                >>> async def embed_doc():  # doctest: +SKIP
                ...     return await embedder.aget_text_embedding("Machine learning basics")
                >>> vec = asyncio.run(embed_doc())  # doctest: +SKIP, +ELLIPSIS
                >>> vec[:3]  # doctest: +SKIP, +ELLIPSIS
                [...]
                >>> len(vec) >= 1  # doctest: +SKIP
                True

                ```

        See Also:
            _get_text_embedding: Synchronous version of this method.
            _format_text: Formats text with instruction prefix.
        """
        formatted_text = self._format_text(text)
        return await self._a_embed_raw(formatted_text)

    def _get_text_embeddings(self, texts: list[str]) -> list[list[float]]:
        """Generate embedding vectors for multiple documents or text passages.

        Batch version of _get_text_embedding. Formats all texts with the optional
        text_instruction prefix, then generates embeddings for all texts in a single
        API call for efficiency.

        Args:
            texts: List of documents or text passages to embed.

        Returns:
            A sequence of embedding vectors, one for each input text, in the same order.

        Raises:
            ValueError: If any text is empty or whitespace-only.

        Examples:
            - Batch embed multiple documents and explore per-document vectors
                ```python
                >>> from serapeum.ollama import OllamaEmbedding     # type: ignore
                >>> embedder = OllamaEmbedding(model_name="nomic-embed-text")  # doctest: +SKIP
                >>> docs = ["First document", "Second document", "Third document"]  # doctest: +SKIP
                >>> embeddings = embedder._get_text_embeddings(docs)  # doctest: +SKIP, +ELLIPSIS
                >>> len(embeddings)  # one vector per input document  # doctest: +SKIP
                3
                >>> len(embeddings[0]) >= 1  # doctest: +SKIP
                True
                >>> embeddings[0][:3]  # first three floats of the first vector  # doctest: +SKIP, +ELLIPSIS
                [...]

                ```

        See Also:
            _aget_text_embeddings: Async version of this method.
            _get_text_embedding: Single text version.
        """
        formatted_texts = [self._format_text(text) for text in texts]
        return self._embed_batch_raw(formatted_texts)

    async def _aget_text_embeddings(self, texts: list[str]) -> list[list[float]]:
        """Asynchronously generate embedding vectors for multiple documents or text passages.

        Async batch version of _get_text_embedding. Formats all texts with the optional
        text_instruction prefix, then generates all embeddings in a single async API call.

        Args:
            texts: List of documents or text passages to embed.

        Returns:
            A sequence of embedding vectors, one for each input text, in the same order.

        Raises:
            ValueError: If any text is empty or whitespace-only.

        Examples:
            - Async batch embedding with result exploration
                ```python
                >>> import asyncio
                >>> from serapeum.ollama import OllamaEmbedding     # type: ignore
                >>> embedder = OllamaEmbedding(model_name="nomic-embed-text")  # doctest: +SKIP
                >>> async def batch_embed():  # doctest: +SKIP
                ...     docs = ["Doc 1", "Doc 2", "Doc 3"]
                ...     return await embedder._aget_text_embeddings(docs)
                >>> vecs = asyncio.run(batch_embed())  # doctest: +SKIP, +ELLIPSIS
                >>> len(vecs)  # one vector per document  # doctest: +SKIP
                3
                >>> vecs[0][:3]  # doctest: +SKIP, +ELLIPSIS
                [...]

                ```

        See Also:
            _get_text_embeddings: Synchronous version of this method.
            _aget_text_embedding: Single text async version.
        """
        formatted_texts = [self._format_text(text) for text in texts]
        return await self._a_embed_batch_raw(formatted_texts)

    def _embed_batch_raw(self, texts: list[str]) -> list[list[float]]:
        """Generate raw embeddings for multiple texts using the Ollama API.

        Low-level private method that directly calls the Ollama embed API without any
        text formatting or instruction prefixes. Used internally by higher-level
        methods after text formatting is applied.

        Args:
            texts: List of text strings to embed (should already be formatted).

        Returns:
            A sequence of embedding vectors from the Ollama model.

        See Also:
            _a_embed_batch_raw: Async version of this method.
            _embed_raw: Single text version.
        """
        result = self.client.embed(
            model=self.model_name,
            input=texts,
            options=self.ollama_additional_kwargs,
            keep_alive=self.keep_alive,
        )
        return result.embeddings  # type: ignore[no-any-return]

    async def _a_embed_batch_raw(self, texts: list[str]) -> list[list[float]]:
        """Asynchronously generate raw embeddings for multiple texts using the Ollama API.

        Async low-level private method that directly calls the Ollama embed API without any
        text formatting or instruction prefixes. Used internally by higher-level
        async methods after text formatting is applied.

        Args:
            texts: List of text strings to embed (should already be formatted).

        Returns:
            A sequence of embedding vectors from the Ollama model.

        See Also:
            _embed_batch_raw: Synchronous version of this method.
            _a_embed_raw: Single text async version.
        """
        result = await self.async_client.embed(
            model=self.model_name,
            input=texts,
            options=self.ollama_additional_kwargs,
            keep_alive=self.keep_alive,
        )
        return result.embeddings  # type: ignore[no-any-return]

    def _embed_raw(self, text: str) -> list[float]:
        """Generate a raw embedding for a single text using the Ollama API.

        Low-level private method that directly calls the Ollama embed API without any
        text formatting or instruction prefixes. Used internally by higher-level
        methods after text formatting is applied. Returns the first embedding
        from the API response.

        Args:
            text: The text string to embed (should already be formatted).

        Returns:
            An embedding vector from the Ollama model.

        See Also:
            _a_embed_raw: Async version of this method.
            _embed_batch_raw: Batch version.
        """
        result = self.client.embed(
            model=self.model_name,
            input=text,
            options=self.ollama_additional_kwargs,
            keep_alive=self.keep_alive,
        )
        return result.embeddings[0]

    async def _a_embed_raw(self, text: str) -> Sequence[float]:
        """Asynchronously generate a raw embedding for a single text using the Ollama API.

        Async low-level private method that directly calls the Ollama embed API without any
        text formatting or instruction prefixes. Used internally by higher-level
        async methods after text formatting is applied. Returns the first embedding
        from the API response.

        Args:
            text: The text string to embed (should already be formatted).

        Returns:
            An embedding vector from the Ollama model.

        See Also:
            _embed_raw: Synchronous version of this method.
            _a_embed_batch_raw: Batch async version.
        """
        result = await self.async_client.embed(
            model=self.model_name,
            input=text,
            options=self.ollama_additional_kwargs,
            keep_alive=self.keep_alive,
        )
        return result.embeddings[0]

    def _format_query(self, query: str) -> str:
        """Format query with instruction if provided.

        Strips whitespace from the query and prepends the ``query_instruction``
        prefix when configured. Used internally before passing text to the
        Ollama embed API.

        Args:
            query: The query string to format.

        Returns:
            Formatted query string with optional instruction prefix.

        Raises:
            ValueError: If query is empty or whitespace-only after stripping.

        Examples:
            - Format a query with an instruction prefix
                ```python
                >>> from serapeum.ollama import OllamaEmbedding  # type: ignore
                >>> embedder = OllamaEmbedding(
                ...     model_name="nomic-embed-text",
                ...     query_instruction="search_query:",
                ... )
                >>> embedder._format_query("What is Python?")
                'search_query: What is Python?'

                ```
            - Format without an instruction prefix (returns stripped query)
                ```python
                >>> from serapeum.ollama import OllamaEmbedding  # type: ignore
                >>> embedder = OllamaEmbedding(model_name="nomic-embed-text")
                >>> embedder._format_query("  What is Python?  ")
                'What is Python?'

                ```
            - Empty query raises ValueError
                ```python
                >>> from serapeum.ollama import OllamaEmbedding  # type: ignore
                >>> embedder = OllamaEmbedding(model_name="nomic-embed-text")
                >>> embedder._format_query("   ")
                Traceback (most recent call last):
                    ...
                ValueError: Cannot embed empty or whitespace-only query. Query becomes empty after stripping whitespace.

                ```
        """
        stripped_query = query.strip()

        if not stripped_query:
            raise ValueError(
                "Cannot embed empty or whitespace-only query. "
                "Query becomes empty after stripping whitespace."
            )

        if self.query_instruction:
            return f"{self.query_instruction.strip()} {stripped_query}"
        return stripped_query

    def _format_text(self, text: str) -> str:
        """Format text with instruction if provided.

        Strips whitespace from the text and prepends the ``text_instruction``
        prefix when configured. Used internally before passing text to the
        Ollama embed API.

        Args:
            text: The text string to format.

        Returns:
            Formatted text string with optional instruction prefix.

        Raises:
            ValueError: If text is empty or whitespace-only after stripping.

        Examples:
            - Format a document with an instruction prefix
                ```python
                >>> from serapeum.ollama import OllamaEmbedding  # type: ignore
                >>> embedder = OllamaEmbedding(
                ...     model_name="nomic-embed-text",
                ...     text_instruction="search_document:",
                ... )
                >>> embedder._format_text("Python is a programming language")
                'search_document: Python is a programming language'

                ```
            - Format without an instruction prefix (returns stripped text)
                ```python
                >>> from serapeum.ollama import OllamaEmbedding  # type: ignore
                >>> embedder = OllamaEmbedding(model_name="nomic-embed-text")
                >>> embedder._format_text("  Python is great  ")
                'Python is great'

                ```
            - Empty text raises ValueError
                ```python
                >>> from serapeum.ollama import OllamaEmbedding  # type: ignore
                >>> embedder = OllamaEmbedding(model_name="nomic-embed-text")
                >>> embedder._format_text("")
                Traceback (most recent call last):
                    ...
                ValueError: Cannot embed empty or whitespace-only text. Text becomes empty after stripping whitespace.

                ```
        """
        stripped_text = text.strip()

        if not stripped_text:
            raise ValueError(
                "Cannot embed empty or whitespace-only text. "
                "Text becomes empty after stripping whitespace."
            )

        if self.text_instruction:
            return f"{self.text_instruction.strip()} {stripped_text}"
        return stripped_text

class_name() classmethod #

Return the canonical class name for this embedding implementation.

Returns:

Type Description
str

The string "OllamaEmbedding".

Examples:

  • Get the class name identifier
    >>> from serapeum.ollama import OllamaEmbedding     # type: ignore
    >>> OllamaEmbedding.class_name()
    'OllamaEmbedding'
    
Source code in libs\providers\ollama\src\serapeum\ollama\embedding.py
@classmethod
def class_name(cls) -> str:
    """Return the canonical class name for this embedding implementation.

    Returns:
        The string "OllamaEmbedding".

    Examples:
        - Get the class name identifier
            ```python
            >>> from serapeum.ollama import OllamaEmbedding     # type: ignore
            >>> OllamaEmbedding.class_name()
            'OllamaEmbedding'

            ```
    """
    return "OllamaEmbedding"