chore(core) Default to friendly personality (#10305)

## Summary
Update default personality to friendly

## Testing
- [x] Unit tests pass
This commit is contained in:
Dylan Hurd
2026-01-31 17:11:32 -07:00
committed by GitHub
parent 2d6757430a
commit 8a461765f3
4 changed files with 34 additions and 25 deletions

View File

@@ -402,7 +402,7 @@ async fn thread_resume_accepts_personality_override() -> Result<()> {
.send_thread_resume_request(ThreadResumeParams {
thread_id: thread.id.clone(),
model: Some("gpt-5.2-codex".to_string()),
personality: Some(Personality::Friendly),
personality: Some(Personality::Pragmatic),
..Default::default()
})
.await?;