DeepSeek-R1 / src /open_r1 /sft.py
rai-sant
Add FastAPI app and Dockerfile updates for DeepSeek-R1
7f7c58f
Raw
History Blame Contribute Delete
122 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def root():
return {"message": "Welcome to DeepSeek-R1!"}