jamwt
jamwt•2y ago

Looking for something?

Convex search gives you a way to get answers across docs, stack, and discord. Check it out! https://search.convex.dev/
Convex Developer Search
Search Docs, Stack, Discord all at once
No description
24 Replies
jamwt
jamwtOP•2y ago
Also, we built all the search indexing for this content using Convex itself! So that's cool.
Omar Farooq
Omar Farooq•2y ago
Awesome! 🙂
Gorka Cesium
Gorka Cesium•2y ago
super userful useful
philipsman
philipsman•2y ago
Are you planning on open sourcing this? There is a open source project I dabbled with, medusa marketplace, that has info split across their discord, docs, and github discussions/issues. This would be nice to use for medusa, I don't have to search 3 different places.
ian
ian•2y ago
The indexing is in algolia. The discord code is in my discord-slack-bridge repo (open source), the docs code is alongside our docusaurus docs(may be part of the open source effort later this year), and stack is leveraging sanity I believe. So it’s not a single project on the ingestion side. Are you more interested in the UI or the algolia ingestion?
philipsman
philipsman•2y ago
I would say both, whatevers needed to copy it for medusa
ian
ian•17mo ago
Search across docs, Stack, and discord: https://search.convex.dev/
Convex Developer Search
Search Docs, Stack, Discord all at once
Gorka Cesium
Gorka Cesium•17mo ago
wow very cool, it searches even in discord
John
John•11mo ago
this search tool is awesome! especially that it also indexes discord 🤯 Are these the relevant repos for the search? Frontend Doc/Stack index Discord index
GitHub
GitHub - get-convex/convex-resource-search: Created with CodeSandbox
Created with CodeSandbox. Contribute to get-convex/convex-resource-search development by creating an account on GitHub.
GitHub
GitHub - get-convex/convex-search-indexer: Search indexing service ...
Search indexing service for Convex documentation, stack posts, etc – built on Convex! - GitHub - get-convex/convex-search-indexer: Search indexing service for Convex documentation, stack posts, etc...
GitHub
GitHub - ianmacartney/discord-slack-bridge: Uses Convex to mirror d...
Uses Convex to mirror discord into slack. Contribute to ianmacartney/discord-slack-bridge development by creating an account on GitHub.
puchesjr
puchesjr•11mo ago
Do you offer any type of geospatial support? Eg, find me the closest resource? How about fulltext search? Just came across convex and looking at it for an infield reporting tool
jamwt
jamwtOP•11mo ago
Full text yes. Geospatial no
puchesjr
puchesjr•11mo ago
any plans to add geospatial? if not, we can use something like geohash or something like google's s2 or ubers h3 and persist the zones... trying to get / think of some ideas. currently we use Firestore with a full-text search called typesense. We perform full-text with typesense as well as Geoqueries.
jamwt
jamwtOP•11mo ago
Good question for @james and @sujayakar We talk about other kinds of indexes periodically, but no immediate plans to do this work in the next few months.
ian
ian•11mo ago
You can already use h3 @puchesjr - just store the zones in fields But let’s make this a support thread, this thread is about the search tool ◡̈
pipsai
pipsai•10mo ago
Super useful. Are yall gonna opensource this like how astro did?
ian
ian•10mo ago
The repos for the search are above I believe - is that what you're talking about?
pipsai
pipsai•10mo ago
yeah sorry i overlooked it.
David Alonso
David Alonso•4mo ago
is there an api version of this? also, is this doing semantic/vector search?
v
v•4mo ago
curl -X POST 'https://1kie511890-dsn.algolia.net/1/indexes/*/queries?x-algolia-api-key=d5802c3142d1d81cebdac1ccbb02ea9f&x-algolia-application-id=1KIE511890' -d '{"requests":[{"indexName":"docs","highlightPostTag":"__/ais-highlight__","highlightPreTag":"__ais-highlight__","query":"Mutation"},{"indexName":"stack","highlightPostTag":"__/ais-highlight__","highlightPreTag":"__ais-highlight__","query":"Mutation"},{"indexName":"discord","highlightPostTag":"__/ais-highlight__","highlightPreTag":"__ais-highlight__","query":"Mutation"}]}'
curl -X POST 'https://1kie511890-dsn.algolia.net/1/indexes/*/queries?x-algolia-api-key=d5802c3142d1d81cebdac1ccbb02ea9f&x-algolia-application-id=1KIE511890' -d '{"requests":[{"indexName":"docs","highlightPostTag":"__/ais-highlight__","highlightPreTag":"__ais-highlight__","query":"Mutation"},{"indexName":"stack","highlightPostTag":"__/ais-highlight__","highlightPreTag":"__ais-highlight__","query":"Mutation"},{"indexName":"discord","highlightPostTag":"__/ais-highlight__","highlightPreTag":"__ais-highlight__","query":"Mutation"}]}'
@David Alonso
Paul_J
Paul_J•3mo ago
Is there a convex context document for use with LLM coding assistance like cursor or cline? Both agents can search the Internet, but I think context documents are better.
ian
ian•3mo ago
Using Cursor, Claude and Convex to Build a Social Media Scheduling App
I was curious to see if I could prompt my way through developing an entire app with Cursor and Claude. It went pretty well - but there are some import...
codebird
codebird•2mo ago
Hi, 1. Is convex-ents stable to be used in projects? 2. Comparing it to the current version, does it add any delay to the queries? 3. Is there any other good SaaS starter using convex-ents and convex authentication, instead of Clerk?
jamwt
jamwtOP•2mo ago
1. yes, it's pretty stable 2. no, convex-ents basically does exactly what you would do by hand. so it doesn't have an appreciable performance impact 3. not yet. I think the example that uses clerk is the only template
codebird
codebird•2mo ago
Thank you for the prompt reply 🙂