<< All versions
Skill v1.0.0
currentAutomated scan100/100mkurman/zorai/lancedb
──Details
PublishedJuly 29, 2026 at 12:07 PM
Content Hashsha256:0a82fc497f0727a0...
Git SHAd0acbfaf3d62
──Files
Files (1 file, 1.4 KB)
SKILL.md1.4 KBactive
SKILL.md · 51 lines · 1.4 KB
version: "1.0.0" name: lancedb description: "LanceDB — serverless vector database for AI. Columnar storage on Lance format, zero-copy access, multimodal search (text + images + audio), and direct DataFrame integration. No separate server." tags: [lancedb, vector-database, embedded, multimodal, embeddings, python, zorai]
Overview
LanceDB is a developer-friendly, serverless vector database built on the Lance columnar format. It supports multimodal search (text, image, audio embeddings), hybrid search, and efficient streaming ingestion without a separate server process.
Installation
bash
uv pip install lancedb
Create and Query
python
import lancedbimport numpy as npdb = lancedb.connect("./my_lancedb")table = db.create_table("vectors", [{"vector": np.random.rand(128), "text": "hello world"},{"vector": np.random.rand(128), "text": "goodbye moon"},])results = table.search(np.random.rand(128)).limit(5).to_list()print([r["text"] for r in results])
Open-Clip Embeddings
python
import lancedbfrom lancedb.embeddings import with_open_clip@with_open_clipclass Images:image: strvector: listtable = db.create_table("images", schema=Images)table.add([{"image": "photo.jpg"}, {"image": "diagram.png"}])results = table.search("sunset landscape").limit(3).to_pandas()