
RAGFlow Tutorial
RAGFlow is a framework for the structured implementation of Retrieval Augmented Generation (RAG) applications. It offers a modular architecture in which individual processing steps such as document import, text preparation, vectorization, indexing, and answer generation can be configured and executed separately. Models The platform supports different storage solutions for vector data and allows the connection of various LLMs. The list of supported LLMs can be found here. Column Meaning Provider Provider or source of the model. Can be a cloud service (e.g. OpenAI) or a model developer (e.g. Cohere, BAAI). Chat Supports conversational language models used for conversation or answer generation. Embedding Provides embedding models for converting texts into vectors for semantic search or classification. Rerank Models for reranking already found hits to display more relevant results at the top. Img2txt Models for image description: convert an image into a descriptive text. Speech2txt Models for converting spoken language into written text (ASR - Automatic Speech Recognition). TTS Text-to-Speech: converts written text into synthetic speech. No support yet in the table. OpenAI provides no support for the “Rerank” function. ...








