Repository URL to install this package:
|
Version:
0.4.6 ▾
|
# -*- coding: utf-8 -*-
from pydantic import Field
from kiara_plugin.streamlit.components.workflow import WorkflowSession
class WorkflowSessionStatic(WorkflowSession):
current_stage: int = Field(
description="The current stage of the workflow.", default=1
)