fix: Update AI model reference in owoify text processing

This commit is contained in:
Slipstream 2025-06-02 16:38:28 -06:00
parent 0a8ff280e7
commit cb0112e8ed
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.5-flash-preview",
"model": "deepseek/deepseek-chat-v3-0324:free",
"messages": [{"role": "system", "content": system_prompt}] + messages
}
async with aiohttp.ClientSession() as session: