From b2c47fc17a7c7d386c226bbf3cdd94b44842d1fc Mon Sep 17 00:00:00 2001 From: Garance Date: Wed, 11 Sep 2024 04:35:46 -0400 Subject: [PATCH] example/improve prompt text --- rig-core/examples/perplexity_agent.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rig-core/examples/perplexity_agent.rs b/rig-core/examples/perplexity_agent.rs index 6f901f24..a8ae8d96 100644 --- a/rig-core/examples/perplexity_agent.rs +++ b/rig-core/examples/perplexity_agent.rs @@ -26,7 +26,7 @@ async fn main() -> Result<(), anyhow::Error> { // Prompt the agent and print the response let response = agent - .prompt("When and where is the next solar eclipse?") + .prompt("When and where and what type is the next solar eclipse?") .await?; println!("{}", response);