Built-in Tools
Web Search
from djangosdk.tools.builtins.web_search import web_search
class ResearchAgent(Agent):
tools = [web_search]Web Fetch
from djangosdk.tools.builtins.web_fetch import web_fetch
class ScraperAgent(Agent):
tools = [web_fetch]RAG (Retrieval-Augmented Generation)
from djangosdk.tools.builtins.rag import rag_search
class KnowledgeAgent(Agent):
tools = [rag_search]Using Multiple Built-ins
Last updated
Was this helpful?