Skip to content

Commit

Permalink
updated cohere, removed langchain, updated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jogunjobi committed Aug 5, 2024
1 parent 7cf7eed commit 8dbcf45
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
boto3
botocore
cohere
cffi
openai
psycopg2-binary
langchain
pinecone-client
requests
tiktoken
Expand All @@ -16,7 +16,6 @@ qdrant-client
singlestoredb
weaviate-client
azure-storage-blob
langchain-community
google-cloud-storage
snowflake-connector-python
stripe
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
install_requires=[
"boto3",
"botocore",
"cohere"
"cffi",
"openai",
"psycopg2-binary",
"langchain",
"pinecone-client",
"requests",
"tiktoken",
Expand All @@ -43,7 +43,6 @@
"singlestoredb",
"weaviate-client",
"azure-storage-blob",
"langchain-community",
"google-cloud-storage",
"snowflake-connector-python",
"stripe",
Expand Down
4 changes: 2 additions & 2 deletions tests/test_source_mods.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
from unittest.mock import Mock, patch
import pandas as pd
from io import BytesIO
from vector_etl.source_mods.s3 import S3Source
from vector_etl.source_mods.database import DatabaseSource
from vector_etl.source_mods.s3_loader import S3Source
from vector_etl.source_mods.database_loader import DatabaseSource
from vector_etl.source_mods.local_file import LocalFileSource

@pytest.fixture
Expand Down

0 comments on commit 8dbcf45

Please sign in to comment.