Spaces:
Sleeping
Sleeping
File size: 1,423 Bytes
ade0ea8 d82c1af ade0ea8 d82c1af b7b3667 f7304fe bd97934 b22f417 e0a400b d82c1af e0a400b ade0ea8 e0a400b b22f417 bd97934 d82c1af b7b3667 f7304fe bd97934 b22f417 52b8c04 ade0ea8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# main.py
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from dotenv import load_dotenv
from routers.llm_chat import router as llm_chat_router
from routers.scraping_router import router as scraping_router
from routers.electronics_router import router as electronics_router
from fastapi.staticfiles import StaticFiles
from fastapi.responses import FileResponse
app = FastAPI(
title="LLM Chat API",
description="A FastAPI application to interact with an external LLM API.",
version="1.0.0",
)
# Enable CORS for all origins
app.add_middleware(
CORSMiddleware,
allow_origins=["*"], # Allows all origins
allow_credentials=True,
allow_methods=["*"], # Allows all methods
allow_headers=["*"], # Allows all headers
)
# Add Additional UI pages # Add index.html at static/ui/page2
# app.mount("/page2", StaticFiles(directory="static/ui/page2", html=True), name="index")
# Include the routers
app.include_router(llm_chat_router)
app.include_router(scraping_router)
app.include_router(electronics_router)
# Serve index.html at root
@app.get("/")
async def read_root():
return FileResponse("static/ui/index.html")
# Add to main.py
@app.get("/routes")
async def get_routes():
return {"routes": [{"path": route.path, "name": route.name} for route in app.routes]}
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000) |