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 or configure the following credentials and URLs for a read-only demo instance:

import os

from tilores import TiloresAPI

os.environ["TILORES_API_URL"] = (
"https://8edvhd7rqb.execute-api.eu-central-1.amazonaws.com"
)
os.environ["TILORES_TOKEN_URL"] = (
"https://saas-umgegwho-tilores.auth.eu-central-1.amazoncognito.com/oauth2/token"
)
os.environ["TILORES_CLIENT_ID"] = "3l3i0ifjurnr58u4lgf0eaeqa3"
os.environ["TILORES_CLIENT_SECRET"] = (
"1c0g3v0u7pf1bvb7v65pauqt6s0h3vkkcf9u232u92ov3lm4aun2"
)

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?