Join the waitlsit for Fastmind
8 Replies
I'd love to hear a bit more about what this is and how you used Convex.
Ah ok thanks for tweeting the architecture: https://twitter.com/knajjars/status/1787166434319036648?t=m-l0evUqv7zTqicALp6vWg&s=19
It's a chatbot agent that uses Cohere RAG capabilities! Users can embed a chatbot to their website that has knowledge of their product in just under 2 minutes. No training/scrapping step.
Cool! How does it work without scraping? Wouldn’t you need to embed the site?
it extract queries from the user message and performs a web search using https://brave.com/search/api/
pseudo code example:
User sends a message:
"What is the pricing for Convex?"
-> Extracted query: "Convex pricing"
-> Perform search engine request GET /brave-search?q="convex pricing"
-> Retrieve results and use them for RAGInteresting idea! Would this lead to lower quality answers than a bot with access to more data sources of a company's, like Slack or CRM? It's interesting though, bc public facing docs is likely best as a source of truth, so maybe that's enough.
pretty cool idea. gonna join the waitlist
that is a possibility, @ufoaz I am launching with just public facing docs support. But I will be adding Notion, file uploads, common Q&A's and other sources shortly after finishing the waitlist access
thanks @jamwt, looking forward for your feedback! I could not have shipped this without Convex. Whenever I get the chance, I will like to post a blog about my experience with it. I've never felt this productive since Ruby on Rails
@Khalil makes sense! very interesting gtm strategy i think, to not have to crawl. so OOTB bot is super lightweight.