fix: Update AI model version in owoify text AI function

This commit is contained in:
Slipstream 2025-05-19 17:57:26 -06:00
parent 41d8a352bd
commit c70ffb0afb
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD

View File

@ -93,7 +93,7 @@ async def _owoify_text_ai_with_messages(messages, system_mode="transform"):
"You are having a conversation, so respond naturally and keep the conversation going in uwu/owo style."
)
payload = {
"model": "google/gemini-2.0-flash-exp:free",
"model": "google/gemini-2.5-flash-preview",
"messages": [{"role": "system", "content": system_prompt}] + messages
}
async with aiohttp.ClientSession() as session: