Skip to content

Commit d2e292a

Browse files
NiveditJainnk-ag
andauthored
Removed v0.0.3b from docs (#641)
* docs: update README to reflect new features and capabilities of Exosphere - Revised project description to emphasize Exosphere as a runtime for AI agents and workflows. - Enhanced sections on reliability, developer experience, and production readiness. - Added details on autonomous execution and scalable agent lifecycles. - Removed outdated examples and streamlined content for clarity. * docs: update README to include marketplace feature and release cycle - Expanded the "Plug-and-Play Nodes" section to highlight the new marketplace for community-contributed tools. - Added a new section detailing the release cycle and roadmap, including monthly releases and issue labeling for better project tracking. * Update README to improve introduction, feature highlights, and quick start section - Unified agent/workflow runtime description for clarity and conciseness - Enhanced feature bullet points for reliability, developer experience, and infrastructure sections - Added clear quick-start sample for faster onboarding - Improved badge organization and external resource links - Applied minor copy editing, structure, and layout alignment across readme variants * Refactor README and documentation for clarity and structure - Updated the project description to emphasize Exosphere as a reliability runtime for AI agents. - Reorganized feature sections into a table format for better readability and accessibility. - Enhanced the "Why Exosphere?" section to highlight key capabilities and benefits. - Added a new image asset to illustrate functionality. - Improved navigation structure in documentation and added new markdown extensions for better formatting. - Streamlined content across various sections for consistency and clarity. * fix: correct spelling in project title for consistency - Updated the project title from "Reliablity" to "Reliability" to ensure accurate representation of Exosphere's purpose as a runtime for AI agents. * removed v0.0.3b --------- Co-authored-by: Nikita Agarwal <niki.darj@gmail.com>
1 parent cadfc99 commit d2e292a

5 files changed

Lines changed: 1 addition & 36 deletions

File tree

docs/docs/docker-compose-setup.md

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -82,34 +82,6 @@ Exosphere uses MongoDB as the database to manage states. You can either have mon
8282
- Exosphere State Manager: [http://localhost:8000](http://localhost:8000)
8383

8484

85-
## Beta Version
86-
87-
To run the latest beta version of Exosphere with the newest features, replace container tags with `beta-latest`:
88-
89-
=== ".env File"
90-
91-
```bash
92-
EXOSPHERE_TAG=beta-latest
93-
```
94-
=== "Environment Variables"
95-
96-
```bash
97-
export EXOSPHERE_TAG=beta-latest
98-
```
99-
100-
Get the docker image running:
101-
102-
=== "Cloud Mongodb"
103-
104-
```bash
105-
docker compose -f docker-compose.yml up -d
106-
```
107-
=== "Local Mongodb"
108-
109-
```bash
110-
docker compose -f docker-compose-with-mongodb.yml up -d
111-
```
112-
11385
## Access Your Services
11486

11587
After running the Docker Compose command:

docs/docs/exosphere/concepts.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ 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`
6160

6261
## How They Work Together
6362

docs/docs/exosphere/graph-components.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,6 @@ 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-
107104
```json
108105
{
109106
"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 # Beta: SDK version 0.0.3b1
60+
triggers=triggers
6161
)
6262
return result
6363
```

docs/docs/exosphere/triggers.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
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-
63
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.
74

85
## Overview

0 commit comments

Comments
 (0)