diff --git a/examples/amazon_s3_embedding/pyproject.toml b/examples/amazon_s3_embedding/pyproject.toml index f6e8ea3db..0140256cb 100644 --- a/examples/amazon_s3_embedding/pyproject.toml +++ b/examples/amazon_s3_embedding/pyproject.toml @@ -3,7 +3,7 @@ name = "amazon-s3-text-embedding" 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.63", "python-dotenv>=1.0.1"] +dependencies = ["cocoindex[embeddings]>=0.1.67", "python-dotenv>=1.0.1"] [tool.setuptools] packages = [] diff --git a/examples/azure_blob_embedding/pyproject.toml b/examples/azure_blob_embedding/pyproject.toml index ffb502036..c73acb833 100644 --- a/examples/azure_blob_embedding/pyproject.toml +++ b/examples/azure_blob_embedding/pyproject.toml @@ -3,7 +3,7 @@ name = "azure-blob-text-embedding" 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.63", "python-dotenv>=1.0.1"] +dependencies = ["cocoindex[embeddings]>=0.1.67", "python-dotenv>=1.0.1"] [tool.setuptools] packages = [] diff --git a/examples/code_embedding/pyproject.toml b/examples/code_embedding/pyproject.toml index d4638940d..af7fe67bf 100644 --- a/examples/code_embedding/pyproject.toml +++ b/examples/code_embedding/pyproject.toml @@ -3,7 +3,7 @@ name = "code-embedding" 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.63", "python-dotenv>=1.0.1"] +dependencies = ["cocoindex[embeddings]>=0.1.67", "python-dotenv>=1.0.1"] [tool.setuptools] packages = [] diff --git a/examples/docs_to_knowledge_graph/pyproject.toml b/examples/docs_to_knowledge_graph/pyproject.toml index 583af0304..870ba8b74 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.63"] +dependencies = ["cocoindex>=0.1.67"] [tool.setuptools] packages = [] diff --git a/examples/gdrive_text_embedding/pyproject.toml b/examples/gdrive_text_embedding/pyproject.toml index 132454c6c..ceb588dc7 100644 --- a/examples/gdrive_text_embedding/pyproject.toml +++ b/examples/gdrive_text_embedding/pyproject.toml @@ -3,7 +3,7 @@ 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[embeddings]>=0.1.63", "python-dotenv>=1.0.1"] +dependencies = ["cocoindex[embeddings]>=0.1.67", "python-dotenv>=1.0.1"] [tool.setuptools] packages = [] diff --git a/examples/image_search/pyproject.toml b/examples/image_search/pyproject.toml index bfb1e62ec..d7d4a3bc8 100644 --- a/examples/image_search/pyproject.toml +++ b/examples/image_search/pyproject.toml @@ -4,7 +4,7 @@ version = "0.1.0" description = "Simple example for cocoindex: build embedding index based on images." requires-python = ">=3.11" dependencies = [ - "cocoindex>=0.1.63", + "cocoindex>=0.1.67", "python-dotenv>=1.0.1", "fastapi>=0.100.0", "torch>=2.0.0", diff --git a/examples/manuals_llm_extraction/pyproject.toml b/examples/manuals_llm_extraction/pyproject.toml index 48db332a4..91bc0ae1b 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.63", "marker-pdf>=1.5.2"] +dependencies = ["cocoindex>=0.1.67", "marker-pdf>=1.5.2"] [tool.setuptools] packages = [] diff --git a/examples/paper_metadata/pyproject.toml b/examples/paper_metadata/pyproject.toml index 6125c1b70..ec7579e50 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.63", + "cocoindex[embeddings]>=0.1.67", "pypdf>=5.7.0", "marker-pdf>=1.5.2", ] diff --git a/examples/patient_intake_extraction/pyproject.toml b/examples/patient_intake_extraction/pyproject.toml index ff5c3a2a3..346abb880 100644 --- a/examples/patient_intake_extraction/pyproject.toml +++ b/examples/patient_intake_extraction/pyproject.toml @@ -4,8 +4,8 @@ version = "0.1.0" description = "Extract structured information from patient intake forms using LLM." requires-python = ">=3.10" dependencies = [ - "cocoindex>=0.1.63", + "cocoindex>=0.1.67", "python-dotenv>=1.0.1", "markitdown>=0.1.2", - "openai>=1.68.2" + "openai>=1.68.2", ] diff --git a/examples/pdf_embedding/pyproject.toml b/examples/pdf_embedding/pyproject.toml index 3a34f2aa9..9f1adee02 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.63", + "cocoindex[embeddings]>=0.1.67", "python-dotenv>=1.0.1", "marker-pdf>=1.5.2", ] diff --git a/examples/product_recommendation/pyproject.toml b/examples/product_recommendation/pyproject.toml index 72688cd11..8fb1dc1fc 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.63", "jinja2>=3.1.6"] +dependencies = ["cocoindex>=0.1.67", "jinja2>=3.1.6"] [tool.setuptools] packages = [] diff --git a/examples/text_embedding/pyproject.toml b/examples/text_embedding/pyproject.toml index 9b501eb92..3fb25fc0e 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.63", + "cocoindex[embeddings]>=0.1.67", "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 9d94b8385..d8afd56f4 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.63", + "cocoindex[embeddings]>=0.1.67", "python-dotenv>=1.0.1", "qdrant-client>=1.6.0", ]