Constructor RagEngine
RagEngine(LM, IVectorStore)
Initializes a new instance of the RagEngine class using a specified model for embedding generation.
public RagEngine(LM embeddingModel, IVectorStore vectorStore = null)
Parameters
embeddingModel
LMAn LM object specifying the embeddings model.
vectorStore
IVectorStoreAn optional IVectorStore instance that provides support for vector storage operations. If provided, it will be used for storing and retrieving embedding vectors; otherwise, vector storage functionality may be disabled or handled using default mechanisms.
Examples
using LMKit.Model;
using LMKit.Retrieval;
using System;
class Example
{
static void Main()
{
// Create an embedding model
LM embeddingModel = LM.LoadFromModelID("nomic-embed-text");
RagEngine ragEngine = new RagEngine(embeddingModel);
Console.WriteLine("RagEngine created successfully.");
}
}
Exceptions
- ArgumentNullException
Thrown if
embeddingModel
is null.