Tech News
← Back to articles

ThalamusDB: Query text, tables, images, and audio

read original related products more articles

ThalamusDB: Semantic Queries on Multimodal Data

ThalamusDB is an approximate processing engine supporting SQL queries extended with semantic operators on multimodal data. Find the full ThalamusDB documentation here: https://itrummer.github.io/thalamusdb/.

Try It on Google Colab

To get a first impression of ThalamusDB, try it on Google Colab here. Execute the code cell, enter your OpenAI API key when asked, then enter your queries in the ThalamusDB console.

Quick Start

Install ThalamusDB using pip:

pip install thalamusdb

ThalamusDB can use language models from various providers, including OpenAI and Google. Store the access key of the provider you plan to use in an environment variable. For instance, if using OpenAI, set the OPENAI_API_KEY environment variable using the following command on Linux platforms:

export OPENAI_API_KEY=[Your OpenAI API Key]

Now you can run the ThalamusDB console using the following command:

... continue reading