Tai Truong
fix readme
d202ada
raw
history blame contribute delete
205 Bytes
from pydantic_settings import BaseSettings
class FeatureFlags(BaseSettings):
mvp_components: bool = False
class Config:
env_prefix = "LANGFLOW_FEATURE_"
FEATURE_FLAGS = FeatureFlags()