Searxng
Example
from bitca.agent import Agent
from bitca.tools.searxng import Searxng
# Initialize Searxng with your Searxng instance URL
searxng = Searxng(
host="http://localhost:53153",
engines=[],
fixed_max_results=5,
news=True,
science=True
)
# Create an agent with Searxng
agent = Agent(tools=[searxng])
# Example: Ask the agent to search using Searxng
agent.print_response("""
Please search for information about artificial intelligence
and summarize the key points from the top results
""")Toolkit Params
Parameter
Type
Default
Description
Toolkit Functions
Function
Description
Last updated