From 1441a02059e22ada091c6e95eaa626b2a01770e7 Mon Sep 17 00:00:00 2001 From: drewstone Date: Thu, 2 Jan 2025 14:25:14 +0900 Subject: [PATCH] chore: fix comment --- rig-core/examples/anthropic_agent.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rig-core/examples/anthropic_agent.rs b/rig-core/examples/anthropic_agent.rs index 2ef99ff7..f54a5c94 100644 --- a/rig-core/examples/anthropic_agent.rs +++ b/rig-core/examples/anthropic_agent.rs @@ -7,7 +7,7 @@ use rig::{ #[tokio::main] async fn main() -> Result<(), anyhow::Error> { - // Create OpenAI client + // Create Anthropic client let client = anthropic::ClientBuilder::new( &env::var("ANTHROPIC_API_KEY").expect("ANTHROPIC_API_KEY not set"), )