File size: 496 Bytes
dc42cb3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
"""CloudOps Optimizer Environment for OpenEnv.

A real-world simulation of cloud infrastructure cost and performance optimization.
"""

from models import (
    ObservationModel as Observation,
    ActionModel as Action,
    Reward as Reward,
    Resource,
    Metrics,
    SLA,
)
from env.core import CloudOpsEnvironment, TASKS

__version__ = "1.0.0"

__all__ = [
    "Observation",
    "Action", 
    "Reward",
    "Resource",
    "Metrics",
    "SLA",
    "CloudOpsEnvironment",
    "TASKS",
]