Skip to main content

Python client for RIDER — autonomous prompt optimization engine. 17 WIN / 0 LOSE across 6 benchmarks.

Project description

RIDER — Autonomous Prompt Optimization

PyPI Python License: MIT

Python client for RIDER (Reflective Iterative Diversity-Enhanced Reasoning) — a metaheuristic prompt optimization engine that evolves prompts through evolutionary algorithms, multi-armed bandits, and error-directed refinement.

17 WIN / 0 LOSE across 6 benchmarks (GSM8K, AG_News, SQuAD 2.0, CommonGen, XSum, CodeSearchNet) on 3 LLM models (Claude Haiku 4.5, GPT-4.1, DeepSeek V3.2). Published at FSE 2026 (CORE A*) and FRUCT 39 (IEEE).

Installation

pip install riderprompt

Quick Start

Get your API key at riderprompt.com, then:

from rider import Rider

client = Rider(api_key="rider_sk_...")

result = client.optimize(
    prompt="Write a summary of this article",
    mode="standard",
)

print(result.optimized_prompt)
print(f"Improvement: {result.improvement:.1f}%")

Optimization Modes

Mode Time API Calls Best For
light ~15 sec 5 Quick rewrite, 2 strategies compete
blitz ~30 sec 11 4 strategies + merge + error refinement
standard ~1 min 19 Full 3-phase PHASE REACTOR (default)
ultra ~2 min 25 4 phases + adversarial review

Features

  • 🧬 Evolutionary algorithms — 9 operators (EDA mutation, differential evolution, genetic crossover, semantic paraphrase, etc.)
  • 🎰 Adaptive operator selection — Windowed Thompson Sampling with Bayesian elimination
  • 🎯 Error-directed evolution — feeds misclassified examples back into generation
  • Evaluate-first (μ+λ) retention — diversity tiebreaking
  • 🔄 8 exclusive protocols — PRISM, NEXUS, PHASE REACTOR, OPERATOR FORGE, ECHO, CHIMERA, VORTEX, MARS CONFIG

Examples

Optimize a prompt with custom validation data

result = client.optimize(
    prompt="Classify this text as positive or negative",
    mode="ultra",
    validation_examples=[
        {"input": "I love this!", "expected": "positive"},
        {"input": "This is terrible", "expected": "negative"},
    ],
)

Async usage with multiple prompts

import asyncio
from rider import AsyncRider

async def optimize_many(prompts):
    client = AsyncRider(api_key="rider_sk_...")
    tasks = [client.optimize(p, mode="light") for p in prompts]
    results = await asyncio.gather(*tasks)
    return results

Pricing

  • Free — 3 optimizations/day (Light + Blitz modes)
  • Pro ($9.99/mo) — 50/day, all 4 modes, REST API
  • Ultra ($29.99/mo) — Unlimited, priority queue

See pricing

Citation

If you use RIDER in your research, please cite:

@inproceedings{dragomirov2026rider,
  title={{RIDER}: Evolutionary Prompt Optimization with Adaptive Operator Selection for Software Engineering},
  author={Dragomirov, Daglar and Kulin, Nikita and Muravyov, Sergey and Makarov, Ilya and Sukhorukov, Daniil and Mozikov, Mikhail},
  booktitle={Companion Proceedings of the 34th ACM Joint European Software Engineering Conference and Symposium on the Foundations of Software Engineering (FSE Companion '26)},
  year={2026},
  doi={10.1145/3803437.3807393},
}

Links

License

MIT License — see LICENSE file.

Project details


Download files

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

Source Distribution

riderprompt-0.1.0.tar.gz (10.8 kB view details)

Uploaded Source

Built Distribution

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

riderprompt-0.1.0-py3-none-any.whl (8.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: riderprompt-0.1.0.tar.gz
  • Upload date:
  • Size: 10.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.4

File hashes

Hashes for riderprompt-0.1.0.tar.gz
Algorithm Hash digest
SHA256 6ec7e4fbda03ba64b3cc371da0d7e60b01514f52fa0fff09e7a1401ef1735e12
MD5 4570634fa0cb3992017c88fbbc634495
BLAKE2b-256 8f9ecc03dcaf0de7c1de7306327bafbb0713cbbe5ceaf709820713645d85bf96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: riderprompt-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 8.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.4

File hashes

Hashes for riderprompt-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a695ad4719ad276e6101fd34675a3c2bdf9daaf865593fd9043525f93da68348
MD5 8de45f68c7afd0397991eab9e28a7dd3
BLAKE2b-256 aeeb364630942fec84167f8942967881f563db0e427333ad863061779b75df33

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page