openenv-search-rl / server /__init__.py
Aman045's picture
refactor: update server to use searcharena package
421f883
Raw
History Blame Contribute Delete
417 Bytes
"""
Server package - FastAPI wrapper for SearchArena.
This package contains only the server/API layer.
All core logic lives in the searcharena package.
"""
from .app import app, create_environment
from .environment import SearchEnvironment, create_sample_corpus, create_sample_tasks
__all__ = [
"app",
"create_environment",
"SearchEnvironment",
"create_sample_corpus",
"create_sample_tasks",
]