Closed Eikosa closed 7 months ago
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 new version :
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. But I will add precheck to remove options. Like:
if option in style_options:
style_options.remove(option)
else:
print(f"Warning {option} not in style options list", file=sys.stderr)