mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-06 08:16:00 +00:00
* Simplify project implementation * Centralize benchmark agentic answer base class * Remove bundled ReMe source snapshots * Preserve local benchmark configs and plugin discovery behavior * docs: enrich job parameter descriptions in beam and lme plugin configs * Simplify project structure and remove obsolete code * Move benchmark search step configuration into BEAM and LME plugins * Rename benchmark judge packages to avoid import collisions * Remove explicit plugin package loading in favor of entry-point discovery * Export benchmark plugin Steps from public packages
5 lines
165 B
Python
5 lines
165 B
Python
"""Shared benchmark steps; concrete implementations live in plugins."""
|
|
|
|
from .base_agentic_answer import BaseAgenticAnswerStep
|
|
|
|
__all__ = ["BaseAgenticAnswerStep"]
|