Habitual side project starter 🪴
X @mattblake_uk
Semantic search fails on proper nouns like company names. But hybrid search is only available with Pinecone's native embeddings—another reason to use them.
Semantic search fails on proper nouns like company names. But hybrid search is only available with Pinecone's native embeddings—another reason to use them.
2. Send vectors to Pinecone
3. Repeat for every query
If I'd used Pinecone's native embeddings, I could just send TEXT directly. Save yourself this extra step.
2. Send vectors to Pinecone
3. Repeat for every query
If I'd used Pinecone's native embeddings, I could just send TEXT directly. Save yourself this extra step.
I used OpenAI's embeddings models (text-3-small/large), which means I have to:
I used OpenAI's embeddings models (text-3-small/large), which means I have to:
Vector databases enable semantic search—understanding "cat" and "kitten" are related, not just exact spelling matches.
You convert each message pair into embeddings (numbers), store them in Pinecone, then retrieve only relevant history based on meaning
Vector databases enable semantic search—understanding "cat" and "kitten" are related, not just exact spelling matches.
You convert each message pair into embeddings (numbers), store them in Pinecone, then retrieve only relevant history based on meaning
Use an expensive model for responses, then run a cheap background model ($0.0002) to distill the conversation into a structured profile:
- Role
- Task state
- Learner progress
- Decision points
- Next steps
Use an expensive model for responses, then run a cheap background model ($0.0002) to distill the conversation into a structured profile:
- Role
- Task state
- Learner progress
- Decision points
- Next steps
Yes, we now have 200K-1M token limits. But three problems:
1. Recent research shows AI loses track of info in the MIDDLE of conversations 2. Costs compound exponentially (12 messages, then 14, then 16...)
3. Claude API has hard message limits (~1000)
Yes, we now have 200K-1M token limits. But three problems:
1. Recent research shows AI loses track of info in the MIDDLE of conversations 2. Costs compound exponentially (12 messages, then 14, then 16...)
3. Claude API has hard message limits (~1000)
#AICoaching #FutureOfWork #HumanConnection
#AICoaching #FutureOfWork #HumanConnection
AI may not be ready to replace deep therapeutic relationships yet.
But the question isn't whether it will happen. It's how quickly we adapt to working alongside these tools rather than competing with them.
AI may not be ready to replace deep therapeutic relationships yet.
But the question isn't whether it will happen. It's how quickly we adapt to working alongside these tools rather than competing with them.
AI handling structured, goal-focused support that follows established frameworks.
Humans managing the complex, adaptive work requiring cultural sensitivity and emotional nuance.
AI handling structured, goal-focused support that follows established frameworks.
Humans managing the complex, adaptive work requiring cultural sensitivity and emotional nuance.
But here's where it gets interesting.
AI only worked for narrow targets. It couldn't improve broader measures like resilience or overall wellbeing, which human coaches influenced significantly.
But here's where it gets interesting.
AI only worked for narrow targets. It couldn't improve broader measures like resilience or overall wellbeing, which human coaches influenced significantly.