Skip to content

Commit 3907538

Browse files
Update overview.md
1 parent 56c9a23 commit 3907538

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

docs/docs/getting_started/overview.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,15 @@ slug: /
55

66
# Welcome to CocoIndex
77

8-
CocoIndex is a ultra performant real-time data transformation framework for AI, with incremental processing.
8+
CocoIndex is an ultra-performant real-time data transformation framework for AI, with incremental processing.
99

1010
As a data framework, CocoIndex takes it to the next level on data freshness. **Incremental processing** is one of the core values provided by CocoIndex.
1111

12-
<p align="center">
13-
<img src="https://github.com/user-attachments/assets/f4eb29b3-84ee-4fa0-a1e2-80eedeeabde6" alt="Incremental Processing" width="700" />
14-
</p>
15-
16-
1712
## Programming Model
1813
CocoIndex follows the idea of [Dataflow programming](https://en.wikipedia.org/wiki/Dataflow_programming) model. Each transformation creates a new field solely based on input fields, without hidden states and value mutation. All data before/after each transformation is observable, with lineage out of the box.
1914

2015
The gist of an example data transformation:
21-
```
16+
```python
2217
# import
2318
data['content'] = flow_builder.add_source(...)
2419

@@ -34,13 +29,6 @@ collector.collect(...)
3429
collector.export(...)
3530
```
3631

37-
38-
An example dataflow diagram:
39-
<p align="center">
40-
<img width="700" alt="DataFlow" src="https://github.com/user-attachments/assets/22069379-99b1-478b-a131-15e2a9539d35" />
41-
</p>
42-
43-
4432
Get Started:
4533
- [Quick Start](https://cocoindex.io/docs/getting_started/quickstart)
4634

0 commit comments

Comments
 (0)