mirror of
https://github.com/HKUDS/LightRAG.git
synced 2025-07-04 23:50:29 +00:00
34 lines
946 B
Python
34 lines
946 B
Python
![]() |
"""
|
||
|
OpenWebui Lightrag Integration Tool
|
||
|
==================================
|
||
|
|
||
|
This tool enables the integration and use of Lightrag within the OpenWebui environment,
|
||
|
providing a seamless interface for RAG (Retrieval-Augmented Generation) operations.
|
||
|
|
||
|
Author: ParisNeo (parisneoai@gmail.com)
|
||
|
Social:
|
||
|
- Twitter: @ParisNeo_AI
|
||
|
- Reddit: r/lollms
|
||
|
- Instagram: https://www.instagram.com/parisneo_ai/
|
||
|
|
||
|
License: Apache 2.0
|
||
|
Copyright (c) 2024-2025 ParisNeo
|
||
|
|
||
|
This tool is part of the LoLLMs project (Lord of Large Language and Multimodal Systems).
|
||
|
For more information, visit: https://github.com/ParisNeo/lollms
|
||
|
|
||
|
Requirements:
|
||
|
- Python 3.8+
|
||
|
- OpenWebui
|
||
|
- Lightrag
|
||
|
"""
|
||
|
|
||
|
from pathlib import Path
|
||
|
from typing import Optional, List, Dict, Union, Any
|
||
|
from datetime import datetime
|
||
|
|
||
|
# Tool version
|
||
|
__version__ = "1.0.0"
|
||
|
__author__ = "ParisNeo"
|
||
|
__author_email__ = "parisneoai@gmail.com"
|
||
|
__description__ = "Lightrag integration for OpenWebui"
|