| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
In order to use this library, you first need to go through the following steps:
Install this library in a virtualenv using pip. virtualenv is a tool to create isolated Python environments. The basic problem it addresses is one of dependencies and versions, and indirectly permissions.
With virtualenv, it’s possible to install this library without needing system install permissions, and without clashing with the installed system dependencies.
Python >= 3.9
pip install virtualenv
virtualenv <your-env>
source <your-env>/bin/activate
<your-env>/bin/pip install langchain-google-bigtablepip install virtualenv
virtualenv <your-env>
<your-env>\Scripts\activate
<your-env>\Scripts\pip.exe install langchain-google-bigtableUse BigtableVectorStore to store documents and their vector embeddings, allowing you to search for the most similar or relevant documents from your database.
from langchain_google_bigtable import BigtableVectorStore, BigtableEngine
# Your embedding service and other configurations
# embedding_service = ...
engine = await BigtableEngine.async_initialize(project_id="your-project-id")
vector_store = await BigtableVectorStore.create(
engine=engine,
instance_id="your-instance-id",
table_id="your-table-id",
embedding_service=embedding_service,
collection="your_collection_name",
)See the full Vector Store tutorial.
Use BigtableByteStore for a key-value store in LangChain
from langchain_google_bigtable import BigtableByteStore, BigtableEngine
engine = await BigtableEngine.async_initialize(project_id="your-project-id")
store = await BigtableByteStore.create(
engine=engine,
instance_id="your-instance-id",
table_id="your-table-id",
)
await store.amset([("key", b"value")])
retrieved = await store.amget(["key"])See the full Key-value Store tutorial.
Use a document loader to load data as LangChain Documents.
from langchain_google_bigtable import BigtableLoader
loader = BigtableLoader(
instance_id="my-instance",
table_id="my-table-name"
)
docs = loader.lazy_load()See the full Document Loader tutorial.
Use ChatMessageHistory to store messages and provide conversation history to LLMs.
from langchain_google_bigtable import BigtableChatMessageHistory
history = BigtableChatMessageHistory(
instance_id="my-instance",
table_id="my-message-store",
session_id="my-session_id"
)See the full Chat Message History tutorial.
Contributions to this library are always welcome and highly encouraged.
See CONTRIBUTING for more information how to get started.
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms. See Code of Conduct for more information.
Apache 2.0 - See LICENSE for more information.
This is not an officially supported Google product.
| Back | FazBrowse Home | New Git URL |