The AI Multimedia Search Platform
Seamlessly integrate AI-powered, multimedia-ready search into your apps, websites, and platforms. Built for the frameworks you love.
Seamlessly integrate AI-powered, multimedia-ready search into your apps, websites, and platforms. Built for the frameworks you love.
node.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { thred } from "thred-node"
const results = await thred.searchImagesByText(
'A person',
{ limit: 10, minConfidence: 0.8 }
);
const results = await thred.searchVideosByText(
'A person waving and saying "Hello"',
{ limit: 10, minConfidence: 0.8 }
);
node.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { thred } from "thred-node"
const results = await thred.searchImagesByText(
'A person',
{ limit: 10, minConfidence: 0.8 }
);
const results = await thred.searchVideosByText(
'A person waving and saying "Hello"',
{ limit: 10, minConfidence: 0.8 }
);
node.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { thred } from "thred-node"
const results = await thred.searchImagesByText(
'A person',
{ limit: 10, minConfidence: 0.8 }
);
const results = await thred.searchVideosByText(
'A person waving and saying "Hello"',
{ limit: 10, minConfidence: 0.8 }
);