Skip to content

Latest commit

 

History

History

06-best-practices

Module 6: Best practices

In this module, we'll cover the techniques that could improve your RAG pipeline.

6.1 Techniques to Improve RAG Pipeline

  • Small-to-Big chunk retrieval
  • Leveraging document metadata
  • Hybrid search
  • User query rewriting
  • Document reranking

Links:

6.2 Hybrid search

Links:

6.3 Document Reranking

Links:

We should pull and run a docker container with Elasticsearch 8.9.0 or higher in order to use reranking based on RRF algorithm:

docker run -it \
    --rm \
    --name elasticsearch \
    -m 4GB \
    -p 9200:9200 \
    -p 9300:9300 \
    -e "discovery.type=single-node" \
    -e "xpack.security.enabled=false" \
    docker.elastic.co/elasticsearch/elasticsearch:8.9.0

6.4 TBD

Homework

TBD