Integrate OpenWebUI bot with AI service

This commit is contained in:
Iyeoluwa Akinrinola
2025-05-20 02:18:46 +01:00
parent 730009ae87
commit 0a27103875
46 changed files with 1749 additions and 3012 deletions
+12
View File
@@ -0,0 +1,12 @@
import os
try:
from dotenv import load_dotenv
load_dotenv()
except ImportError:
print("dotenv not installed, skipping...")
WEBUI_URL = os.getenv("WEBUI_URL", "http://localhost:8080")
TOKEN = os.getenv("TOKEN", "")