discourse-ai/spec/jobs/regular
Sam 5cbc9190eb
FEATURE: RAG search within tools (#802)
This allows custom tools access to uploads and sophisticated searches using embedding.

It introduces:

 - A shared front end for listing and uploading files (shared with personas)
 -  Backend implementation of index.search function within a custom tool.

Custom tools now may search through uploaded files

function invoke(params) {
   return index.search(params.query)
}

This means that RAG implementers now may preload tools with knowledge and have high fidelity over
the search.

The search function support

    specifying max results
    specifying a subset of files to search (from uploads)

Also

 - Improved documentation for tools (when creating a tool a preamble explains all the functionality)
  - uploads were a bit finicky, fixed an edge case where the UI would not show them as updated
2024-09-30 17:27:50 +10:00
..
digest_rag_upload_spec.rb FEATURE: Make tool support polymorphic (#798) 2024-09-16 08:17:17 +10:00
generate_rag_embeddings_spec.rb FEATURE: RAG search within tools (#802) 2024-09-30 17:27:50 +10:00
stream_post_helper_spec.rb DEV: Clearly separate post/composer helper settings (#747) 2024-08-12 15:40:23 -07:00
stream_topic_ai_summary_spec.rb FEATURE: move summary to use llm_model (#699) 2024-07-04 10:48:18 +10:00