Skip to main content
Open In ColabOpen on GitHub

Tilores

Tilores is a platform that provides advanced entity resolution solutions for data integration and management. Using cutting-edge algorithms, machine learning, and a user-friendly interfaces, Tilores helps organizations match, resolve, and consolidate data from disparate sources, ensuring high-quality, consistent information.

Installation and Setup

%pip install --upgrade tilores-langchain

To access Tilores, you need to create and configure an instance. If you prefer to test out Tilores first, you can use the read-only demo credentials.

import os

from tilores import TiloresAPI

os.environ["TILORES_API_URL"] = "<api-url>"
os.environ["TILORES_TOKEN_URL"] = "<token-url>"
os.environ["TILORES_CLIENT_ID"] = "<client-id>"
os.environ["TILORES_CLIENT_SECRET"] = "<client-secret>"

tilores = TiloresAPI.from_environ()

Please refer to the Tilores documentation on how to create your own instance.

Toolkits

You can use the TiloresTools to query data from Tilores:

from tilores_langchain import TiloresTools

Was this page helpful?