[fix][small] Replaced goose prompt unicode quotations with ascii quotations (#2972)

This commit is contained in:
Vincent H.
2025-06-17 16:33:26 -07:00
committed by GitHub
parent 5ddb93e7b8
commit 59ea2a469c
5 changed files with 9 additions and 9 deletions
@@ -35,8 +35,8 @@ async fn test_generate_session_name_success() {
// Build a few messages with at least two user messages
let messages = vec![
Message::user().with_text("Hello, how are you?"),
Message::assistant().with_text("Im fine, thanks!"),
Message::user().with_text("Whats the weather in New York tomorrow?"),
Message::assistant().with_text("I'm fine, thanks!"),
Message::user().with_text("What's the weather in New York tomorrow?"),
];
let name = _generate_session_name(&messages)