diff --git a/skyvern/forge/api_app.py b/skyvern/forge/api_app.py index 82fb6cc3..77f5b936 100644 --- a/skyvern/forge/api_app.py +++ b/skyvern/forge/api_app.py @@ -41,7 +41,11 @@ def custom_openapi() -> dict: description="API for Skyvern", routes=app.routes, ) - openapi_schema["servers"] = [{"url": "https://api.skyvern.com", "x-fern-server-name": "Production"}] + openapi_schema["servers"] = [ + {"url": "https://api.skyvern.com", "x-fern-server-name": "Production"}, + {"url": "https://api-staging.skyvern.com", "x-fern-server-name": "Staging"}, + {"url": "http://localhost:8000", "x-fern-server-name": "Development"}, + ] app.openapi_schema = openapi_schema return app.openapi_schema