weaviate
Weaviate
Manage classes, objects, and vector search.
Environment Variables
WEAVIATE_URL- Weaviate instance URLWEAVIATE_API_KEY- API key
Get schema
curl -s -H "Authorization: Bearer $WEAVIATE_API_KEY" \
"$WEAVIATE_URL/v1/schema" | jq '.classes[] | {class, properties: [.properties[] | .name]}'
List objects
curl -s -H "Authorization: Bearer $WEAVIATE_API_KEY" \
"$WEAVIATE_URL/v1/objects?limit=10&class=ClassName" | jq '.objects[] | {id, properties}'
GraphQL vector search
curl -s -X POST -H "Authorization: Bearer $WEAVIATE_API_KEY" \
-H "Content-Type: application/json" \
"$WEAVIATE_URL/v1/graphql" \
-d '{"query":"{Get{ClassName(nearText:{concepts:[\"search query\"]}limit:5){property1 _additional{distance}}}}"}' | jq '.data.Get.ClassName[]'
Add object
curl -s -X POST -H "Authorization: Bearer $WEAVIATE_API_KEY" \
-H "Content-Type: application/json" \
"$WEAVIATE_URL/v1/objects" \
-d '{"class":"ClassName","properties":{"property1":"value1"}}' | jq '{id}'
Notes
- Always confirm before adding or deleting objects.
More from thinkfleetai/thinkfleet-engine
local-whisper
Local speech-to-text using OpenAI Whisper. Runs fully offline after model download. High quality transcription with multiple model sizes.
149flyio-cli-public
Use the Fly.io flyctl CLI for deploying and operating apps on Fly.io: deploys (local or remote builder), viewing status/logs, SSH/console, secrets/config, scaling, machines, volumes, and Fly Postgres (create/attach/manage databases). Use when asked to deploy to Fly.io, debug fly deploy/build/runtime failures, set up GitHub Actions deploys/previews, or safely manage Fly apps and Postgres.
24kagi-search
Web search using Kagi Search API. Use when you need to search the web for current information, facts, or references. Requires KAGI_API_KEY in the environment.
22bambu-local
Control Bambu Lab 3D printers locally via MQTT (no cloud). Supports A1, A1 Mini, P1P, P1S, X1C.
10voice-transcribe
Transcribe audio files using OpenAI's gpt-4o-mini-transcribe model with vocabulary hints and text replacements. Requires uv (https://docs.astral.sh/uv/).
10video-subtitles
Generate SRT subtitles from video/audio with translation support. Transcribes Hebrew (ivrit.ai) and English (whisper), translates between languages, burns subtitles into video. Use for creating captions, transcripts, or hardcoded subtitles for WhatsApp/social media.
10