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. |
base_url |
str
|
URL of the Ollama server. Defaults to
|
api_key |
str | None
|
The single switch between local and cloud. When |
temperature |
float
|
Sampling temperature in |
context_window |
int
|
Maximum number of tokens in the context window.
Defaults to |
timeout |
float
|
HTTP request timeout in seconds. Defaults to
|
prompt_key |
str
|
Key used when formatting prompt templates. Defaults to
|
json_mode |
bool
|
When |
additional_kwargs |
dict[str, Any]
|
Extra provider options forwarded to the Ollama
|
is_function_calling_model |
bool
|
Whether the chosen model supports tool /
function calling. Defaults to |
keep_alive |
float | str | None
|
How long the model stays loaded in memory after a
request — a duration string ( |
client |
Client
|
Pre-built synchronous |
async_client |
AsyncClient
|
Pre-built asynchronous |
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
- api_key is excluded from model_dump() — it is never serialised
- Configure additional model parameters and inspect them
- 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
- 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 | |
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
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
achat(messages, *, stream=False, **kwargs)
async
#
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
|
**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 |
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
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 | |
aparse(schema, prompt, llm_kwargs=None, *, stream=False, **prompt_args)
async
#
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
|
**prompt_args
|
Any
|
Template variables used to format the prompt. |
{}
|
Returns:
| Type | Description |
|---|---|
BaseModel | AsyncGenerator[BaseModel | list[BaseModel], None]
|
A validated |
BaseModel | AsyncGenerator[BaseModel | list[BaseModel], None]
|
|
BaseModel | AsyncGenerator[BaseModel | list[BaseModel], None]
|
|
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
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 | |
chat(messages, *, stream=False, **kwargs)
#
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
|
**kwargs
|
Any
|
Provider-specific overrides such as |
{}
|
Returns:
| Type | Description |
|---|---|
ChatResponse | ChatResponseGen
|
ChatResponse when |
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
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
Source code in libs\providers\ollama\src\serapeum\ollama\llm.py
parse(schema, prompt, llm_kwargs=None, *, stream=False, **prompt_args)
#
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
|
**prompt_args
|
Any
|
Template variables used to format the prompt. |
{}
|
Returns:
| Type | Description |
|---|---|
BaseModel | Generator[BaseModel | list[BaseModel], None, None]
|
A validated |
BaseModel | Generator[BaseModel | list[BaseModel], None, None]
|
|
BaseModel | Generator[BaseModel | list[BaseModel], None, None]
|
|
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
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 | |
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 |
Examples:
- Keep only non-excluded keys
- Return all keys when no exclusions are provided
Source code in libs\providers\ollama\src\serapeum\ollama\llm.py
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., |
base_url |
str
|
Base URL where the Ollama server is hosted. Defaults to
|
api_key |
str | None
|
The single switch between local and cloud. When |
ollama_additional_kwargs |
dict[str, Any]
|
Extra options forwarded to the Ollama |
query_instruction |
str | None
|
Instruction prefix prepended to search queries before
embedding (e.g., |
text_instruction |
str | None
|
Instruction prefix prepended to documents before embedding
(e.g., |
keep_alive |
float | str | None
|
How long to keep the model loaded in memory after a request.
Accepts a duration string (e.g., |
client_kwargs |
dict[str, Any]
|
Additional keyword arguments forwarded to the Ollama client
constructor (merged with the base kwargs built from |
client |
Client
|
Pre-built |
async_client |
AsyncClient
|
Pre-built |
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)
- 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
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_name()
classmethod
#
Return the canonical class name for this embedding implementation.
Returns:
| Type | Description |
|---|---|
str
|
The string "OllamaEmbedding". |
Examples:
- Get the class name identifier