Chadsglm's picture
Update app.py
4c4f6e5 verified
raw
history blame contribute delete
186 Bytes
from fastapi import FastAPI
import uvicorn
from models.model_loader import generate_response
app = FastAPI()
@app.get("/")
def home():
return {"message": "DeepSeek AI is running!"}