File size: 326 Bytes
b77d3c5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# salespath_env/server/app.py

from openenv.core.env_server import create_fastapi_app

from ..models import (
    SalesPathAction,
    SalesPathObservation,
)
from .salespath_environment import (
    SalesPathEnvironment,
)


app = create_fastapi_app(
    SalesPathEnvironment,
    SalesPathAction,
    SalesPathObservation,
)