From 2c80471ea264c3e9b2c08af20166e11c7467a296 Mon Sep 17 00:00:00 2001 From: Amdjed Bensalah <44640851+amdjedbens@users.noreply.github.com> Date: Mon, 8 Sep 2025 12:12:33 +0200 Subject: [PATCH] [docs] update installation instructions to use `ddgs` instead of `duckduckgo_search` As per last udpate: https://pypi.org/project/duckduckgo-search/ :warning: The package `duckduckgo_search` has been renamed to `ddgs`. Updated code snippets and added a warning note to reflect this change. --- agent-ui/introduction.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/agent-ui/introduction.mdx b/agent-ui/introduction.mdx index 68dfd23b..3464b5c0 100644 --- a/agent-ui/introduction.mdx +++ b/agent-ui/introduction.mdx @@ -135,11 +135,11 @@ In another terminal, run the playground server: ```bash Mac - pip install -U openai duckduckgo-search sqlalchemy 'fastapi[standard]' agno + pip install -U openai ddgs sqlalchemy 'fastapi[standard]' agno ``` ```bash Windows - pip install -U openai duckduckgo-search sqlalchemy 'fastapi[standard]' agno + pip install -U openai ddgs sqlalchemy 'fastapi[standard]' agno ```