Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/code_embedding/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ CocoInsight is in Early Access now (Free) 😊 You found us! A quick 3 minute vi
Run CocoInsight to understand your RAG data pipeline:

```
python main.py cocoindex server -c https://cocoindex.io
python main.py cocoindex server -ci
```

Then open the CocoInsight UI at [https://cocoindex.io/cocoinsight](https://cocoindex.io/cocoinsight).
2 changes: 1 addition & 1 deletion examples/code_embedding/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ name = "code-embedding"
version = "0.1.0"
description = "Simple example for cocoindex: build embedding index based on source code."
requires-python = ">=3.10"
dependencies = ["cocoindex>=0.1.26", "python-dotenv>=1.0.1"]
dependencies = ["cocoindex>=0.1.30", "python-dotenv>=1.0.1"]
6 changes: 1 addition & 5 deletions examples/docs_to_knowledge_graph/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,11 @@ I used CocoInsight (Free beta now) to troubleshoot the index generation and unde
It just connects to your local CocoIndex server, with Zero pipeline data retention. Run following command to start CocoInsight:

```bash
python3 main.py cocoindex server -c https://cocoindex.io
python main.py cocoindex server -ci
```

And then open the url https://cocoindex.io/cocoinsight.

```
python main.py cocoindex server -c https://cocoindex.io
```

<img width="1430" alt="cocoinsight" src="https://github.com/user-attachments/assets/d5ada581-cceb-42bf-a949-132df674f3dd" />


2 changes: 1 addition & 1 deletion examples/docs_to_knowledge_graph/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ name = "manuals-to-kg"
version = "0.1.0"
description = "Simple example for cocoindex: extract triples from files and build knowledge graph."
requires-python = ">=3.10"
dependencies = ["cocoindex>=0.1.26", "python-dotenv>=1.0.1"]
dependencies = ["cocoindex>=0.1.30", "python-dotenv>=1.0.1"]
4 changes: 2 additions & 2 deletions examples/gdrive_text_embedding/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ CocoInsight is in Early Access now (Free) 😊 You found us! A quick 3 minute vi
Run CocoInsight to understand your RAG data pipeline:

```sh
python main.py cocoindex server -c https://cocoindex.io
python main.py cocoindex server -ci
```

You can also add a `-L` flag to make the server keep updating the index to reflect source changes at the same time:

```sh
python main.py cocoindex server -c https://cocoindex.io -L
python main.py cocoindex server -ci -L
```

Then open the CocoInsight UI at [https://cocoindex.io/cocoinsight](https://cocoindex.io/cocoinsight).
2 changes: 1 addition & 1 deletion examples/gdrive_text_embedding/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ name = "gdrive-text-embedding"
version = "0.1.0"
description = "Simple example for cocoindex: build embedding index based on Google Drive files."
requires-python = ">=3.11"
dependencies = ["cocoindex>=0.1.26", "python-dotenv>=1.0.1"]
dependencies = ["cocoindex>=0.1.30", "python-dotenv>=1.0.1"]
2 changes: 1 addition & 1 deletion examples/manuals_llm_extraction/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ CocoInsight is a tool to help you understand your data pipeline and data index.
Run CocoInsight to understand your RAG data pipeline:

```
python main.py cocoindex server -c https://cocoindex.io
python main.py cocoindex server -ci
```

Then open the CocoInsight UI at [https://cocoindex.io/cocoinsight](https://cocoindex.io/cocoinsight). It connects to your local CocoIndex server with zero data retention.
Expand Down
2 changes: 1 addition & 1 deletion examples/manuals_llm_extraction/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
description = "Simple example for cocoindex: extract structured information from a Markdown file using LLM."
requires-python = ">=3.10"
dependencies = [
"cocoindex>=0.1.26",
"cocoindex>=0.1.30",
"python-dotenv>=1.0.1",
"marker-pdf>=1.5.2",
]
2 changes: 1 addition & 1 deletion examples/pdf_embedding/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ CocoInsight is in Early Access now (Free) 😊 You found us! A quick 3 minute vi
Run CocoInsight to understand your RAG data pipeline:

```
python main.py cocoindex server -c https://cocoindex.io
python main.py cocoindex server -ci
```

Then open the CocoInsight UI at [https://cocoindex.io/cocoinsight](https://cocoindex.io/cocoinsight).
2 changes: 1 addition & 1 deletion examples/pdf_embedding/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
description = "Simple example for cocoindex: build embedding index based on local PDF files."
requires-python = ">=3.10"
dependencies = [
"cocoindex>=0.1.26",
"cocoindex>=0.1.30",
"python-dotenv>=1.0.1",
"marker-pdf>=1.5.2",
]
2 changes: 1 addition & 1 deletion examples/text_embedding/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ CocoInsight is in Early Access now (Free) 😊 You found us! A quick 3 minute vi
Run CocoInsight to understand your RAG data pipeline:

```
python main.py cocoindex server -c https://cocoindex.io
python main.py cocoindex server -ci
```

Then open the CocoInsight UI at [https://cocoindex.io/cocoinsight](https://cocoindex.io/cocoinsight).
Expand Down
2 changes: 1 addition & 1 deletion examples/text_embedding/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ name = "text-embedding"
version = "0.1.0"
description = "Simple example for cocoindex: build embedding index based on local text files."
requires-python = ">=3.10"
dependencies = ["cocoindex>=0.1.26", "python-dotenv>=1.0.1"]
dependencies = ["cocoindex>=0.1.30", "python-dotenv>=1.0.1"]
2 changes: 1 addition & 1 deletion examples/text_embedding_qdrant/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ CocoInsight is in Early Access now (Free) 😊 You found us! A quick 3 minute vi
Run CocoInsight to understand your RAG data pipeline:

```bash
python main.py cocoindex server -c https://cocoindex.io
python main.py cocoindex server -ci
```

Then open the CocoInsight UI at [https://cocoindex.io/cocoinsight](https://cocoindex.io/cocoinsight).
2 changes: 1 addition & 1 deletion examples/text_embedding_qdrant/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ name = "text-embedding-qdrant"
version = "0.1.0"
description = "Simple example for cocoindex: build embedding index based on local text files."
requires-python = ">=3.10"
dependencies = ["cocoindex>=0.1.26", "python-dotenv>=1.0.1"]
dependencies = ["cocoindex>=0.1.30", "python-dotenv>=1.0.1"]