Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/GPT3Discord/commit/b31bfbe26de5f0c66a9d711092ccfdf97882633e?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
@ -736,8 +736,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="1 is greedy sampling, 0.1 means only considering the top 10% of probability distribution",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