From 6cd2f92de4329a96293b0527437a125833573567 Mon Sep 17 00:00:00 2001 From: Jiangzhou He Date: Wed, 10 Sep 2025 00:28:41 -0700 Subject: [PATCH] chore: bump cocoindex dependency version --- 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 6245bac0..3c21f5b9 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.2.4", + "cocoindex[embeddings]>=0.2.8", "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 de2d7f9d..b46c8a54 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.2.4", + "cocoindex[embeddings]>=0.2.8", "python-dotenv>=1.0.1", "psycopg[binary,pool]", ] diff --git a/examples/code_embedding/pyproject.toml b/examples/code_embedding/pyproject.toml index 9629ef42..4b3868d6 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.2.4", + "cocoindex[embeddings]>=0.2.8", "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 907647df..d4fb06af 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.2.4", "markdown-it-py[linkify,plugins]"] +dependencies = ["cocoindex>=0.2.8", "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 6669bac9..40c85a98 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.2.4"] +dependencies = ["cocoindex>=0.2.8"] [tool.setuptools] packages = [] diff --git a/examples/face_recognition/pyproject.toml b/examples/face_recognition/pyproject.toml index c3700a07..fd338f67 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.2.4", + "cocoindex>=0.2.8", "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 4b9adc86..07ae58c5 100644 --- a/examples/fastapi_server_docker/requirements.txt +++ b/examples/fastapi_server_docker/requirements.txt @@ -1,4 +1,4 @@ -cocoindex[embeddings]>=0.2.4 +cocoindex[embeddings]>=0.2.8 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 e372e905..66a5d827 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.2.4", + "cocoindex[embeddings]>=0.2.8", "python-dotenv>=1.0.1", "psycopg[binary,pool]", ] diff --git a/examples/image_search/pyproject.toml b/examples/image_search/pyproject.toml index 8ff11e39..f248a49d 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.2.4", + "cocoindex[colpali]>=0.2.8", "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 c7cb6cdc..f9061599 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.2.4", "python-dotenv>=1.1.0"] +dependencies = ["cocoindex>=0.2.8", "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 0012a4a3..c3fb97d6 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.2.4", "marker-pdf>=1.8.5"] +dependencies = ["cocoindex>=0.2.8", "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 a8912d93..fe92da67 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.2.4", + "cocoindex[colpali]>=0.2.8", "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 060c3cc2..47ce78f5 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.2.4", + "cocoindex[embeddings]>=0.2.8", "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 3e405276..2aae43bc 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.2.4", + "cocoindex>=0.2.8", "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 cd278b2a..7ec0e546 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.2.4", + "cocoindex[embeddings]>=0.2.8", "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 47783e66..9ddd070e 100644 --- a/examples/postgres_source/pyproject.toml +++ b/examples/postgres_source/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "Demonstrate how to use Postgres tables as the source for CocoIndex." requires-python = ">=3.11" dependencies = [ - "cocoindex[embeddings]>=0.2.4", + "cocoindex[embeddings]>=0.2.8", "python-dotenv>=1.0.1", "pgvector>=0.4.1", "psycopg[binary,pool]", diff --git a/examples/product_recommendation/pyproject.toml b/examples/product_recommendation/pyproject.toml index 9faca26b..7b7e8ed7 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.2.4", "jinja2>=3.1.6"] +dependencies = ["cocoindex>=0.2.8", "jinja2>=3.1.6"] [tool.setuptools] packages = [] diff --git a/examples/text_embedding/pyproject.toml b/examples/text_embedding/pyproject.toml index 2b00fe1a..3ad848bd 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.2.4", + "cocoindex[embeddings]>=0.2.8", "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 3ae7d660..43878927 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.2.4", + "cocoindex[embeddings]>=0.2.8", "python-dotenv>=1.0.1", "qdrant-client>=1.6.0", ]