[Feature] Add support for python 3.13 and other migration related fixes (#1279)

This commit is contained in:
Deshraj Yadav
2024-02-21 13:04:03 -08:00
committed by GitHub
parent 2b2263acaa
commit f8f69eab03
8 changed files with 101 additions and 185 deletions

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "embedchain"
version = "0.1.81"
version = "0.1.82"
description = "Simplest open source retrieval(RAG) framework"
authors = [
"Taranjeet Singh <taranjeet@embedchain.ai>",
@@ -123,9 +123,7 @@ cohere = { version = "^4.27", optional = true }
together = { version = "^0.2.8", optional = true }
weaviate-client = { version = "^3.24.1", optional = true }
docx2txt = { version = "^0.8", optional = true }
pinecone-client = { version = "^3.0.0", optional = true }
pinecone-text = { version = "^0.8.0", optional = true }
qdrant-client = { version = "1.6.3", optional = true }
qdrant-client = { version = "^1.6.3", optional = true }
unstructured = {extras = ["local-inference", "all-docs"], version = "^0.10.18", optional = true}
huggingface_hub = { version = "^0.17.3", optional = true }
pymilvus = { version = "2.3.1", optional = true }
@@ -181,7 +179,6 @@ discord = ["discord"]
slack = ["slack-sdk", "flask"]
whatsapp = ["twilio", "flask"]
weaviate = ["weaviate-client"]
pinecone = ["pinecone-client", "pinecone-text"]
qdrant = ["qdrant-client"]
huggingface_hub=["huggingface_hub"]
cohere = ["cohere"]