Prompt-driven guide for building multimodal search using Gemini Embedding 2 + Pinecone + Claude Code. Includes example data (NASA public domain), step-by-step prompts, concepts explainer, cost breakdown, and troubleshooting guide.
10 lines
318 B
Text
10 lines
318 B
Text
# Gemini Embedding 2 (from Google AI Studio)
|
|
# Get your key at: https://aistudio.google.com/ > "Get API key"
|
|
GOOGLE_API_KEY=
|
|
|
|
# Pinecone Vector Database
|
|
# Get your key at: https://app.pinecone.io/ > "API Keys"
|
|
PINECONE_API_KEY=
|
|
|
|
# Pinecone index name (the one you created in the dashboard)
|
|
PINECONE_INDEX=space-search
|