diff --git a/extra/OpenWebuiTool/openwebui_tool.py b/extra/OpenWebuiTool/openwebui_tool.py new file mode 100644 index 00000000..260b779c --- /dev/null +++ b/extra/OpenWebuiTool/openwebui_tool.py @@ -0,0 +1,34 @@ +""" +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" \ No newline at end of file