Versions in this module Expand all Collapse all v0 v0.5.3 Oct 26, 2023 Changes in this version + func RefreshDoc(db localvectordb.DB, embedder embeddings.Embedder, name string, ...) (bool, error) + type DocRAGChain struct + func NewDocRAGChain(llm llms.LanguageModel, db localvectordb.DB, embedder embeddings.Embedder, ...) (*DocRAGChain, error) v0.5.1 Oct 23, 2023 Changes in this version + type RAGChain struct + func NewQAChain(llm llms.LanguageModel, store vectorstores.VectorStore, docsNumber int, ...) *RAGChain + func (q *RAGChain) Answer(ctx context.Context, question string) (string, error)