Victor Sklyar: how to set fflag_feat_front_prod_309_choice_hint_080523_short ?
Erin (Label Studio): Hey @Victor Sklyar — you can enable the feature flag by doing the following
To set the fflag_feat_front_prod_309_choice_hint_080523_short feature flag, you can follow these steps:
- If you’re using Label Studio Community Edition (open-source), set the feature flag as an environment variable when starting Label Studio:
export fflag_feat_front_prod_309_choice_hint_080523_short=true label-studio
- If you’re using Label Studio Enterprise with Helm and Kubernetes, add the feature flag to the ls-values.yaml file:
yaml
global:
# ... other configurations ...
featureFlags:
fflag_feat_front_prod_309_choice_hint_080523_short: true
helm upgrade <RELEASE_NAME> heartex/label-studio -f ls-values.yaml
kubectl rollout restart deployment/<RELEASE_NAME>-ls-app
- Verify that the feature flag is enabled in Label Studio by visiting the
/feature-flags
page, e.g.,<http://localhost:8080/feature-flags>
.
Remember to replace <RELEASE_NAME>
with the actual release name of your Label Studio Enterprise deployment.
Note: This post was generated by the Label Studio Archive Bot from a conversation in the Label Studio Slack, a gathering place for the Label Studio community. Someone in the community thought this was worth sharing!
If this post answered a question for you, hit the Like button - we use that to assess which posts to put into docs.