use rig::client::CompletionClient;
use rig::streaming::StreamingPrompt;
use crate::support::{
STREAMING_PREAMBLE, STREAMING_PROMPT, assert_nonempty_response, collect_stream_final_response,
};
use super::support;
#[tokio::test]
#[ignore = "requires a local llama.cpp OpenAI-compatible server"]
async fn streaming_smoke() {
let client = support::completions_client();
let agent = client
.agent(support::model_name())
.preamble(STREAMING_PREAMBLE)
.build();
let mut stream = agent.stream_prompt(STREAMING_PROMPT).await;
let response = collect_stream_final_response(&mut stream)
.await
.expect("streaming prompt should succeed");
assert_nonempty_response(&response);
}
#[tokio::test]
#[ignore = "requires a local llama.cpp OpenAI-compatible server"]
async fn example_streaming_prompt() {
let client = support::completions_client();
let agent = client
.agent(support::model_name())
.preamble("Be precise and concise.")
.temperature(0.5)
.build();
let mut stream = agent
.stream_prompt("When and where and what type is the next solar eclipse?")
.await;
let response = collect_stream_final_response(&mut stream)
.await
.expect("streaming prompt should succeed");
assert_nonempty_response(&response);
}