-
Notifications
You must be signed in to change notification settings - Fork 176
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add new feature flag for 'AI' capabilities #4023
Comments
Hi @bjester, is this issue open for open-source contribution? If yes, could you please provide me with more information on how to implement the feature? |
Hi @akash5100, yes you may work on this. It should be very quick as it only updates a JSON file! :) |
@bjester sir, the JSON file schema changes should be like this? {
"type": "object",
"description": "Schema for supported feature flags",
"additionalProperties": false,
"properties": {
"test_dev_feature": {
"type": "boolean",
"title": "Test development feature",
"description": "This no-op feature flag is excluded from non-dev environments",
"$env": "development"
},
"ai_feature":{
"type": "boolean",
"title":"Test AI feature",
"description": "Selectively invite users to try future 'AI' features"
}
},
"examples": [
{"test_dev_feature": true}
]
} |
Yes that's sufficient, with one change: can you make the description |
Desired behavior
Add a new feature flag with which we can selectively invite users to try future 'AI' features such as:
Current behavior
No such flag exists
Value add
We can selectively opt-in users to these features to slow the roll out and limit cost liability. Also, adding this ahead will make it available to the development of such features.
The text was updated successfully, but these errors were encountered: