CoolFace
Apppublic

rubyCodes/customer-support-openenv

sourceHugging Faceupdated 6mo agoView on Hugging Face
0likes
app.py10 linesDownload Raw Back to server
1from openenv.core.env_server import create_fastapi_app2 3from server.environment import CustomerSupportEnvironment4from models import CustomerSupportAction, CustomerSupportObservation5 6app = create_fastapi_app(7    CustomerSupportEnvironment,8    CustomerSupportAction,9    CustomerSupportObservation10)