fix: set mcp_composer feature as true by default (#9522)
* Set mcp composer feature flag as default true * Add env var to .env.example
This commit is contained in:
parent
a642691fb1
commit
bd1bec6224
3 changed files with 7 additions and 2 deletions
|
|
@ -3,7 +3,7 @@ from pydantic_settings import BaseSettings
|
|||
|
||||
class FeatureFlags(BaseSettings):
|
||||
mvp_components: bool = False
|
||||
mcp_composer: bool = False
|
||||
mcp_composer: bool = True
|
||||
|
||||
class Config:
|
||||
env_prefix = "LANGFLOW_FEATURE_"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue