Teradata Package for LangChain Function Reference - __init__ - Teradata® Package for LangChain - Look here for syntax, methods and examples for the functions included in the Teradata langchain-teradata package.

Teradata® Package for LangChain Function Reference

Deployment
VantageCloud
Edition
Enterprise
Product
Teradata® Package for LangChain
Release Number
20.00.00.01
Published
December 2025
ft:locale
en-US
ft:lastEdition
2025-12-19
dita:id
Langchain-Teradata_FxRef_Lake
Product Category
Teradata Vantage
libs.teradata.langchain_teradata.TeradataVectorStore.__init__ = __init__(self, name=None, log=False, **kwargs)
DESCRIPTION:
    Initializes a TeradataVectorStore instance.
 
PARAMETERS:
    name:
        Optional Argument.
        Specifies the name of the vector store to connect to if it
        exists, or to create a new vector store if it does not.
        Types: str
        
    log:
        Optional Argument.
        Specifies whether logging should be enabled for vector store
        methods.
        Note:
            Errors are logged to Datadog by default, even if logging is disabled.
        Default Value: False
        Types: bool
 
RETURNS:
    None.
 
RAISES:
    TeradataMLException.
 
EXAMPLES:
    >>> vs = TeradataVectorStore(name="vs", log=True)