-
-
Notifications
You must be signed in to change notification settings - Fork 27
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
ValueError: list.remove(x): x not in list #132
Comments
Look like you remove some option not in conversation_style list. |
I delete "autosave", although it is not a problem the first time I delete it, I think it creates a problem in the following times because it has already been deleted before |
Because the new version of ReEdgeGPT’s conversation_style default setting does not include autosave creative = [
"nlu_direct_response_filter",
"deepleo",
"disable_emoji_spoken_text",
"responsible_ai_policy_235",
"enablemm",
"dv3sugg",
"autosave",
"iyxapbing",
"iycapbing",
"h3imaginative",
"clgalileo",
"gencontentv3",
"uquopt",
"sunoupsell",
"gndlogcf",
"flxvsearch",
"noknowimg",
"eredirecturl"
]
creative_classic = [
"nlu_direct_response_filter",
"deepleo",
"disable_emoji_spoken_text",
"responsible_ai_policy_235",
"enablemm",
"dv3sugg",
"autosave",
"iyxapbing",
"iycapbing",
"h3imaginative",
"clgalileo",
"gencontentv3",
"uquopt",
"sunoupsell",
"gndlogcf",
"flxvsearch",
"noknowimg",
"eredirecturl"
]
balanced = [
"nlu_direct_response_filter",
"deepleo",
"disable_emoji_spoken_text",
"responsible_ai_policy_235",
"enablemm",
"dv3sugg",
"autosave",
"iyxapbing",
"iycapbing",
"enable_user_consent",
"fluxmemcst",
"galileo",
"saharagenconv5",
"dc1mncp",
"uquopt",
"sunoupsell",
"crkt2t",
"immslots",
"cpproname",
"vidtoppb",
"gptv1desc2",
"eredirecturl"
]
precise = [
"nlu_direct_response_filter",
"deepleo",
"disable_emoji_spoken_text",
"responsible_ai_policy_235",
"enablemm",
"dv3sugg",
"autosave",
"iyxapbing",
"iycapbing",
"enable_user_consent",
"fluxmemcst",
"h3precise",
"clgalileo",
"uquopt",
"sunoupsell",
"crkt2t",
"flxvsearchans",
"noknowimg",
"eredirecturl"
] |
So, I think this is not actually an issue. if option in style_options:
style_options.remove(option)
else:
print(f"Warning {option} not in style options list", file=sys.stderr) |
The text was updated successfully, but these errors were encountered: