File tree Expand file tree Collapse file tree 6 files changed +23
-5
lines changed Expand file tree Collapse file tree 6 files changed +23
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,11 @@ name = "amazon-s3-text-embedding"
33version = " 0.1.0"
44description = " Simple example for cocoindex: build embedding index based on Amazon S3 files."
55requires-python = " >=3.11"
6- dependencies = [" cocoindex[embeddings]>=0.1.67" , " python-dotenv>=1.0.1" ]
6+ dependencies = [
7+ " cocoindex[embeddings]>=0.1.67" ,
8+ " python-dotenv>=1.0.1" ,
9+ " psycopg[binary,pool]" ,
10+ ]
711
812[tool .setuptools ]
913packages = []
Original file line number Diff line number Diff line change @@ -3,7 +3,11 @@ name = "azure-blob-text-embedding"
33version = " 0.1.0"
44description = " Simple example for cocoindex: build embedding index based on Azure Blob Storage files."
55requires-python = " >=3.11"
6- dependencies = [" cocoindex[embeddings]>=0.1.67" , " python-dotenv>=1.0.1" ]
6+ dependencies = [
7+ " cocoindex[embeddings]>=0.1.67" ,
8+ " python-dotenv>=1.0.1" ,
9+ " psycopg[binary,pool]" ,
10+ ]
711
812[tool .setuptools ]
913packages = []
Original file line number Diff line number Diff line change @@ -3,7 +3,12 @@ name = "code-embedding"
33version = " 0.1.0"
44description = " Simple example for cocoindex: build embedding index based on source code."
55requires-python = " >=3.11"
6- dependencies = [" cocoindex[embeddings]>=0.1.67" , " python-dotenv>=1.0.1" ]
6+ dependencies = [
7+ " cocoindex[embeddings]>=0.1.67" ,
8+ " python-dotenv>=1.0.1" ,
9+ " pgvector>=0.4.1" ,
10+ " psycopg[binary,pool]" ,
11+ ]
712
813[tool .setuptools ]
914packages = []
Original file line number Diff line number Diff line change @@ -3,7 +3,11 @@ name = "gdrive-text-embedding"
33version = " 0.1.0"
44description = " Simple example for cocoindex: build embedding index based on Google Drive files."
55requires-python = " >=3.11"
6- dependencies = [" cocoindex[embeddings]>=0.1.67" , " python-dotenv>=1.0.1" ]
6+ dependencies = [
7+ " cocoindex[embeddings]>=0.1.67" ,
8+ " python-dotenv>=1.0.1" ,
9+ " psycopg[binary,pool]" ,
10+ ]
711
812[tool .setuptools ]
913packages = []
Original file line number Diff line number Diff line change 11import cocoindex
22import os
33import tempfile
4- from typing import List , Dict , Any
54
65from dotenv import load_dotenv
76from marker .config .parser import ConfigParser
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ dependencies = [
77 " cocoindex[embeddings]>=0.1.67" ,
88 " python-dotenv>=1.0.1" ,
99 " marker-pdf>=1.5.2" ,
10+ " psycopg[binary,pool]" ,
11+ " jinja2>=3.1.6" ,
1012]
1113
1214[tool .setuptools ]
You can’t perform that action at this time.
0 commit comments