File size: 549 Bytes
1b42f19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""
SQL Migration Environment — An OpenEnv environment for benchmarking
autonomous database migration agents.

This environment places an AI agent inside a broken or schema-drifted
SQLite database and tasks it with autonomously migrating the database
to a target state using only SQL commands, without losing any row data.
"""

from .client import DbMigrationEnv
from .models import MigrationAction, MigrationObservation, MigrationState

__all__ = [
    "DbMigrationEnv",
    "MigrationAction",
    "MigrationObservation",
    "MigrationState",
]