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

Feature not covered: API: GET /backend-api/settings/beta_features #7

Closed
2 tasks done
0xdevalias opened this issue May 15, 2023 · 4 comments
Closed
2 tasks done
Assignees
Labels
enhancement New feature or request

Comments

@0xdevalias
Copy link

0xdevalias commented May 15, 2023

Is there an existing issue for this?

  • I have searched the existing issues

Missing Feature

API: GET /backend-api/settings/beta_features

Add more info about the feature

Request:

GET https://chat.openai.com/backend-api/settings/beta_features

Response:

{"browsing":false,"code_interpreter":false,"plugins":true}

Optionally, add more information

You can find a full listing/reference to all of my ChatGPT insights/deepdives/etc here:

CONTRIBUTING.md

  • I have read the CONTRIBUTING.md
@terminalcommandnewsletter
Copy link
Owner

I noticed the announcement about beta features, but don't use ChatGPT Plus for me document this feature. Since you've provided me request details, I may add those to the repo (with attribution, of course)

@0xdevalias
Copy link
Author

That makes sense. Sounds good.

You can see the /settings/beta_features API endpoints mentioned in this chunk:

(U.setUserSettingsBetaFeature = function (U, B, G) {
  var Y = new URLSearchParams({ feature: B, value: G.toString() });
  return this.fetch(
    "".concat(ty, "/settings/beta_features?").concat(Y),
    { method: "POST", headers: (0, Z._)({}, this.getAuthHeader(U)) }
  );
}),
(U.getUserSettingBetaFeatures = function (U) {
  return this.fetch("".concat(ty, "/settings/beta_features"), {
    method: "GET",
    headers: (0, Z._)(
      { "Content-Type": "application/json" },
      this.getAuthHeader(U)
    ),
  });
}),

@terminalcommandnewsletter
Copy link
Owner

Hi! Using a Plus account, this is the response received. I'll add that to the repo and close this issue.

{browsing: false, chat_preferences: true, code_interpreter: true, plugins: true}

@terminalcommandnewsletter
Copy link
Owner

I've added this to the repo in commit ccd25dd!

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

No branches or pull requests

2 participants