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/amazon_s3_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 Amazon S3 files."
requires-python = ">=3.11"
dependencies = [
"cocoindex[embeddings]>=0.2.1",
"cocoindex[embeddings]>=0.2.3",
"python-dotenv>=1.0.1",
"psycopg[binary,pool]",
]
Expand Down
2 changes: 1 addition & 1 deletion examples/azure_blob_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 Azure Blob Storage files."
requires-python = ">=3.11"
dependencies = [
"cocoindex[embeddings]>=0.2.1",
"cocoindex[embeddings]>=0.2.3",
"python-dotenv>=1.0.1",
"psycopg[binary,pool]",
]
Expand Down
2 changes: 1 addition & 1 deletion examples/code_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 source code."
requires-python = ">=3.11"
dependencies = [
"cocoindex[embeddings]>=0.2.1",
"cocoindex[embeddings]>=0.2.3",
"python-dotenv>=1.0.1",
"pgvector>=0.4.1",
"psycopg[binary,pool]",
Expand Down
2 changes: 1 addition & 1 deletion examples/custom_output_files/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1", "markdown-it-py[linkify,plugins]"]
dependencies = ["cocoindex>=0.2.3", "markdown-it-py[linkify,plugins]"]

[tool.setuptools]
packages = []
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,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.1"]
dependencies = ["cocoindex>=0.2.3"]

[tool.setuptools]
packages = []
2 changes: 1 addition & 1 deletion examples/face_recognition/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1",
"cocoindex>=0.2.3",
"face-recognition>=1.3.0",
"pillow>=10.0.0",
"numpy>=1.26.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/fastapi_server_docker/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cocoindex[embeddings]>=0.2.1
cocoindex[embeddings]>=0.2.3
python-dotenv>=1.0.1
fastapi==0.115.12
fastapi-cli==0.0.7
Expand Down
2 changes: 1 addition & 1 deletion examples/gdrive_text_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 Google Drive files."
requires-python = ">=3.11"
dependencies = [
"cocoindex[embeddings]>=0.2.1",
"cocoindex[embeddings]>=0.2.3",
"python-dotenv>=1.0.1",
"psycopg[binary,pool]",
]
Expand Down
4 changes: 2 additions & 2 deletions examples/image_search/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ version = "0.1.0"
description = "Image search examples for cocoindex: CLIP and ColPali-based embedding."
requires-python = ">=3.11"
dependencies = [
"cocoindex[colpali]>=0.2.1",
"cocoindex[colpali]>=0.2.3",
"python-dotenv>=1.0.1",
"fastapi>=0.100.0",
"torch>=2.0.0",
"transformers>=4.29.0", # For CLIP model in main.py
"transformers>=4.29.0", # For CLIP model in main.py
"qdrant-client>=1.14.2",
"uvicorn>=0.34.3",
]
Expand Down
2 changes: 1 addition & 1 deletion examples/live_updates/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1", "python-dotenv>=1.1.0"]
dependencies = ["cocoindex>=0.2.3", "python-dotenv>=1.1.0"]

[tools.setuptools]
packages = []
2 changes: 1 addition & 1 deletion examples/manuals_llm_extraction/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1", "marker-pdf>=1.8.5"]
dependencies = ["cocoindex>=0.2.3", "marker-pdf>=1.8.5"]

[tool.setuptools]
packages = []
2 changes: 1 addition & 1 deletion examples/multi_format_indexing/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.11"
dependencies = [
"cocoindex[colpali]>=0.2.1",
"cocoindex[colpali]>=0.2.3",
"python-dotenv>=1.0.1",
"pdf2image>=1.17.0",
"qdrant-client>=1.15.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/paper_metadata/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1",
"cocoindex[embeddings]>=0.2.3",
"pypdf>=5.7.0",
"marker-pdf>=1.8.5",
]
Expand Down
2 changes: 1 addition & 1 deletion examples/patient_intake_extraction/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1",
"cocoindex>=0.2.3",
"python-dotenv>=1.0.1",
"markitdown>=0.1.2",
"openai>=1.68.2",
Expand Down
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.11"
dependencies = [
"cocoindex[embeddings]>=0.2.1",
"cocoindex[embeddings]>=0.2.3",
"python-dotenv>=1.0.1",
"marker-pdf>=1.8.5",
"psycopg[binary,pool]",
Expand Down
2 changes: 1 addition & 1 deletion examples/product_recommendation/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.1", "jinja2>=3.1.6"]
dependencies = ["cocoindex>=0.2.3", "jinja2>=3.1.6"]

[tool.setuptools]
packages = []
2 changes: 1 addition & 1 deletion examples/text_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 text files."
requires-python = ">=3.11"
dependencies = [
"cocoindex[embeddings]>=0.2.1",
"cocoindex[embeddings]>=0.2.3",
"python-dotenv>=1.0.1",
"pgvector>=0.4.1",
"psycopg[binary,pool]",
Expand Down
2 changes: 1 addition & 1 deletion examples/text_embedding_qdrant/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 text files."
requires-python = ">=3.11"
dependencies = [
"cocoindex[embeddings]>=0.2.1",
"cocoindex[embeddings]>=0.2.3",
"python-dotenv>=1.0.1",
"qdrant-client>=1.6.0",
]
Expand Down