1
0
mirror of synced 2025-12-25 02:09:19 -05:00

Deprecate langchain destination (#32455)

This commit is contained in:
Joe Reuter
2023-11-17 14:51:49 +01:00
committed by GitHub
parent 4481be2646
commit 9d1a4ba04e
4 changed files with 16 additions and 3 deletions

View File

@@ -42,5 +42,5 @@ COPY destination_langchain ./destination_langchain
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
LABEL io.airbyte.version=0.1.1
LABEL io.airbyte.version=0.1.2
LABEL io.airbyte.name=airbyte/destination-langchain

View File

@@ -7,7 +7,7 @@ data:
connectorSubtype: database
connectorType: destination
definitionId: cf98d52c-ba5a-4dfd-8ada-c1baebfa6e73
dockerImageTag: 0.1.1
dockerImageTag: 0.1.2
dockerRepository: airbyte/destination-langchain
githubIssueLabel: destination-langchain
icon: langchain.svg

View File

@@ -6,7 +6,7 @@
from setuptools import find_packages, setup
MAIN_REQUIREMENTS = [
"airbyte-cdk",
"airbyte-cdk==0.51.10",
"langchain",
"openai",
"requests",

View File

@@ -1,5 +1,17 @@
# Vector Database (powered by LangChain)
:::warning
The vector db destination destination has been split into separate destinations per vector database. This destination will not receive any further updates and is not subject to SLAs. The separate destinations support all features of this destination and are actively maintained. Please migrate to the respective destination as soon as possible.
Please use the respective destination for the vector database you want to use to ensure you receive updates and support.
To following databases are supported:
* [Pinecone](https://docs.airbyte.com/integrations/destinations/pinecone)
* [Weaviate](https://docs.airbyte.com/integrations/destinations/weaviate)
* [Milvus](https://docs.airbyte.com/integrations/destinations/milvus)
* [Chroma](https://docs.airbyte.com/integrations/destinations/chroma)
* [Qdrant](https://docs.airbyte.com/integrations/destinations/qdrant)
:::
## Overview
@@ -140,6 +152,7 @@ Please make sure that Docker Desktop has access to `/tmp` (and `/private` on a M
| Version | Date | Pull Request | Subject |
|:--------| :--------- |:--------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------|
| 0.1.2 | 2023-11-13 | [#32455](https://github.com/airbytehq/airbyte/pull/32455) | Fix build |
| 0.1.1 | 2023-09-01 | [#30282](https://github.com/airbytehq/airbyte/pull/30282) | Use embedders from CDK |
| 0.1.0 | 2023-09-01 | [#30080](https://github.com/airbytehq/airbyte/pull/30080) | Fix bug with potential data loss on append+dedup syncing. 🚨 Streams using append+dedup mode need to be reset after upgrade. |
| 0.0.8 | 2023-08-21 | [#29515](https://github.com/airbytehq/airbyte/pull/29515) | Clean up generated schema spec |