Skip to content

Commit 56d2a76

Browse files
author
--global
committed
add pro demo
1 parent 16904f5 commit 56d2a76

1 file changed

Lines changed: 32 additions & 27 deletions

File tree

README.md

Lines changed: 32 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,13 @@ You can explore the strategic reasoning flow directly online:
6161

6262
👉 [Explore Omen on Streamlit Cloud](https://omen-demo.streamlit.app/)
6363

64+
👉 [Explore Omen Pro on Streamlit Cloud](https://omen-pro.streamlit.app/)
65+
6466
---
6567

6668
## 🚀 Quick Start
6769

68-
If you are:
70+
If you are a:
6971

7072
- Data Scientist
7173
- AI Researcher
@@ -85,7 +87,7 @@ pip install --upgrade pip setuptools wheel
8587
pip install -e .
8688
```
8789

88-
### 🌰 View Demo
90+
### 🌰 Run Demo
8991

9092
If you want to quickly see Omen in action, a visualized sample case and its results are available in the `demo` directory. Run:
9193

@@ -95,17 +97,29 @@ streamlit run demo/app/scenario_planning.py
9597

9698
Then open `http://localhost:8501` in your browser to explore the full strategic reasoning flow.
9799

98-
### 🎵 Run Built-in Case
100+
#### End-to-End Flow
101+
102+
![End-to-End Flow](docs/assets/images/streamlit-strategic-reason-flow.png)
103+
104+
#### More details
105+
106+
You can click on each panel on the page to inspect the full chain of outputs from source document to situation artifact, scenario artifact, simulation result, and explanation artifact.
107+
108+
![Scenario Planning](docs/assets/images/streamlit-scenario-planning.png)
109+
110+
---
111+
112+
## 🎵 Run Built-in Case
99113

100114
If you want to run a complete **Analyze - Simulate - Explain** workflow, we have prepared a built-in case simulating SAP's acquisition of Reltio in March 2026.
101115

102116
The case document is `cases/situations/sap_reltio_acquisition.md`, and it can be run end-to-end with the following commands:
103117

104-
#### Step 1. Analyze
118+
### Step 1. Analyze
105119

106120
Omen's Analyze module combines strategy methodology and the data pipeline, allowing you to generate strategic insights and machine input artifacts from the source document with a single command.
107121

108-
##### Situation Analysis
122+
#### Situation Analysis
109123

110124
```bash
111125
# analyze the built-in case and pack it as "sap" alias
@@ -114,7 +128,7 @@ omen analyze situation --doc sap_reltio_acquisition --pack-id sap
114128

115129
This step generates the Situation Artifact and creates a package named `sap` for consistent use in subsequent steps.
116130

117-
##### Scenario Planning
131+
#### Scenario Planning
118132

119133
Omen `v0.1.9` provides deterministic A/B/C scenario planning capabilities.
120134

@@ -130,7 +144,7 @@ omen scenario --situation sap
130144

131145
This step generates the scenario pack artifact under `data/scenarios/sap/` for simulation.
132146

133-
#### Step 2. Simulate
147+
### Step 2. Simulate
134148

135149
Omen's simulation engine can reason across different scenarios. Use the scenario pack generated in the previous step to run simulation:
136150

@@ -140,7 +154,7 @@ omen simulate --scenario data/scenarios/sap/scenario_pack.json
140154

141155
This step generates reasoning traces and writes the deterministic result to `output/sap/result.json`.
142156

143-
#### Step 3. Explain
157+
### Step 3. Explain
144158

145159
Omen's explanation module interprets simulation outcomes and traces back key decision points and risk items (known unknowns) from the situation artifact to generate decision-ready insights and recommendations:
146160

@@ -152,41 +166,32 @@ This step generates a structured explanation artifact at `output/sap/explanation
152166

153167
### Launch UI
154168

155-
Omen also provides a Streamlit-based UI application for visualizing the full strategic reasoning flow.
169+
The Streamlit application for visualizing the full strategic reasoning flow.
156170

157171
```bash
158172
streamlit run app/scenario_planning.py
159173
```
160174

161-
#### End-to-End Flow
162-
163-
![End-to-End Flow](docs/assets/images/streamlit-strategic-reason-flow.png)
164-
165-
#### More details
166-
167-
You can click on each panel on the page to inspect the full chain of outputs from source document to situation artifact, scenario artifact, simulation result, and explanation artifact.
168-
169-
![Scenario Planning](docs/assets/images/streamlit-scenario-planning.png)
170-
171-
## 👥 Target Audience
172-
173-
Omen is built for the following roles:
174-
* Technology Strategy Teams
175-
* Product & Platform Leads
176-
* AI Infrastructure Researchers
177-
* Open Source Ecosystem Observers
178-
* Investors & Industry Analysts
175+
Then open `http://localhost:8501` in your browser to explore the results.
179176

180177
## 🎬 Showcase
181178

182179
### Strategic Actor Analyze
183180

181+
We have built-in samples of five strategic actors:
182+
184183
* 👤 [Elon Musk](cases/actors/elon-musk.md)
185184
* 👤 [Jeff Bezos](cases/actors/jeff-bezos.md)
186185
* 👤 [Steve Jobs](cases/actors/steve-jobs.md)
187186
* 👤 [Jack Ma](cases/actors/jack-ma.md)
188187
* 👤 [Chen Jiaxing (me)](cases/actors/chen-jiaxing.md)
189188

189+
Run the following command to build strategic actors and gain insights into their profiles, behavior patterns, and influence relationship graphs:
190+
191+
```bash
192+
streamlit run app/strategic_actor.py
193+
```
194+
190195
### Strategic Reasoning Cases
191196

192197
* 🧩 [Acquisition: SAP vs Reltio](cases/situations/sap_reltio_acquisition.md)

0 commit comments

Comments
 (0)