pinecone
Pinecone
Manage vector indexes, upsert and query vectors.
Environment Variables
PINECONE_API_KEY- API keyPINECONE_INDEX_URL- Index URL (e.g.https://my-index-abc123.svc.pinecone.io)
List indexes
curl -s -H "Api-Key: $PINECONE_API_KEY" \
"https://api.pinecone.io/indexes" | jq '.indexes[] | {name, dimension, metric, status: .status.state}'
Query vectors
curl -s -X POST -H "Api-Key: $PINECONE_API_KEY" \
-H "Content-Type: application/json" \
"$PINECONE_INDEX_URL/query" \
-d '{"vector":[0.1,0.2,0.3],"topK":5,"includeMetadata":true}' | jq '.matches[] | {id, score, metadata}'
Upsert vectors
curl -s -X POST -H "Api-Key: $PINECONE_API_KEY" \
-H "Content-Type: application/json" \
"$PINECONE_INDEX_URL/vectors/upsert" \
-d '{"vectors":[{"id":"vec1","values":[0.1,0.2,0.3],"metadata":{"text":"example"}}]}' | jq '{upsertedCount}'
Describe index stats
curl -s -X POST -H "Api-Key: $PINECONE_API_KEY" \
"$PINECONE_INDEX_URL/describe_index_stats" | jq '{dimension, totalVectorCount}'
Delete vectors
curl -s -X POST -H "Api-Key: $PINECONE_API_KEY" \
-H "Content-Type: application/json" \
"$PINECONE_INDEX_URL/vectors/delete" \
-d '{"ids":["vec1","vec2"]}' | jq '.'
Notes
- Always confirm before upserting or deleting vectors.
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.
22feishu-bridge
Connect a Feishu (Lark) bot to ThinkFleet via WebSocket long-connection. No public server, domain, or ngrok required. Use when setting up Feishu/Lark as a messaging channel, troubleshooting the Feishu bridge, or managing the bridge service (start/stop/logs). Covers bot creation on Feishu Open Platform, credential setup, bridge startup, macOS launchd auto-restart, and group chat behavior tuning.
13voice-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