API Reference¶
Complete API documentation for all chapkit modules, classes, and functions.
Artifact Module¶
Hierarchical storage system for models, data, and experiment tracking.
Models¶
models
¶
Artifact ORM model for hierarchical data storage.
Classes¶
Artifact
¶
Bases: Entity
ORM model for hierarchical artifacts with parent-child relationships.
Source code in src/chapkit/artifact/models.py
Schemas¶
schemas
¶
Pydantic schemas for hierarchical artifacts with tree structures.
Attributes¶
ArtifactData = Annotated[MLTrainingArtifactData | MLPredictionArtifactData | GenericArtifactData, Field(discriminator='type')]
module-attribute
¶
Discriminated union type for all artifact data types.
Classes¶
ArtifactIn
¶
ArtifactOut
¶
ArtifactTreeNode
¶
Bases: ArtifactOut
Artifact node with tree structure metadata.
Source code in src/chapkit/artifact/schemas.py
ArtifactHierarchy
¶
Bases: BaseModel
Configuration for artifact hierarchy with level labels.
Source code in src/chapkit/artifact/schemas.py
BaseArtifactData
¶
Bases: BaseModel
Base class for all artifact data types with typed metadata.
Source code in src/chapkit/artifact/schemas.py
MLMetadata
¶
Bases: BaseModel
Metadata for ML artifacts (training and prediction).
Source code in src/chapkit/artifact/schemas.py
GenericMetadata
¶
MLTrainingArtifactData
¶
Bases: BaseArtifactData[MLMetadata]
Schema for ML training artifact data with trained model.
Source code in src/chapkit/artifact/schemas.py
MLPredictionArtifactData
¶
Bases: BaseArtifactData[MLMetadata]
Schema for ML prediction artifact data with results.
Source code in src/chapkit/artifact/schemas.py
GenericArtifactData
¶
Bases: BaseArtifactData[GenericMetadata]
Schema for generic artifact data with free-form metadata.
Source code in src/chapkit/artifact/schemas.py
Functions¶
validate_artifact_data(data)
¶
Validate artifact data against appropriate schema based on type field.
Source code in src/chapkit/artifact/schemas.py
Repository¶
repository
¶
Artifact repository for hierarchical data access with tree traversal.
Classes¶
ArtifactRepository
¶
Bases: BaseRepository[Artifact, ULID]
Repository for Artifact entities with tree traversal operations.
Source code in src/chapkit/artifact/repository.py
Functions¶
__init__(session)
¶
find_by_id(id)
async
¶
Find an artifact by ID with children eagerly loaded.
find_subtree(start_id)
async
¶
Find all artifacts in the subtree rooted at the given ID using recursive CTE.
Source code in src/chapkit/artifact/repository.py
get_root_artifact(artifact_id)
async
¶
Find the root artifact by traversing up the parent chain.
Source code in src/chapkit/artifact/repository.py
Manager¶
manager
¶
Artifact manager for hierarchical data with parent-child relationships.
Classes¶
ArtifactManager
¶
Bases: BaseManager[Artifact, ArtifactIn, ArtifactOut, ULID]
Manager for Artifact entities with hierarchical tree operations.
Source code in src/chapkit/artifact/manager.py
15 16 17 18 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 | |
Functions¶
__init__(repo, hierarchy=None)
¶
Initialize artifact manager with repository and optional hierarchy.
Source code in src/chapkit/artifact/manager.py
find_subtree(start_id)
async
¶
Find all artifacts in the subtree rooted at the given ID.
Source code in src/chapkit/artifact/manager.py
expand_artifact(artifact_id)
async
¶
Expand a single artifact with hierarchy metadata but without children.
Source code in src/chapkit/artifact/manager.py
build_tree(start_id)
async
¶
Build a hierarchical tree structure rooted at the given artifact ID.
Source code in src/chapkit/artifact/manager.py
pre_save(entity, data)
async
¶
pre_update(entity, data, old_values)
async
¶
Recalculate artifact level and cascade updates to descendants if parent changed.
Source code in src/chapkit/artifact/manager.py
Router¶
router
¶
Artifact CRUD router with hierarchical tree operations.
Classes¶
ArtifactRouter
¶
Bases: CrudRouter[ArtifactIn, ArtifactOut]
CRUD router for Artifact entities with tree operations.
Source code in src/chapkit/artifact/router.py
17 18 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 | |
Functions¶
__init__(prefix, tags, manager_factory, entity_in_type, entity_out_type, permissions=None, enable_config_access=False, **kwargs)
¶
Initialize artifact router with entity types and manager factory.
Source code in src/chapkit/artifact/router.py
Task Module¶
Registry-based task execution system for Python functions with dependency injection.
Registry¶
registry
¶
Global registry for Python task functions with metadata support.
Classes¶
TaskMetadata
¶
TaskRegistry
¶
Global registry for Python task functions with tags and metadata.
Source code in src/chapkit/task/registry.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 | |
Functions¶
register(name, tags=None)
classmethod
¶
Decorator to register a task function with optional tags.
Source code in src/chapkit/task/registry.py
register_function(name, func, tags=None)
classmethod
¶
Imperatively register a task function with optional tags.
Source code in src/chapkit/task/registry.py
get(name)
classmethod
¶
Retrieve a registered task function.
has(name)
classmethod
¶
get_tags(name)
classmethod
¶
Get tags for a registered task.
get_info(name)
classmethod
¶
Get metadata for a registered task.
Source code in src/chapkit/task/registry.py
list_all()
classmethod
¶
list_all_info()
classmethod
¶
list_by_tags(tags)
classmethod
¶
List task names that have ALL specified tags.
Source code in src/chapkit/task/registry.py
Executor¶
executor
¶
Task executor for registry-based execution with dependency injection.
Classes¶
TaskExecutor
¶
Executes registered task functions with dependency injection.
Source code in src/chapkit/task/executor.py
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 | |
Functions¶
__init__(database, scheduler=None, artifact_manager=None)
¶
Initialize task executor with framework dependencies.
Source code in src/chapkit/task/executor.py
execute(name, params=None)
async
¶
Execute registered function by name with runtime parameters and return result.
Source code in src/chapkit/task/executor.py
Router¶
router
¶
Task router for registry-based execution.
Classes¶
TaskRouter
¶
Router for task execution (registry-based, no CRUD).
Source code in src/chapkit/task/router.py
Schemas¶
schemas
¶
Task schemas for registry-based execution.
Classes¶
ParameterInfo
¶
Bases: BaseModel
Function parameter metadata.
Source code in src/chapkit/task/schemas.py
TaskInfo
¶
Bases: BaseModel
Task metadata from registry.
Source code in src/chapkit/task/schemas.py
TaskExecuteRequest
¶
TaskExecuteResponse
¶
Bases: BaseModel
Response from task execution.
Source code in src/chapkit/task/schemas.py
Data Module¶
Universal DataFrame interchange format for tabular data across pandas, polars, xarray, and other libraries.
DataFrame¶
DataFrame
¶
Bases: BaseModel
Universal interchange format for tabular data from pandas, polars, xarray, and other libraries.
Source code in src/chapkit/data/dataframe.py
13 14 15 16 17 18 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 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 | |
Attributes¶
shape
property
¶
Return tuple representing dimensionality of the DataFrame.
empty
property
¶
Indicator whether DataFrame is empty.
size
property
¶
Return int representing number of elements in this object.
ndim
property
¶
Return int representing number of axes/array dimensions.
Functions¶
from_pandas(df)
classmethod
¶
Create schema from pandas DataFrame.
Source code in src/chapkit/data/dataframe.py
from_polars(df)
classmethod
¶
Create schema from Polars DataFrame.
Source code in src/chapkit/data/dataframe.py
from_xarray(da)
classmethod
¶
Create schema from xarray DataArray (2D only).
Source code in src/chapkit/data/dataframe.py
from_dict(data)
classmethod
¶
Create schema from dictionary of columns.
Source code in src/chapkit/data/dataframe.py
from_records(records)
classmethod
¶
Create schema from list of records (row-oriented).
Source code in src/chapkit/data/dataframe.py
from_csv(path=None, *, csv_string=None, delimiter=',', has_header=True, encoding='utf-8')
classmethod
¶
Create DataFrame from CSV file or string.
Source code in src/chapkit/data/dataframe.py
to_pandas()
¶
Convert schema to pandas DataFrame.
Source code in src/chapkit/data/dataframe.py
to_polars()
¶
Convert schema to Polars DataFrame.
Source code in src/chapkit/data/dataframe.py
to_dict(orient='dict')
¶
Convert schema to dictionary with specified orient (dict, list, or records).
Source code in src/chapkit/data/dataframe.py
to_csv(path=None, *, delimiter=',', include_header=True, encoding='utf-8')
¶
Export DataFrame to CSV file or string.
Source code in src/chapkit/data/dataframe.py
head(n=5)
¶
Return first n rows.
Source code in src/chapkit/data/dataframe.py
tail(n=5)
¶
Return last n rows.
sample(n=None, frac=None, *, random_state=None)
¶
Return random sample of rows.
Source code in src/chapkit/data/dataframe.py
select(columns)
¶
Return DataFrame with only specified columns.
Source code in src/chapkit/data/dataframe.py
drop(columns)
¶
Return DataFrame without specified columns.
Source code in src/chapkit/data/dataframe.py
rename(mapper)
¶
Return DataFrame with renamed columns.
Source code in src/chapkit/data/dataframe.py
rename_columns(mapper)
¶
validate_structure()
¶
Validate DataFrame structure.
Source code in src/chapkit/data/dataframe.py
infer_types()
¶
Infer column data types.
Source code in src/chapkit/data/dataframe.py
has_nulls()
¶
Check for null values in each column.
Source code in src/chapkit/data/dataframe.py
__len__()
¶
__iter__()
¶
from_json(json_string)
classmethod
¶
Create DataFrame from JSON string (array of objects).
Source code in src/chapkit/data/dataframe.py
to_json(orient='records')
¶
Export DataFrame as JSON string.
Source code in src/chapkit/data/dataframe.py
get_column(column)
¶
Get all values for a column.
Source code in src/chapkit/data/dataframe.py
__getitem__(key)
¶
unique(column)
¶
Get unique values from a column (preserves order).
Source code in src/chapkit/data/dataframe.py
value_counts(column)
¶
Count occurrences of each unique value in column.
Source code in src/chapkit/data/dataframe.py
sort(by, ascending=True)
¶
Sort DataFrame by column.
Source code in src/chapkit/data/dataframe.py
filter(predicate)
¶
Filter rows using a predicate function.
Source code in src/chapkit/data/dataframe.py
apply(func, column)
¶
Apply function to column values.
Source code in src/chapkit/data/dataframe.py
add_column(name, values)
¶
Add new column to DataFrame.
Source code in src/chapkit/data/dataframe.py
drop_rows(indices)
¶
Drop rows by index.
Source code in src/chapkit/data/dataframe.py
drop_duplicates(subset=None)
¶
Remove duplicate rows.
Source code in src/chapkit/data/dataframe.py
fillna(value)
¶
Replace None values.
Source code in src/chapkit/data/dataframe.py
concat(other)
¶
Concatenate DataFrames vertically (stack rows).
Source code in src/chapkit/data/dataframe.py
melt(id_vars=None, value_vars=None, var_name='variable', value_name='value')
¶
Unpivot DataFrame from wide to long format.
Source code in src/chapkit/data/dataframe.py
pivot(index, columns, values)
¶
Pivot DataFrame from long to wide format.
Source code in src/chapkit/data/dataframe.py
merge(other, on=None, how='inner', left_on=None, right_on=None, suffixes=('_x', '_y'))
¶
Merge DataFrames using database-style join.
Source code in src/chapkit/data/dataframe.py
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 | |
transpose()
¶
Transpose DataFrame by swapping rows and columns.
Source code in src/chapkit/data/dataframe.py
describe()
¶
Generate statistical summary for numeric columns.
Source code in src/chapkit/data/dataframe.py
groupby(by)
¶
equals(other)
¶
Check if two DataFrames are identical.
deepcopy()
¶
isna()
¶
Return DataFrame of booleans showing None locations.
notna()
¶
Return DataFrame of booleans showing non-None locations.
dropna(axis=0, how='any')
¶
Drop rows or columns with None values.
Source code in src/chapkit/data/dataframe.py
nunique(column)
¶
Count number of unique values in column.
Source code in src/chapkit/data/dataframe.py
GroupBy¶
GroupBy
¶
GroupBy helper for aggregations.
Source code in src/chapkit/data/dataframe.py
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 | |
Functions¶
__init__(dataframe, by)
¶
Initialize GroupBy helper.
Source code in src/chapkit/data/dataframe.py
count()
¶
sum(column)
¶
Sum numeric column per group.
Source code in src/chapkit/data/dataframe.py
mean(column)
¶
Calculate mean of numeric column per group.
Source code in src/chapkit/data/dataframe.py
min(column)
¶
Find minimum of numeric column per group.
Source code in src/chapkit/data/dataframe.py
max(column)
¶
Find maximum of numeric column per group.
Source code in src/chapkit/data/dataframe.py
Config Module¶
Key-value configuration storage with Pydantic schema validation.
Models¶
models
¶
Config ORM models for key-value configuration storage and artifact linking.
Classes¶
Config
¶
Bases: Entity
ORM model for configuration with JSON data storage.
Source code in src/chapkit/config/models.py
ConfigArtifact
¶
Bases: Base
Junction table linking Configs to root Artifacts.
Source code in src/chapkit/config/models.py
Schemas¶
schemas
¶
Config schemas for key-value configuration with JSON data.
Classes¶
BaseConfig
¶
ConfigIn
¶
ConfigOut
¶
Bases: EntityOut
Output schema for configuration entities.
Source code in src/chapkit/config/schemas.py
Functions¶
convert_dict_to_model(v, info)
classmethod
¶
Convert dict to BaseConfig model if data_cls is provided in validation context.
Source code in src/chapkit/config/schemas.py
serialize_data(value)
¶
Serialize BaseConfig data to JSON dict.
Source code in src/chapkit/config/schemas.py
LinkArtifactRequest
¶
Repository¶
repository
¶
Config repository for database access and artifact linking.
Classes¶
ConfigRepository
¶
Bases: BaseRepository[Config, ULID]
Repository for Config entities with artifact linking operations.
Source code in src/chapkit/config/repository.py
Functions¶
__init__(session)
¶
find_by_name(name)
async
¶
link_artifact(config_id, artifact_id)
async
¶
Link a config to a root artifact.
Source code in src/chapkit/config/repository.py
unlink_artifact(artifact_id)
async
¶
Unlink an artifact from its config.
delete_by_id(id)
async
¶
Delete a config and cascade delete all linked artifact trees.
Source code in src/chapkit/config/repository.py
find_by_root_artifact_id(artifact_id)
async
¶
Find the config linked to a root artifact.
Source code in src/chapkit/config/repository.py
find_artifacts_for_config(config_id)
async
¶
Find all root artifacts linked to a config.
Source code in src/chapkit/config/repository.py
Manager¶
manager
¶
Config manager for CRUD operations and artifact linking.
Classes¶
ConfigManager
¶
Bases: BaseManager[Config, ConfigIn[DataT], ConfigOut[DataT], ULID]
Manager for Config entities with artifact linking operations.
Source code in src/chapkit/config/manager.py
Functions¶
__init__(repo, data_cls)
¶
Initialize config manager with repository and data class.
Source code in src/chapkit/config/manager.py
find_by_name(name)
async
¶
Find a config by its unique name.
link_artifact(config_id, artifact_id)
async
¶
unlink_artifact(artifact_id)
async
¶
get_config_for_artifact(artifact_id, artifact_repo)
async
¶
Get the config for an artifact by traversing to its root.
Source code in src/chapkit/config/manager.py
get_linked_artifacts(config_id)
async
¶
Get all root artifacts linked to a config.
Source code in src/chapkit/config/manager.py
Router¶
router
¶
Config CRUD router with artifact linking operations.
Classes¶
ConfigRouter
¶
Bases: CrudRouter[ConfigIn[BaseConfig], ConfigOut[BaseConfig]]
CRUD router for Config entities with artifact linking operations.
Source code in src/chapkit/config/router.py
17 18 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 | |
Functions¶
__init__(prefix, tags, manager_factory, entity_in_type, entity_out_type, permissions=None, enable_artifact_operations=False, **kwargs)
¶
Initialize config router with entity types and manager factory.
Source code in src/chapkit/config/router.py
ML Module¶
Train/predict workflows with artifact-based model storage and timing metadata.
Schemas¶
schemas
¶
Pydantic schemas for ML train/predict operations.
Migration Note
TrainedModelArtifactData and PredictionArtifactData have been replaced by MLTrainingArtifactData and MLPredictionArtifactData from chapkit.artifact.data_schemas.
Key changes: - ml_type field renamed to type - model field moved to content - predictions field moved to content - Added nested metadata structure - Added content_type and content_size fields - Removed training_artifact_id (use parent_id instead) - Removed model_type and model_size_bytes (metadata only)
Classes¶
MLPredictionArtifactData
¶
Bases: BaseArtifactData[MLMetadata]
Schema for ML prediction artifact data with results.
Source code in src/chapkit/artifact/schemas.py
MLTrainingArtifactData
¶
Bases: BaseArtifactData[MLMetadata]
Schema for ML training artifact data with trained model.
Source code in src/chapkit/artifact/schemas.py
TrainRequest
¶
Bases: BaseModel
Request schema for training a model.
Source code in src/chapkit/ml/schemas.py
TrainResponse
¶
Bases: BaseModel
Response schema for train operation submission.
Source code in src/chapkit/ml/schemas.py
PredictRequest
¶
Bases: BaseModel
Request schema for making predictions.
Source code in src/chapkit/ml/schemas.py
PredictResponse
¶
Bases: BaseModel
Response schema for predict operation submission.
Source code in src/chapkit/ml/schemas.py
ModelRunnerProtocol
¶
Bases: Protocol[ConfigT]
Protocol defining the interface for model runners.
Source code in src/chapkit/ml/schemas.py
Functions¶
on_train(config, data, geo=None)
async
¶
Train a model and return the trained model object (must be pickleable).
on_predict(config, model, historic, future, geo=None)
async
¶
Make predictions using a trained model and return predictions as DataFrame.
Source code in src/chapkit/ml/schemas.py
Manager¶
manager
¶
Manager for ML train/predict operations with artifact-based storage.
Classes¶
MLManager
¶
Bases: Generic[ConfigT]
Manager for ML train/predict operations with job scheduling and artifact storage.
Source code in src/chapkit/ml/manager.py
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 | |
Functions¶
__init__(runner, scheduler, database, config_schema)
¶
Initialize ML manager with runner, scheduler, database, and config schema.
Source code in src/chapkit/ml/manager.py
execute_train(request)
async
¶
Submit a training job to the scheduler and return job/artifact IDs.
Source code in src/chapkit/ml/manager.py
execute_predict(request)
async
¶
Submit a prediction job to the scheduler and return job/artifact IDs.
Source code in src/chapkit/ml/manager.py
Router¶
router
¶
REST API router for ML train/predict operations.
Classes¶
MLRouter
¶
Bases: Router
Router with $train and $predict collection operations.
Source code in src/chapkit/ml/router.py
Model Runners¶
Protocol and implementations for ML model training and prediction.
BaseModelRunner¶
BaseModelRunner
¶
Bases: ABC, Generic[ConfigT]
Abstract base class for model runners with lifecycle hooks.
Source code in src/chapkit/ml/runner.py
Functions¶
on_init()
async
¶
on_cleanup()
async
¶
on_train(config, data, geo=None)
abstractmethod
async
¶
Train a model and return the trained model object (must be pickleable).
on_predict(config, model, historic, future, geo=None)
abstractmethod
async
¶
Make predictions using a trained model and return predictions as DataFrame.
Source code in src/chapkit/ml/runner.py
FunctionalModelRunner¶
FunctionalModelRunner
¶
Bases: BaseModelRunner[ConfigT]
Functional model runner wrapping train and predict functions.
Source code in src/chapkit/ml/runner.py
Functions¶
__init__(on_train, on_predict)
¶
Initialize functional runner with train and predict functions.
on_train(config, data, geo=None)
async
¶
Train a model and return the trained model object.
on_predict(config, model, historic, future, geo=None)
async
¶
Make predictions using a trained model.
Source code in src/chapkit/ml/runner.py
ShellModelRunner¶
ShellModelRunner
¶
Bases: BaseModelRunner[ConfigT]
Shell-based model runner that executes external scripts for train/predict operations.
Source code in src/chapkit/ml/runner.py
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 | |
Functions¶
__init__(train_command, predict_command, model_format='pickle')
¶
Initialize shell runner with command templates for train/predict operations.
Source code in src/chapkit/ml/runner.py
on_train(config, data, geo=None)
async
¶
Train a model by executing external training script (model file creation is optional).
Source code in src/chapkit/ml/runner.py
on_predict(config, model, historic, future, geo=None)
async
¶
Make predictions by executing external prediction script (skips model file if placeholder).
Source code in src/chapkit/ml/runner.py
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 | |
Scheduler¶
Chapkit job scheduler with artifact tracking for ML/task workflows.
scheduler
¶
Chapkit-specific job scheduler with artifact tracking.
Classes¶
ChapkitJobRecord
¶
Bases: JobRecord
Job record extended with artifact_id tracking for ML/task workflows.
Source code in src/chapkit/scheduler.py
ChapkitScheduler
¶
Bases: InMemoryScheduler, ABC
Abstract base class for Chapkit job schedulers with artifact tracking.
Source code in src/chapkit/scheduler.py
InMemoryChapkitScheduler
¶
Bases: ChapkitScheduler
In-memory scheduler with automatic artifact tracking for jobs that return ULIDs.
Source code in src/chapkit/scheduler.py
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 | |
Functions¶
add_job(target, /, *args, **kwargs)
async
¶
Add a job to the scheduler and return its ID.
Source code in src/chapkit/scheduler.py
get_record(job_id)
async
¶
Get complete job record with artifact_id if available.
Source code in src/chapkit/scheduler.py
list_records(*, status_filter=None, reverse=False)
async
¶
List all job records with optional status filtering.
Source code in src/chapkit/scheduler.py
API Layer¶
FastAPI-specific components built on servicekit.
Dependencies¶
FastAPI dependency injection functions.
dependencies
¶
Feature-specific FastAPI dependency injection for managers.
Classes¶
Functions¶
get_config_manager(session)
async
¶
Get a config manager instance for dependency injection.
Source code in src/chapkit/api/dependencies.py
get_artifact_manager(session)
async
¶
Get an artifact manager instance for dependency injection.
Source code in src/chapkit/api/dependencies.py
get_ml_manager()
async
¶
Get an ML manager instance for dependency injection.
Note: This is a placeholder. The actual dependency is built by ServiceBuilder with the runner in closure, then overridden via app.dependency_overrides.
Source code in src/chapkit/api/dependencies.py
Alembic Helpers¶
Reusable migration helpers for chapkit database tables.
alembic_helpers
¶
Reusable Alembic migration helpers for chapkit tables.
This module provides helper functions for creating and dropping chapkit's database tables in Alembic migrations. Using helpers instead of raw Alembic operations provides:
- Reusability across migrations
- Consistent table definitions
- Clear documentation
- Easier maintenance
Users can create their own helper modules following this pattern for custom tables.
Example
In your migration file¶
from chapkit.alembic_helpers import create_configs_table, drop_configs_table
def upgrade() -> None: create_configs_table(op)
def downgrade() -> None: drop_configs_table(op)
Creating Your Own Helpers
Follow the same pattern for your custom tables:
myapp/alembic_helpers.py¶
def create_users_table(op: Any) -> None: '''Create users table.''' op.create_table( 'users', sa.Column('email', sa.String(), nullable=False), sa.Column('name', sa.String(), nullable=False), sa.Column('id', servicekit.types.ULIDType(length=26), nullable=False), sa.Column('created_at', sa.DateTime(), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=False), sa.Column('updated_at', sa.DateTime(), server_default=sa.text('(CURRENT_TIMESTAMP)'), nullable=False), sa.Column('tags', sa.JSON(), nullable=False, server_default='[]'), sa.PrimaryKeyConstraint('id'), ) op.create_index(op.f('ix_users_email'), 'users', ['email'], unique=False)
def drop_users_table(op: Any) -> None: '''Drop users table.''' op.drop_index(op.f('ix_users_email'), table_name='users') op.drop_table('users')
See examples/custom_migrations/ for a complete working example.
Functions¶
create_artifacts_table(op)
¶
Create artifacts table for hierarchical artifact storage.
Source code in src/chapkit/alembic_helpers.py
drop_artifacts_table(op)
¶
Drop artifacts table.
create_configs_table(op)
¶
Create configs table for configuration storage.
Source code in src/chapkit/alembic_helpers.py
drop_configs_table(op)
¶
create_config_artifacts_table(op)
¶
Create config_artifacts junction table linking configs to artifacts.
Source code in src/chapkit/alembic_helpers.py
drop_config_artifacts_table(op)
¶
create_tasks_table(op)
¶
Create tasks table for task execution infrastructure.