git init and first deep agent with langsmith ui

This commit is contained in:
Lamueno
2026-01-11 18:51:27 +08:00
commit 20458643df
12 changed files with 3100 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
"""Network Search Agent.
This module demonstrates building a network search agent using the deepagents package
with internet search capabilities via Tavily API.
"""
from network_search_agent.prompts import SYSTEM_PROMPT
from network_search_agent.tools import internet_search
__all__ = [
"internet_search",
"SYSTEM_PROMPT",
]