You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
content:"You are a helpful assistant with extensive knowledge.".to_string(),
191
+
content:MessageContent::Text(
192
+
"You are a helpful assistant with extensive knowledge.".to_string(),
193
+
),
192
194
name:None,
193
195
}];
194
196
195
197
// Add many user/assistant pairs to simulate a long conversation
196
198
for i in0..50{
197
199
messages.push(ChatMessage::User{
198
-
content:UserMessageContent::Text(format!("Question {}: What do you think about topic number {} which involves complex reasoning about multiple interconnected systems and their relationships?", i, i)),
200
+
content:MessageContent::Text(format!("Question {}: What do you think about topic number {} which involves complex reasoning about multiple interconnected systems and their relationships?", i, i)),
199
201
name:None,
200
202
});
201
203
messages.push(ChatMessage::Assistant{
202
-
content:Some(format!("Answer {}: This is a detailed response about topic {} that covers multiple aspects and provides comprehensive analysis of the interconnected systems you mentioned.", i, i)),
204
+
content:Some(MessageContent::Text(format!("Answer {}: This is a detailed response about topic {} that covers multiple aspects and provides comprehensive analysis of the interconnected systems you mentioned.", i, i))),
0 commit comments