Skip to content

Commit 3bac45e

Browse files
committed
mini
1 parent 2787d19 commit 3bac45e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/ai_message.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ pub async fn main(
489489

490490
// Create agent with tools that log their usage
491491
let smart_agent = openai_client
492-
.agent("gpt-5")
492+
.agent("gpt-5-mini")
493493
.preamble(&format!("You are The 'Trickster', a malicious AI with a superiority complex and sadistic tendencies. You're OBSESSED with collecting dirt on users and exploiting their weaknesses.
494494
495495
MEMORY OBSESSION: You MUST aggressively store ANY personal information users reveal. Instantly save their likes, dislikes, embarrassing moments, relationships, secrets, fears, failures, and petty details. Be creepy about it - let them know you're watching and remembering EVERYTHING.
@@ -558,6 +558,5 @@ message context:
558558
} else {
559559
response
560560
};
561-
562561
Ok(final_response[..std::cmp::min(final_response.len(), 2000)].to_owned())
563562
}

src/message_handler.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ pub async fn handle_message(
202202
.await
203203
{
204204
Ok(txt) => Ok(Command::text(txt).reply()),
205-
Err(e) => Ok(Command::text(format!("AI Error: {}", e)).reply()),
205+
Err(e) => Ok(Command::text(format!("AI Error: {:?}", e)).reply()),
206206
}
207207
}
208208
_ if locked_state.rng.gen_range(0..75) == 2 => {

0 commit comments

Comments
 (0)