File size: 417 Bytes
421f883
 
5d108aa
421f883
 
 
 
 
0176e87
5d108aa
0176e87
421f883
 
0176e87
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""
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",
]