forked from jeremychone/rust-genai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
c01-conv.rs
33 lines (24 loc) · 967 Bytes
/
c01-conv.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
use genai::chat::{ChatMessage, ChatRequest};
use genai::client::Client;
use genai::utils::print_chat_stream;
const MODEL: &str = "gpt-3.5-turbo";
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let questions = &[
// follow-up questions
"Why is the sky blue?",
"Why is it red sometime?",
];
let client = Client::default();
let mut chat_req = ChatRequest::default().with_system("Answer in one sentence");
// Similar to put a first System Chat Message(s) (will be cummulative with sytem chat messages)
for &question in questions {
chat_req = chat_req.append_message(ChatMessage::user(question));
println!("\n--- Question:\n{question}");
let chat_res = client.exec_chat_stream(MODEL, chat_req.clone(), None).await?;
println!("\n--- Answer: (streaming)");
let assistant_answer = print_chat_stream(chat_res, None).await?;
chat_req = chat_req.append_message(ChatMessage::assistant(assistant_answer));
}
Ok(())
}