An integration package connecting Astra DB and LangChain
Project description
langchain-astradb
This package contains the LangChain integrations for using DataStax Astra DB.
DataStax Astra DB is a serverless vector-capable database built on Apache Cassandra® and made conveniently available through an easy-to-use JSON API.
Installation and Setup
Installation of this partner package:
pip install langchain-astradb
Integrations overview
See the LangChain docs page and the API reference for more details.
Vector Store
from langchain_astradb import AstraDBVectorStore
my_store = AstraDBVectorStore(
embedding=my_embedding,
collection_name="my_store",
api_endpoint="https://...",
token="AstraCS:...",
)
Chat message history
from langchain_astradb import AstraDBChatMessageHistory
message_history = AstraDBChatMessageHistory(
session_id="test-session",
api_endpoint="https://...",
token="AstraCS:...",
)
LLM Cache
from langchain_astradb import AstraDBCache
cache = AstraDBCache(
api_endpoint="https://...",
token="AstraCS:...",
)
Semantic LLM Cache
from langchain_astradb import AstraDBSemanticCache
cache = AstraDBSemanticCache(
embedding=my_embedding,
api_endpoint="https://...",
token="AstraCS:...",
)
Document loader
from langchain_astradb import AstraDBLoader
loader = AstraDBLoader(
collection_name="my_collection",
api_endpoint="https://...",
token="AstraCS:...",
)
Store
from langchain_astradb import AstraDBStore
store = AstraDBStore(
collection_name="my_kv_store",
api_endpoint="https://...",
token="AstraCS:...",
)
Byte Store
from langchain_astradb import AstraDBByteStore
store = AstraDBByteStore(
collection_name="my_kv_store",
api_endpoint="https://...",
token="AstraCS:...",
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
langchain_astradb-0.3.0.tar.gz
(22.2 kB
view details)
Built Distribution
File details
Details for the file langchain_astradb-0.3.0.tar.gz
.
File metadata
- Download URL: langchain_astradb-0.3.0.tar.gz
- Upload date:
- Size: 22.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 376381aa42056b79d3892c9b00f7f6c68dc4df2ca848a9221ebdd109184f52e4 |
|
MD5 | 9fbfd21df1d3d1de3914c91687bb9b26 |
|
BLAKE2b-256 | 3dcf77c9b7510bba432d8007841c0de78bbe841fcbc483aec7e03965c6f650ac |
File details
Details for the file langchain_astradb-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: langchain_astradb-0.3.0-py3-none-any.whl
- Upload date:
- Size: 26.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f4007c3f8e337962122061be3d2749dd74f167254bd46b14361878a3a0aa7c2a |
|
MD5 | f151252717e25e690f61fc002f725c2c |
|
BLAKE2b-256 | 7b62ec0b162d353b45a8eb96089783065c054e05cc8150fef22eb8a842a0174c |