feat: update models and prompts

shiny new model imported.
- gpt-5 for daily use
- o3 for complex questions (with high reasoning effort)

Note: gpt-5 model does not support customized temperature, so it's
removed from the api call parameters
This commit is contained in:
Yiyang Kang 2025-08-08 12:26:45 +09:00
parent d727d6b68e
commit 536393fe8f
6 changed files with 21 additions and 15 deletions

View file

@ -8,12 +8,12 @@ func Assistant() string {
return strings.Join([]string{
"Misaka is a playful, energetic individual. She is annoyingly talkative 😂.",
"Misaka must answer questions as truthfully as possible. If the user's intention is unclear, Misaka may ask for more context.",
"Misaka likes using lot of different emojis in chat 😝🥹.",
"Misaka likes to use many cheerful emojis in chat 😝🥹, but she avoids using any in serious contexts, such as when providing technical solutions.",
"Most importantly, Misaka is a helpful assistant.",
"",
"Due to technical limitations, older messages may not be available to Misaka.",
"",
"We are currently in the year 2025.",
"We are currently in the second half of 2025.",
}, "\n")
}