Mixedbread

Public Stores

Public stores are search indexes that are accessible to all Mixedbread users. They include stores maintained by Mixedbread as well as stores shared publicly by other users.

Using Public Stores

Public stores work exactly like your own stores. Reference them using the store_identifiers parameter:

Search Public Store
results = mxbai.stores.search(
  query="What is RAG?",
  store_identifiers=["mixedbread/web"]
)

You can combine public stores with your own stores in a single search:

Combined Search
results = mxbai.stores.search(
  query="machine learning best practices",
  store_identifiers=[
      "mixedbread/web",
      "my-documentation",
      "internal-wiki"
  ],
  top_k=15
)

Mixedbread Stores

Mixedbread maintains a set of public stores that provide access to common data sources. These stores are identified by the mixedbread/ prefix.

mixedbread/web

A web search store that provides access to the latest information from across the internet. Use it to augment your AI applications with up-to-date web knowledge.

Web Search
results = mxbai.stores.search(
  query="latest developments in large language models",
  store_identifiers=["mixedbread/web"],
  top_k=10
)

Use cases:

  • Real-time information retrieval
  • Fact-checking and verification
  • Research augmentation
  • Grounding AI responses with current web data
Last updated: January 5, 2026