CLIP ViT-L/14 embeddings for text AND images (163M+ runs) โ puts both in the same vector space for cross-modal search, image dedup, and zero-shot classification. 1 credit per run.
Test this model instantly in the Console Playground โ no code required
Copy usage instructions for Claude, ChatGPT, or other AI
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "andreasjansson/clip-features",
"input": {
"inputs": "a photo of a red sneaker\nhttps://example.com/sneaker.jpg"
}
}'| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
inputs | string | No | a b | Newline-separated inputs โ text strings or image URLs starting with http(s):// |
Common parameters used when calling POST /v1/predictions.
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
model | string | Yes | - | Model identifier |
input | object | Yes | - | Object containing the model-specific parameters from the table above |
output_folder | string | No | - | Folder path for output files (max 256 chars, '..' not allowed) |
webhook_url | string | No | - | Webhook URL to call on completion |
is_public | boolean | No | false | If true, output files are also available via permanent public URLs |
Embed a text query and an image into the same space
curl -X POST "https://api.core.today/v1/predictions" \
-H "Content-Type: application/json" \
-H "X-API-Key: cdt_your_api_key" \
-d '{
"model": "andreasjansson/clip-features",
"input": {
"inputs": "a photo of a red sneaker\nhttps://example.com/sneaker.jpg"
}
}'POST /v1/predictions