Skip to content

Commit 8dbcf45

Browse files
committed
updated cohere, removed langchain, updated tests
1 parent 7cf7eed commit 8dbcf45

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
boto3
22
botocore
3+
cohere
34
cffi
45
openai
56
psycopg2-binary
6-
langchain
77
pinecone-client
88
requests
99
tiktoken
@@ -16,7 +16,6 @@ qdrant-client
1616
singlestoredb
1717
weaviate-client
1818
azure-storage-blob
19-
langchain-community
2019
google-cloud-storage
2120
snowflake-connector-python
2221
stripe

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
install_requires=[
2828
"boto3",
2929
"botocore",
30+
"cohere"
3031
"cffi",
3132
"openai",
3233
"psycopg2-binary",
33-
"langchain",
3434
"pinecone-client",
3535
"requests",
3636
"tiktoken",
@@ -43,7 +43,6 @@
4343
"singlestoredb",
4444
"weaviate-client",
4545
"azure-storage-blob",
46-
"langchain-community",
4746
"google-cloud-storage",
4847
"snowflake-connector-python",
4948
"stripe",

tests/test_source_mods.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
from unittest.mock import Mock, patch
33
import pandas as pd
44
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
77
from vector_etl.source_mods.local_file import LocalFileSource
88

99
@pytest.fixture

0 commit comments

Comments
 (0)