From 6ac9fd3f989001388ed542be01ea6dccf3e15539 Mon Sep 17 00:00:00 2001 From: Shubhamsaboo Date: Wed, 12 Nov 2025 20:05:50 -0800 Subject: [PATCH] Update README to clarify testing instructions for OpenAI and Anthropic agents --- .../2_model_agnostic_agent/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ai_agent_framework_crash_course/google_adk_crash_course/2_model_agnostic_agent/README.md b/ai_agent_framework_crash_course/google_adk_crash_course/2_model_agnostic_agent/README.md index 8cec95e..dafe2d4 100644 --- a/ai_agent_framework_crash_course/google_adk_crash_course/2_model_agnostic_agent/README.md +++ b/ai_agent_framework_crash_course/google_adk_crash_course/2_model_agnostic_agent/README.md @@ -68,19 +68,19 @@ pip install -r requirements.txt ### 4. **Test OpenAI Agent** ```bash -cd 2_1_openai_adk_agent adk web ``` +Then select the 2_1_openai_adk_agent in the ADK web UI - Try asking: "Tell me a fun fact!" - Notice the OpenAI GPT-4 response style ### 5. **Test Anthropic Agent** ```bash -cd 2_2_anthropic_adk_agent adk web ``` +Then select the 2_2_anthropic_adk_agent in the ADK web UI - Try asking: "Tell me a fun fact!" -- Compare with the Claude response style +- Compare with the GPT-4 response style ## 💡 Key Code Pattern