File tree 3 files changed +4
-6
lines changed 3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 1
1
boto3
2
2
botocore
3
+ cohere
3
4
cffi
4
5
openai
5
6
psycopg2-binary
6
- langchain
7
7
pinecone-client
8
8
requests
9
9
tiktoken
@@ -16,7 +16,6 @@ qdrant-client
16
16
singlestoredb
17
17
weaviate-client
18
18
azure-storage-blob
19
- langchain-community
20
19
google-cloud-storage
21
20
snowflake-connector-python
22
21
stripe
Original file line number Diff line number Diff line change 27
27
install_requires = [
28
28
"boto3" ,
29
29
"botocore" ,
30
+ "cohere"
30
31
"cffi" ,
31
32
"openai" ,
32
33
"psycopg2-binary" ,
33
- "langchain" ,
34
34
"pinecone-client" ,
35
35
"requests" ,
36
36
"tiktoken" ,
43
43
"singlestoredb" ,
44
44
"weaviate-client" ,
45
45
"azure-storage-blob" ,
46
- "langchain-community" ,
47
46
"google-cloud-storage" ,
48
47
"snowflake-connector-python" ,
49
48
"stripe" ,
Original file line number Diff line number Diff line change 2
2
from unittest .mock import Mock , patch
3
3
import pandas as pd
4
4
from io import BytesIO
5
- from vector_etl .source_mods .s3 import S3Source
6
- from vector_etl .source_mods .database import DatabaseSource
5
+ from vector_etl .source_mods .s3_loader import S3Source
6
+ from vector_etl .source_mods .database_loader import DatabaseSource
7
7
from vector_etl .source_mods .local_file import LocalFileSource
8
8
9
9
@pytest .fixture
You can’t perform that action at this time.
0 commit comments