From 803a3ef8e301ad24942413de4d1b45178663133d Mon Sep 17 00:00:00 2001 From: Linghua Jin Date: Thu, 28 Aug 2025 18:45:41 -0700 Subject: [PATCH] bump cocoindex version in dexamples --- examples/amazon_s3_embedding/pyproject.toml | 2 +- examples/azure_blob_embedding/pyproject.toml | 2 +- examples/code_embedding/pyproject.toml | 2 +- examples/custom_output_files/pyproject.toml | 2 +- examples/docs_to_knowledge_graph/pyproject.toml | 2 +- examples/face_recognition/pyproject.toml | 2 +- examples/fastapi_server_docker/requirements.txt | 2 +- examples/gdrive_text_embedding/pyproject.toml | 2 +- examples/image_search/pyproject.toml | 2 +- examples/live_updates/pyproject.toml | 2 +- examples/manuals_llm_extraction/pyproject.toml | 2 +- examples/multi_format_indexing/pyproject.toml | 2 +- examples/paper_metadata/pyproject.toml | 2 +- examples/patient_intake_extraction/pyproject.toml | 2 +- examples/pdf_embedding/pyproject.toml | 2 +- examples/postgres_source/pyproject.toml | 2 +- examples/product_recommendation/pyproject.toml | 2 +- examples/text_embedding/pyproject.toml | 2 +- examples/text_embedding_qdrant/pyproject.toml | 2 +- 19 files changed, 19 insertions(+), 19 deletions(-) diff --git a/examples/amazon_s3_embedding/pyproject.toml b/examples/amazon_s3_embedding/pyproject.toml index 035912b7d..f7029f133 100644 --- a/examples/amazon_s3_embedding/pyproject.toml +++ b/examples/amazon_s3_embedding/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "Simple example for cocoindex: build embedding index based on Amazon S3 files." requires-python = ">=3.11" dependencies = [ - "cocoindex[embeddings]>=0.1.79", + "cocoindex[embeddings]>=0.2.1", "python-dotenv>=1.0.1", "psycopg[binary,pool]", ] diff --git a/examples/azure_blob_embedding/pyproject.toml b/examples/azure_blob_embedding/pyproject.toml index f5373c52f..2c569708f 100644 --- a/examples/azure_blob_embedding/pyproject.toml +++ b/examples/azure_blob_embedding/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "Simple example for cocoindex: build embedding index based on Azure Blob Storage files." requires-python = ">=3.11" dependencies = [ - "cocoindex[embeddings]>=0.1.79", + "cocoindex[embeddings]>=0.2.1", "python-dotenv>=1.0.1", "psycopg[binary,pool]", ] diff --git a/examples/code_embedding/pyproject.toml b/examples/code_embedding/pyproject.toml index 3c42858a0..5bcbf6bb5 100644 --- a/examples/code_embedding/pyproject.toml +++ b/examples/code_embedding/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "Simple example for cocoindex: build embedding index based on source code." requires-python = ">=3.11" dependencies = [ - "cocoindex[embeddings]>=0.1.79", + "cocoindex[embeddings]>=0.2.1", "python-dotenv>=1.0.1", "pgvector>=0.4.1", "psycopg[binary,pool]", diff --git a/examples/custom_output_files/pyproject.toml b/examples/custom_output_files/pyproject.toml index 8f87073be..6e180c460 100644 --- a/examples/custom_output_files/pyproject.toml +++ b/examples/custom_output_files/pyproject.toml @@ -3,7 +3,7 @@ name = "custom-output-files" version = "0.1.0" description = "Simple example for cocoindex: convert markdown files to HTML files and save them to a local directory." requires-python = ">=3.11" -dependencies = ["cocoindex>=0.1.79", "markdown-it-py[linkify,plugins]"] +dependencies = ["cocoindex>=0.2.1", "markdown-it-py[linkify,plugins]"] [tool.setuptools] packages = [] diff --git a/examples/docs_to_knowledge_graph/pyproject.toml b/examples/docs_to_knowledge_graph/pyproject.toml index 16908acfb..80e9dba06 100644 --- a/examples/docs_to_knowledge_graph/pyproject.toml +++ b/examples/docs_to_knowledge_graph/pyproject.toml @@ -3,7 +3,7 @@ name = "manuals-to-kg" version = "0.1.0" description = "Simple example for cocoindex: extract triples from files and build knowledge graph." requires-python = ">=3.11" -dependencies = ["cocoindex>=0.1.79"] +dependencies = ["cocoindex>=0.2.1"] [tool.setuptools] packages = [] diff --git a/examples/face_recognition/pyproject.toml b/examples/face_recognition/pyproject.toml index 45e247372..52020292c 100644 --- a/examples/face_recognition/pyproject.toml +++ b/examples/face_recognition/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "Build index for papers with both metadata and content embeddings" requires-python = ">=3.11" dependencies = [ - "cocoindex>=0.1.79", + "cocoindex>=0.2.1", "face-recognition>=1.3.0", "pillow>=10.0.0", "numpy>=1.26.0", diff --git a/examples/fastapi_server_docker/requirements.txt b/examples/fastapi_server_docker/requirements.txt index 8718448cd..8c4129a60 100644 --- a/examples/fastapi_server_docker/requirements.txt +++ b/examples/fastapi_server_docker/requirements.txt @@ -1,4 +1,4 @@ -cocoindex[embeddings]>=0.1.79 +cocoindex[embeddings]>=0.2.1 python-dotenv>=1.0.1 fastapi==0.115.12 fastapi-cli==0.0.7 diff --git a/examples/gdrive_text_embedding/pyproject.toml b/examples/gdrive_text_embedding/pyproject.toml index 9deb4ad7f..1203c1f1a 100644 --- a/examples/gdrive_text_embedding/pyproject.toml +++ b/examples/gdrive_text_embedding/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "Simple example for cocoindex: build embedding index based on Google Drive files." requires-python = ">=3.11" dependencies = [ - "cocoindex[embeddings]>=0.1.79", + "cocoindex[embeddings]>=0.2.1", "python-dotenv>=1.0.1", "psycopg[binary,pool]", ] diff --git a/examples/image_search/pyproject.toml b/examples/image_search/pyproject.toml index f6800c02a..707c7e89a 100644 --- a/examples/image_search/pyproject.toml +++ b/examples/image_search/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "Image search examples for cocoindex: CLIP and ColPali-based embedding." requires-python = ">=3.11" dependencies = [ - "cocoindex[colpali]>=0.1.79", + "cocoindex[colpali]>=0.2.1", "python-dotenv>=1.0.1", "fastapi>=0.100.0", "torch>=2.0.0", diff --git a/examples/live_updates/pyproject.toml b/examples/live_updates/pyproject.toml index 41cb4ae6c..a2effa3ad 100644 --- a/examples/live_updates/pyproject.toml +++ b/examples/live_updates/pyproject.toml @@ -3,7 +3,7 @@ name = "live-updates-example" version = "0.1.0" description = "Simple example for cocoindex: perform live updates based on local markdown files." requires-python = ">=3.11" -dependencies = ["cocoindex>=0.1.79", "python-dotenv>=1.1.0"] +dependencies = ["cocoindex>=0.2.1", "python-dotenv>=1.1.0"] [tools.setuptools] packages = [] diff --git a/examples/manuals_llm_extraction/pyproject.toml b/examples/manuals_llm_extraction/pyproject.toml index e01d62917..2a715fb22 100644 --- a/examples/manuals_llm_extraction/pyproject.toml +++ b/examples/manuals_llm_extraction/pyproject.toml @@ -3,7 +3,7 @@ name = "manuals-llm-extraction" version = "0.1.0" description = "Simple example for cocoindex: extract structured information from a Markdown file using LLM." requires-python = ">=3.11" -dependencies = ["cocoindex>=0.1.79", "marker-pdf>=1.8.5"] +dependencies = ["cocoindex>=0.2.1", "marker-pdf>=1.8.5"] [tool.setuptools] packages = [] diff --git a/examples/multi_format_indexing/pyproject.toml b/examples/multi_format_indexing/pyproject.toml index f726c0034..cc53082c1 100644 --- a/examples/multi_format_indexing/pyproject.toml +++ b/examples/multi_format_indexing/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "Simple example for cocoindex: build embedding index based on local PDF files." requires-python = ">=3.11" dependencies = [ - "cocoindex[colpali]>=0.1.79", + "cocoindex[colpali]>=0.2.1", "python-dotenv>=1.0.1", "pdf2image>=1.17.0", "qdrant-client>=1.15.0", diff --git a/examples/paper_metadata/pyproject.toml b/examples/paper_metadata/pyproject.toml index de95aaf27..88cead1eb 100644 --- a/examples/paper_metadata/pyproject.toml +++ b/examples/paper_metadata/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "Build index for papers with both metadata and content embeddings" requires-python = ">=3.11" dependencies = [ - "cocoindex[embeddings]>=0.1.83", + "cocoindex[embeddings]>=0.2.1", "pypdf>=5.7.0", "marker-pdf>=1.8.5", ] diff --git a/examples/patient_intake_extraction/pyproject.toml b/examples/patient_intake_extraction/pyproject.toml index bb0492607..72f96836a 100644 --- a/examples/patient_intake_extraction/pyproject.toml +++ b/examples/patient_intake_extraction/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "Extract structured information from patient intake forms using LLM." requires-python = ">=3.10" dependencies = [ - "cocoindex>=0.1.79", + "cocoindex>=0.2.1", "python-dotenv>=1.0.1", "markitdown>=0.1.2", "openai>=1.68.2", diff --git a/examples/pdf_embedding/pyproject.toml b/examples/pdf_embedding/pyproject.toml index b532ba82d..dfb5124b4 100644 --- a/examples/pdf_embedding/pyproject.toml +++ b/examples/pdf_embedding/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "Simple example for cocoindex: build embedding index based on local PDF files." requires-python = ">=3.11" dependencies = [ - "cocoindex[embeddings]>=0.1.79", + "cocoindex[embeddings]>=0.2.1", "python-dotenv>=1.0.1", "marker-pdf>=1.8.5", "psycopg[binary,pool]", diff --git a/examples/postgres_source/pyproject.toml b/examples/postgres_source/pyproject.toml index b0391b5ad..83876f07b 100644 --- a/examples/postgres_source/pyproject.toml +++ b/examples/postgres_source/pyproject.toml @@ -3,7 +3,7 @@ name = "postgres-source" version = "0.1.0" description = "Demonstrate how to use Postgres tables as the source for CocoIndex." requires-python = ">=3.11" -dependencies = ["cocoindex[embeddings]>=0.1.83"] +dependencies = ["cocoindex[embeddings]>=0.2.1"] [tool.setuptools] packages = [] diff --git a/examples/product_recommendation/pyproject.toml b/examples/product_recommendation/pyproject.toml index 63e09059b..148678474 100644 --- a/examples/product_recommendation/pyproject.toml +++ b/examples/product_recommendation/pyproject.toml @@ -3,7 +3,7 @@ name = "cocoindex-ecommerce-taxonomy" version = "0.1.0" description = "Simple example for CocoIndex: extract taxonomy from e-commerce products and build knowledge graph." requires-python = ">=3.11" -dependencies = ["cocoindex>=0.1.79", "jinja2>=3.1.6"] +dependencies = ["cocoindex>=0.2.1", "jinja2>=3.1.6"] [tool.setuptools] packages = [] diff --git a/examples/text_embedding/pyproject.toml b/examples/text_embedding/pyproject.toml index c092c89e5..2bce1b923 100644 --- a/examples/text_embedding/pyproject.toml +++ b/examples/text_embedding/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "Simple example for cocoindex: build embedding index based on local text files." requires-python = ">=3.11" dependencies = [ - "cocoindex[embeddings]>=0.1.79", + "cocoindex[embeddings]>=0.2.1", "python-dotenv>=1.0.1", "pgvector>=0.4.1", "psycopg[binary,pool]", diff --git a/examples/text_embedding_qdrant/pyproject.toml b/examples/text_embedding_qdrant/pyproject.toml index 425950257..d8047c39a 100644 --- a/examples/text_embedding_qdrant/pyproject.toml +++ b/examples/text_embedding_qdrant/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "Simple example for cocoindex: build embedding index based on local text files." requires-python = ">=3.11" dependencies = [ - "cocoindex[embeddings]>=0.1.79", + "cocoindex[embeddings]>=0.2.1", "python-dotenv>=1.0.1", "qdrant-client>=1.6.0", ]