Skip to content

Commit 4f31163

Browse files
committed
adding beta status
1 parent 706aa0c commit 4f31163

5 files changed

Lines changed: 13 additions & 3 deletions

File tree

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,9 @@ Exosphere is built on a flexible, node-based architecture that makes it easy to
8585

8686
Schedule your workflows to run automatically using cron expressions:
8787

88+
!!! info "Beta Feature"
89+
Available in `beta-latest` Docker tag and SDK version `0.0.3b1`
90+
8891
```python
8992
from exospherehost import StateManager, GraphNodeModel, CronTrigger
9093

@@ -99,7 +102,7 @@ result = await state_manager.upsert_graph(
99102
graph_name="data-pipeline",
100103
graph_nodes=graph_nodes,
101104
secrets={"api_key": "your-key"},
102-
triggers=triggers # Enable automatic execution
105+
triggers=triggers # Enable automatic execution (Beta)
103106
)
104107
```
105108

docs/docs/exosphere/concepts.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ graph TB
5757
- **Cron Scheduling**: Schedule automatic graph execution using standard cron expressions
5858
- **Unattended Operation**: Workflows run automatically without manual intervention
5959
- **Multiple Schedules**: Each graph can have multiple triggers with different schedules
60+
- **Beta**: Available in `beta-latest` Docker tag and SDK version `0.0.3b1`
6061

6162
## How They Work Together
6263

docs/docs/exosphere/graph-components.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,9 @@ Graph-level key-value storage for shared state:
101101

102102
Schedule automatic graph execution using cron expressions:
103103

104+
!!! info "Beta Feature"
105+
Available in `beta-latest` Docker tag and SDK version `0.0.3b1`
106+
104107
```json
105108
{
106109
"triggers": [

docs/docs/exosphere/python-sdk-graph.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ async def create_graph():
5757
secrets={"api_key": "your-key"},
5858
retry_policy=retry_policy,
5959
store_config=store_config,
60-
triggers=triggers
60+
triggers=triggers # Beta: SDK version 0.0.3b1
6161
)
6262
return result
6363
```

docs/docs/exosphere/triggers.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Triggers
22

3+
!!! warning "Beta Feature"
4+
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.
5+
36
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.
47

58
## Overview
@@ -204,4 +207,4 @@ result = await state_manager.upsert_graph(
204207
## Related Concepts
205208

206209
- **[Graph Components](./graph-components.md)** - Complete overview of graph features
207-
- **[Python SDK](./python-sdk-graph.md)** - Type-safe graph creation with triggers
210+
- **[Python SDK](./python-sdk-graph.md)** - Type-safe graph creation with triggers

0 commit comments

Comments
 (0)