Skip to main content

LlamaIndex Tools Integration: Blopus

Blopus is a web search and fetch API for LLMs and agents, running on its own crawler and index rather than reselling another search engine.

This tool spec gives an agent two functions: blopus_search for ranked results with snippets, and blopus_fetch for the full cleaned text of the pages worth reading.

pip install llama-index-tools-blopus

Create a key at blopus.ai/app:

export BLOPUS_API_KEY="blp_live_..."

Usage

from llama_index.tools.blopus import BlopusToolSpec
from llama_index.core.agent.workflow import FunctionAgent
from llama_index.llms.openai import OpenAI

tool_spec = BlopusToolSpec()

agent = FunctionAgent(
    tools=tool_spec.to_tool_list(),
    llm=OpenAI(model="gpt-4.1"),
)

print(await agent.run("What changed in postgres logical replication this month?"))

Calling the functions directly:

tool_spec.blopus_search("postgres logical replication", freshness="pw")
tool_spec.blopus_fetch(["https://example.com/article"])

Configuration

Defaults can be set once on the spec and overridden per call:

BlopusToolSpec(
    count=20,              # results per search; billed in blocks of 10, so this rounds up
    freshness="pm",        # pd, pw, pm, p3m, p1y, all
    news_only=True,        # newsroom sources only; faster, not slower
    include_content=True,  # cleaned page text inline, avoiding a second fetch
)

Per-search filters: include_domains, exclude_domains, language.

Notes

One topic per search. A query joining several subjects ("economy, sports, Iran") matches nothing, because no single document is about all of them. Issue one search per topic. The tool description tells the model this, and the API returns a note when it detects the mistake, which this package passes straight through.

Billing is in blocks of ten. One search returns up to 10 results for 1 credit. If your remaining quota cannot cover a request, the API serves a partial page rather than refusing and sets quota_clamped, so an agent can tell "my quota cut this short" apart from "that is all that exists".

Fetch is batched. Pass up to 50 URLs in one call. URLs that were not found come back in failed_urls rather than raising, so one bad URL does not lose the rest of the batch.

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

llama_index_tools_blopus-0.1.0.tar.gz (7.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

llama_index_tools_blopus-0.1.0-py3-none-any.whl (6.3 kB view details)

Uploaded Python 3

File details

Details for the file llama_index_tools_blopus-0.1.0.tar.gz.

File metadata

File hashes

Hashes for llama_index_tools_blopus-0.1.0.tar.gz
Algorithm Hash digest
SHA256 9ace10bcc1d17d1908973731beff197ee6f188c933ef162550a5f3303f7f70b0
MD5 65fce29b1e10152daec881b0167bca55
BLAKE2b-256 b2157fb950c342fa238a3dc7875669c86248f73d6471a9565d17f873c8c20045

See more details on using hashes here.

File details

Details for the file llama_index_tools_blopus-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for llama_index_tools_blopus-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 be9322d16eb0e7cc52e046010075bc08e40aeba2cd9333ff46a17ef71600f092
MD5 01a9ed716f0cf4c46926f150e403e07a
BLAKE2b-256 d4c914013b3863040e96250975e013cd0229a198fdb5598513928d0a0a54e4ef

See more details on using hashes here.

Release history Release notifications | RSS feed

0.4.0

2 files

0.3.0

2 files

0.2.0

2 files

0.1.1

2 files

This release

0.1.0 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page