Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/GPT3Discord/commit/9e4460c009e8bae59c118435d7f15a19bcae0fef
You should set ROOT_URL correctly, otherwise the web may not work correctly.
@ -712,8 +712,20 @@ class GPT3ComCon(discord.Cog, name="GPT3ComCon"):
@discord.option(
name="prompt",description="The prompt to send to GPT3",required=True
)
@discord.option(
name="temperature",description="Higher values means the model will take more risks.",required=False,input_type=float,min_value=0,max_value=1
)
@discord.option(
name="top_p",description="Higher values means the model will take more risks.",required=False,input_type=float,min_value=0,max_value=1
)
@discord.option(
name="frequency_penalty",description=" Decreasing the model's likelihood to repeat the same line verbatim.",required=False,input_type=float,min_value=-2,max_value=2
)
@discord.option(
name="presence_penalty",description=" Increasing the model's likelihood to talk about new topics.",required=False,input_type=float,min_value=-2,max_value=2