Skip to content
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

Closed
bjester opened this issue Apr 14, 2023 · 4 comments · Fixed by #4029
Closed

Add new feature flag for 'AI' capabilities #4023

bjester opened this issue Apr 14, 2023 · 4 comments · Fixed by #4029
Assignees
Labels

Comments

@bjester
Copy link
Member

bjester commented Apr 14, 2023

Desired behavior

Add a new feature flag with which we can selectively invite users to try future 'AI' features such as:

  • content recommendations
  • transcript generation

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.

@akash5100
Copy link
Contributor

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?

@bjester
Copy link
Member Author

bjester commented Apr 18, 2023

Hi @akash5100, yes you may work on this. It should be very quick as it only updates a JSON file! :)

@akash5100
Copy link
Contributor

@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}
  ]
}

@bjester
Copy link
Member Author

bjester commented Apr 18, 2023

Yes that's sufficient, with one change: can you make the description Allow user access to AI features

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants