Replyke provides three semantic search hooks — one for content (entities, comments, messages), one for users, and one for spaces. All three return results ranked by semantic similarity to the query.Documentation Index
Fetch the complete documentation index at: https://docs.replyke.com/llms.txt
Use this file to discover all available pages before exploring further.
useSearchContent
Search across entities, comments, and chat messages. You can filter bysourceTypes to target only specific content types, or scope results to a specific space or conversation.
Parameters (search function)
The natural language search query.
Limit results to specific content types. Defaults to all types.
Scope results to a specific space.
Scope results to a specific conversation (for messages).
Maximum number of results to return.
Returns
Ranked results.
true while a search is in progress.Error message if the search failed.
Executes the search and updates
results.Clears results and error state.
useSearchUsers
Search for users by natural language query — matches against name, username, bio, and other profile text.Parameters (search function)
The natural language search query.
Maximum number of results to return.
Returns
Ranked user results.
useSearchSpaces
Search for spaces by name, description, or topic.Parameters (search function)
The natural language search query.
Maximum number of results to return.
Returns
Ranked space results.

