mirror of
https://github.com/open-webui/open-webui
synced 2024-11-06 08:56:39 +00:00
24 lines
477 B
Python
24 lines
477 B
Python
from fastapi import FastAPI, Request, Depends, HTTPException
|
|
from fastapi.middleware.cors import CORSMiddleware
|
|
|
|
from apps.web.routers import auths, users, chats, modelfiles, utils
|
|
from config import WEBUI_VERSION, WEBUI_AUTH
|
|
|
|
|
|
app = FastAPI()
|
|
|
|
origins = ["*"]
|
|
|
|
app.add_middleware(
|
|
CORSMiddleware,
|
|
allow_origins=origins,
|
|
allow_credentials=True,
|
|
allow_methods=["*"],
|
|
allow_headers=["*"],
|
|
)
|
|
|
|
|
|
@app.get("/")
|
|
async def get_status():
|
|
return {"status": True}
|