snigenigmatic's picture
Upload folder using huggingface_hub
0683cf4 verified
raw
history blame contribute delete
298 Bytes
from openenv.core.env_server.http_server import create_app
from models import SQLAction, SQLObservation
from server.sql_environment import SQLTutorEnvironment
app = create_app(
SQLTutorEnvironment,
SQLAction,
SQLObservation,
env_name="sql_tutor_env",
max_concurrent_envs=10,
)