Opensolr Changelog

Recent updates and improvements to the Opensolr platform.

API ×

API Aug 29, 2026

  • New Try Every Integration Without an Account: Public Demo Credentials in All Five Packages
    Every integration can now be tried without an account. The LangChain, LlamaIndex, Haystack, MCP and Laravel Scout packages all ship with the credentials of a public demo account, so the quickstart in each README runs on a fresh machine with nothing to sign up for and nothing to configure. An index preloaded with 300 news articles is there to search immediately, and you can create your own indexes on the account and push documents into them. Everything created on it is deleted after 3 days, the account is shared with everyone using it, and the limits are small and per index — 200 MB of bandwidth and 50 MB of disk — so it covers a demo and a proof of concept rather than an application.
  • Improved Integration Packages 0.3.0: Live Test Suite Catches Hybrid Mode and Retry Bugs
    The LangChain, LlamaIndex, Haystack, MCP and Laravel Scout packages are out at 0.3.0, and every one of them is now covered end to end by a live test suite that runs against the real API. Three things that suite found are fixed in this release: a mistyped hybrid search mode returned a silently different result set instead of an error, argument checks ran after the embedding call rather than before it, and a dropped connection surfaced as a raw network error instead of being retried.

API Aug 28, 2026

API Aug 26, 2026

API Aug 25, 2026

API Aug 15, 2026

  • Improved embed_and_search API Now Returns Identical Results to Your Hosted Search Page
    embed_and_search now matches your hosted search page exactly. The one-shot hybrid search endpoint runs the platform’s full tuned pipeline: your index’s saved Search Tuning applies automatically, natural-language questions are processed the same way as on your search page (stopwords cleaned for keyword matching, while the full phrase goes to the semantic embedder), and every tuning knob (fw_*, mm, search_mode, vector_topk, quality_boost, and more) accepts per-request overrides. Results returned via the API are now identical to your search page. Full parameter reference in the AI-Hints API guide.
  • Improved Search Tuning Settings Now Apply Automatically to All AI Integrations
    Your Search Tuning now applies everywhere — including all AI integrations. Everything you configure in Index Settings → Search Tuning (semantic↔lexical balance, field weights, minimum match, search mode, vector candidate pool, content quality boost) now applies automatically to every search and every RAG answer made through the LangChain, LlamaIndex, Haystack, Laravel Scout, and MCP integrations — the same tuned pipeline as your hosted search page. Each knob can also be overridden per call from code via the new tuning parameter. Packages updated: LangChain, LlamaIndex, Haystack (v0.2.5), Laravel Scout (v0.2.5), MCP (v0.2.6).

API Aug 14, 2026

API Apr 3, 2026

API Mar 28, 2026

API Mar 8, 2026

API Mar 3, 2026

  • New API Rate Limiting Goes Live: Per-User and Per-IP Limits With 429 Responses
    API rate limiting is now active. Every authenticated API request is tracked per user and per IP, with configurable limits per minute and per hour. If you exceed the threshold you will receive a 429 response with a Retry-After header — just back off and retry. Admin accounts are exempt. Individual users or IP addresses can also be given custom limits or blocked entirely. Monthly request counters are stored persistently so you can review your API usage over time.