An integration package connecting Snowflake and LangChain
Project description
langchain-snowflake
This package contains the LangChain integration with Snowflake
Installation
pip install -U langchain-snowflake
You can authenticate by one of the following ways:
- Configure credentials by setting the following environment variables:
SNOWFLAKE_USERNAME
should hold your Snowflake username.
SNOWFLAKE_PASSWORD
should hold your Snowflake password.
SNOWFLAKE_DATABASE
should hold a Snowflake database to operate in.
SNOWFLAKE_SCHEMA
should hold the name of the schema to operate in.
SNOWFLAKE_ROLE
should contain the name of the appropriate Snowflake role.
SNOWFLAKE_AUTHENTICATOR
should contain the name of Snowflake authentication method, if not using username/password authentication.
Any of these paramaters can also be passed directly into the CortexSearchRetriever
constructor. Those not passed will be inferred from the environment. For instance:
from langchain_snowflake import CortexSearchRetriever
search = CortexSearchRetriever(
role="snowflake_role",
database="your_db",
schema="your_schema",
service="your_cortex_search_service_name",
search_column="search_column_name",
)
Here, role
, database
, and schema
are passed directly, while SNOWFLAKE_USERNAME
, SNOWFLAKE_PASSWORD
, and SNOWFLAKE_AUTHENTICATOR
are inferred from the environment.
If the SNOWFLAKE_AUTHENTICATOR
environment variable or authenticator
property is set to externalbrowser
, the SNOWFLAKE_PASSWORD
/password
need not be provided. externalbrowser
auth will prompt to log in through an browser popup instead.
- Alternatively, you can pass in a
snowflake.snowpark.Session
directly into the constructor. See the Snowflake docs on how to create such a session.
from langchain_snowflake import CortexSearchRetriever
from snowflake.snowpark import Session
# Create a snowflake session
snowflake_session = Session.builder.config(...).create()
search = CortexSearchRetriever(
session=snowflake_session,
service="your_cortex_search_service_name",
search_column="search_column_name",
)
Cortex Search Retriever
CortexSearchRetriever
is a Third Party Retriever that allows users to utilize their Cortex Search Service within Langchain.
Given the service name and columns to search, the retriever will return matches found within the dataset with which the Cortex Search Service is associated.
from langchain_snowflake import CortexSearchRetriever
search = CortexSearchRetriever(
service="your_cortex_search_service_name",
search_column="<search_column_name>",
columns=["<col1>", "<col2>"],
filter={"@eq": {"<column>": "<value>"}},
limit=5
)
query="foo bar"
result = search.invoke(query)
for doc in result:
print(doc)
The class requires the arguments below:
service
corresponds to the name of your Cortex Search Service.
search_column
is the search column of the Cortex Search Service.
columns
corresponds to the columns to return in the search. If null or an empty list, only the search_column
will be returned.
filter
is an optional argument corresponding to any filters that should be utilized when searching.
limit
corresponds to the number of search hits to return.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file langchain_snowflake-0.1.2.tar.gz
.
File metadata
- Download URL: langchain_snowflake-0.1.2.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b72ef5ca06d0a1382606c67cc7d00c3318d6fc004acfad95e3f32a890989010d |
|
MD5 | f0c520caf9fbbe354504df0de3baaa3f |
|
BLAKE2b-256 | 4d027591e741435484cf2623615a5347543b11f4711cd4282f70e12ce02faf95 |
File details
Details for the file langchain_snowflake-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: langchain_snowflake-0.1.2-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70b3933599a657ba08639a159c80a47ddcdac706143295ce1607ac939627b943 |
|
MD5 | 22c82e05d74174f3b901e7e36026b48f |
|
BLAKE2b-256 | 0365ed70a90b9bd88032783c2c3bc7084f15e894395670201da59c9fa7d50d26 |