diff --git a/docs/docs/docker-compose-setup.md b/docs/docs/docker-compose-setup.md index cbae1f48..b17109a4 100644 --- a/docs/docs/docker-compose-setup.md +++ b/docs/docs/docker-compose-setup.md @@ -82,34 +82,6 @@ Exosphere uses MongoDB as the database to manage states. You can either have mon - Exosphere State Manager: [http://localhost:8000](http://localhost:8000) -## Beta Version - -To run the latest beta version of Exosphere with the newest features, replace container tags with `beta-latest`: - -=== ".env File" - - ```bash - EXOSPHERE_TAG=beta-latest - ``` -=== "Environment Variables" - - ```bash - export EXOSPHERE_TAG=beta-latest - ``` - -Get the docker image running: - -=== "Cloud Mongodb" - - ```bash - docker compose -f docker-compose.yml up -d - ``` -=== "Local Mongodb" - - ```bash - docker compose -f docker-compose-with-mongodb.yml up -d - ``` - ## Access Your Services After running the Docker Compose command: diff --git a/docs/docs/exosphere/concepts.md b/docs/docs/exosphere/concepts.md index b28ab82b..68e8289f 100644 --- a/docs/docs/exosphere/concepts.md +++ b/docs/docs/exosphere/concepts.md @@ -57,7 +57,6 @@ graph TB - **Cron Scheduling**: Schedule automatic graph execution using standard cron expressions - **Unattended Operation**: Workflows run automatically without manual intervention - **Multiple Schedules**: Each graph can have multiple triggers with different schedules -- **Beta**: Available in `beta-latest` Docker tag and SDK version `0.0.3b1` ## How They Work Together diff --git a/docs/docs/exosphere/graph-components.md b/docs/docs/exosphere/graph-components.md index de596d2d..53b16f88 100644 --- a/docs/docs/exosphere/graph-components.md +++ b/docs/docs/exosphere/graph-components.md @@ -101,9 +101,6 @@ Graph-level key-value storage for shared state: Schedule automatic graph execution using cron expressions: -!!! info "Beta Feature" - Available in `beta-latest` Docker tag and SDK version `0.0.3b1` - ```json { "triggers": [ diff --git a/docs/docs/exosphere/python-sdk-graph.md b/docs/docs/exosphere/python-sdk-graph.md index f97a360c..5932cd2f 100644 --- a/docs/docs/exosphere/python-sdk-graph.md +++ b/docs/docs/exosphere/python-sdk-graph.md @@ -57,7 +57,7 @@ async def create_graph(): secrets={"api_key": "your-key"}, retry_policy=retry_policy, store_config=store_config, - triggers=triggers # Beta: SDK version 0.0.3b1 + triggers=triggers ) return result ``` diff --git a/docs/docs/exosphere/triggers.md b/docs/docs/exosphere/triggers.md index 67de4cfd..ecc86955 100644 --- a/docs/docs/exosphere/triggers.md +++ b/docs/docs/exosphere/triggers.md @@ -1,8 +1,5 @@ # Triggers -!!! warning "Beta Feature" - Triggers functionality is currently in beta and available under the `beta-latest` Docker tag and SDK version `0.0.3b1`. The API may change in future versions. - Triggers allow you to schedule automatic execution of your graphs using cron expressions. When a trigger is defined, Exosphere will automatically execute your graph at the specified times without requiring manual intervention. ## Overview