Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
# -*- 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
    )