|
8 | 8 | Application(self,
|
9 | 9 | identifier: str,
|
10 | 10 | upstream: Optional[List[ForwardRef('Component')]] = None,
|
11 |
| - cache: Optional[bool] = True, |
12 |
| - status: Optional[str] = None, |
13 |
| - build_variables: Optional[Dict] = None, |
14 |
| - build_template: str | None = None, |
15 | 11 | db: dataclasses.InitVar[typing.Optional[ForwardRef('Datalayer')]] = None,
|
16 | 12 | *,
|
17 | 13 | components: List[superduper.components.component.Component],
|
18 |
| - link: Optional[str] = None) -> None |
| 14 | + link: Optional[str] = None, |
| 15 | + build_variables: Optional[Dict] = None, |
| 16 | + build_template: str | None = None) -> None |
19 | 17 | ```
|
20 | 18 | | Parameter | Description |
|
21 | 19 | |-----------|-------------|
|
22 | 20 | | identifier | Identifier of the instance. |
|
23 | 21 | | upstream | A list of upstream components. |
|
24 |
| -| cache | (Optional) If set `true` the component will not be cached during primary job of the component i.e on a distributed cluster this component will be reloaded on every component task e.g model prediction. | |
25 |
| -| status | What part of the lifecycle the component is in. | |
26 |
| -| build_variables | Variables which were supplied to a template to build. | |
27 |
| -| build_template | Template which was used to build. | |
28 |
| -| db | Datalayer instance. | |
| 22 | +| db | Datalayer instance. Datalayer instance. | |
29 | 23 | | components | List of components to group together and apply to `superduper`. |
|
30 | 24 | | link | A reference link to web app serving the application i.e. streamlit, gradio, etc |
|
| 25 | +| build_variables | Variables which were supplied to a template to build. | |
| 26 | +| build_template | Template which was used to build. | |
31 | 27 |
|
32 | 28 | A placeholder to hold list of components with associated funcionality.
|
33 | 29 |
|
|
0 commit comments