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
6 changes: 5 additions & 1 deletion examples/amazon_s3_embedding/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ 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.67", "python-dotenv>=1.0.1"]
dependencies = [
"cocoindex[embeddings]>=0.1.67",
"python-dotenv>=1.0.1",
"psycopg[binary,pool]",
]

[tool.setuptools]
packages = []
6 changes: 5 additions & 1 deletion examples/azure_blob_embedding/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ 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.67", "python-dotenv>=1.0.1"]
dependencies = [
"cocoindex[embeddings]>=0.1.67",
"python-dotenv>=1.0.1",
"psycopg[binary,pool]",
]

[tool.setuptools]
packages = []
7 changes: 6 additions & 1 deletion examples/code_embedding/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ 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.67", "python-dotenv>=1.0.1"]
dependencies = [
"cocoindex[embeddings]>=0.1.67",
"python-dotenv>=1.0.1",
"pgvector>=0.4.1",
"psycopg[binary,pool]",
]

[tool.setuptools]
packages = []
6 changes: 5 additions & 1 deletion examples/gdrive_text_embedding/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ 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.67", "python-dotenv>=1.0.1"]
dependencies = [
"cocoindex[embeddings]>=0.1.67",
"python-dotenv>=1.0.1",
"psycopg[binary,pool]",
]

[tool.setuptools]
packages = []
1 change: 0 additions & 1 deletion examples/pdf_embedding/main.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import cocoindex
import os
import tempfile
from typing import List, Dict, Any

from dotenv import load_dotenv
from marker.config.parser import ConfigParser
Expand Down
2 changes: 2 additions & 0 deletions examples/pdf_embedding/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ dependencies = [
"cocoindex[embeddings]>=0.1.67",
"python-dotenv>=1.0.1",
"marker-pdf>=1.5.2",
"psycopg[binary,pool]",
"jinja2>=3.1.6",
]

[tool.setuptools]
Expand Down