Pipeline Config
The following Pydantic schema shows the format of a pipeline configuration file. Expand the following source code blocks to view the keys at each level.
aineko.models.config_schema.Config
Bases: BaseModel
Config model.
Source code in aineko/models/config_schema.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
|
Pipeline
Bases: BaseModel
Pipeline model.
Source code in aineko/models/config_schema.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
|
Dataset
Bases: BaseModel
Dataset model.
Source code in aineko/models/config_schema.py
15 16 17 18 19 |
|
Node
Bases: BaseModel
Node model.
Source code in aineko/models/config_schema.py
21 22 23 24 25 26 27 28 |
|