You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE/💡-feature-request.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,4 +17,4 @@ assignees: ''
17
17
18
18
---
19
19
❤️ Contributors, please refer to 📙[Contributing Guide](https://cocoindex.io/docs/about/contributing).
20
-
Unless the PR can be sent immediately (e.g. just a few lines of code), we recommend you to leave a comment on the issue like **`I'm working on it`** or **`Can I work on this issue?`** to avoid duplicating work. Our [Discord server](https://discord.com/invite/zpA9S2DR7s) is always open and friendly.
20
+
Unless the PR can be sent immediately (e.g. just a few lines of code), we recommend you to leave a comment on the issue like **`I'm working on it`** or **`Can I work on this issue?`** to avoid duplicating work. Our [Discord server](https://discord.com/invite/zpA9S2DR7s) is always open and friendly.
Copy file name to clipboardExpand all lines: README.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,10 +32,10 @@ Unlike a workflow orchestration framework where data is usually opaque, in CocoI
32
32
33
33
```python
34
34
# import
35
-
data['content'] = flow_builder.add_source(...)
35
+
data['content'] = flow_builder.add_source(...)
36
36
37
37
# transform
38
-
data['out'] = data['content']
38
+
data['out'] = data['content']
39
39
.transform(...)
40
40
.transform(...)
41
41
@@ -56,17 +56,17 @@ As a data framework, CocoIndex takes it to the next level on data freshness. **I
56
56
The frameworks takes care of
57
57
- Change data capture.
58
58
- Figure out what exactly needs to be updated, and only updating that without having to recompute everything.
59
-
59
+
60
60
This makes it fast to reflect any source updates to the target store. If you have concerns with surfacing stale data to AI agents and are spending lots of efforts working on infra piece to optimize the latency, the framework actually handles it for you.
61
61
62
62
63
63
## Quick Start:
64
-
If you're new to CocoIndex, we recommend checking out
64
+
If you're new to CocoIndex, we recommend checking out
- 🎬 [Quick Start Video Tutorial](https://youtu.be/gv5R8nOXsWU?si=9ioeKYkMEnYevTXT)
67
+
- 🎬 [Quick Start Video Tutorial](https://youtu.be/gv5R8nOXsWU?si=9ioeKYkMEnYevTXT)
68
68
69
-
### Setup
69
+
### Setup
70
70
71
71
1. Install CocoIndex Python library
72
72
@@ -136,8 +136,8 @@ It defines an index flow like this:
136
136
|[Google Drive Text Embedding](examples/gdrive_text_embedding)| Index text documents from Google Drive |
137
137
|[Docs to Knowledge Graph](examples/docs_to_knowledge_graph)| Extract relationships from Markdown documents and build a knowledge graph |
138
138
|[Embeddings to Qdrant](examples/text_embedding_qdrant)| Index documents in a Qdrant collection for semantic search |
139
-
|[FastAPI Server with Docker](examples/fastapi_server_docker)| Run the semantic search server in a Dockerized FastAPI setup |
140
-
|[Product Recommendation](examples/product_recommendation)| Build real-time product recommendations with LLM and graph database|
139
+
|[FastAPI Server with Docker](examples/fastapi_server_docker)| Run the semantic search server in a Dockerized FastAPI setup |
140
+
|[Product Recommendation](examples/product_recommendation)| Build real-time product recommendations with LLM and graph database|
141
141
|[Image Search with Vision API](examples/image_search)| Generates detailed captions for images using a vision model, embeds them, enables live-updating semantic search via FastAPI and served on a React frontend|
142
142
143
143
More coming and stay tuned 👀!
@@ -159,7 +159,7 @@ Join our community here:
159
159
- 📜 [Read our blog posts](https://cocoindex.io/blogs/)
160
160
161
161
## Support us:
162
-
We are constantly improving, and more features and examples are coming soon. If you love this project, please drop us a star ⭐ at GitHub repo [](https://github.com/cocoindex-io/cocoindex) to stay tuned and help us grow.
162
+
We are constantly improving, and more features and examples are coming soon. If you love this project, please drop us a star ⭐ at GitHub repo [](https://github.com/cocoindex-io/cocoindex) to stay tuned and help us grow.
Copy file name to clipboardExpand all lines: docs/docs/core/basics.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,7 @@ An indexing flow, once set up, maintains a long-lived relationship between data
71
71
72
72
***One time update**: Once triggered, CocoIndex updates the target data to reflect the version of source data up to the current moment.
73
73
***Live update**: CocoIndex continuously reacts to changes of source data and updates the target data accordingly, based on various **change capture mechanisms** for the source.
74
-
74
+
75
75
See more details in the [build / update target data](flow_methods#build--update-target-data) section.
76
76
77
77
3. CocoIndex intelligently reprocesses to propagate source changes to target by:
@@ -101,4 +101,4 @@ As an indexing flow is long-lived, it needs to store intermediate data to keep t
101
101
CocoIndex uses internal storage for this purpose.
102
102
103
103
Currently, CocoIndex uses Postgres database as the internal storage.
104
-
See [Settings](settings#databaseconnectionspec) for configuring its location, and `cocoindex setup` CLI command (see [CocoIndex CLI](cli)) creates tables for the internal storage.
104
+
See [Settings](settings#databaseconnectionspec) for configuring its location, and `cocoindex setup` CLI command (see [CocoIndex CLI](cli)) creates tables for the internal storage.
0 commit comments