mirror of
https://github.com/ThePhaseless/Byparr.git
synced 2026-09-24 22:03:30 +01:00
Add /load endpoint for Open WebUI's WEB_LOADER_ENGINE=external integration. Uses document.body.innerText for content extraction. Configure in Open WebUI: WEB_LOADER_ENGINE=external EXTERNAL_WEB_LOADER_URL=http://byparr:8191/load EXTERNAL_WEB_LOADER_API_KEY=<OWUI_API_KEY env var> Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
44 lines
1.2 KiB
Python
44 lines
1.2 KiB
Python
from __future__ import annotations
|
|
|
|
import asyncio
|
|
import logging
|
|
import sys
|
|
|
|
import uvicorn
|
|
from fastapi import FastAPI
|
|
from fastapi.middleware.gzip import GZipMiddleware
|
|
|
|
from src.consts import HOST, LOG_LEVEL, PORT, VERSION
|
|
from src.endpoints import health_check, router
|
|
from src.middlewares import LogRequest
|
|
from src.owui import router as owui_router
|
|
from src.utils import get_browser, logger
|
|
|
|
logger.info("Using version %s", VERSION)
|
|
logger.info("Log level set to %s", logging.getLevelName(LOG_LEVEL))
|
|
|
|
app = FastAPI(debug=LOG_LEVEL == logging.DEBUG, log_level=LOG_LEVEL)
|
|
app.add_middleware(GZipMiddleware)
|
|
app.add_middleware(LogRequest)
|
|
|
|
app.include_router(router=router)
|
|
app.include_router(router=owui_router)
|
|
|
|
|
|
async def init():
|
|
"""Initialize the application."""
|
|
async for browser in get_browser():
|
|
await health_check(browser)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
# Check for --init flag to run the app in development mode
|
|
if "--init" in sys.argv:
|
|
logger.info("Running initialization script...")
|
|
loop = asyncio.new_event_loop()
|
|
asyncio.set_event_loop(loop)
|
|
loop.run_until_complete(init())
|
|
logger.info("Initialization complete.")
|
|
else:
|
|
uvicorn.run(app, host=HOST, port=PORT)
|