File size: 722 Bytes
8d85a2c
 
 
2fc68b4
 
deb83c9
74d601a
6bf37cd
8d85a2c
 
 
 
 
 
 
 
 
 
 
deb83c9
072df7d
8d85a2c
2fc68b4
8d85a2c
2fc68b4
 
8d85a2c
2fc68b4
8d85a2c
 
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
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from pydantic import BaseModel
from model import generate_structure
import uvicorn

app = FastAPI()

# Allow all CORS (for testing or frontend use)
app.add_middleware(
    CORSMiddleware,
    allow_origins=["*"],
    allow_credentials=True,
    allow_methods=["*"],
    allow_headers=["*"],
)

class PromptRequest(BaseModel):
    prompt: str

@app.post("/prompt")
async def prompt_route(data: PromptRequest):
    try:
        response = generate_structure(data.prompt)
        return {"response": response}
    except Exception as e:
        return {"error": str(e)}

if __name__  == "__main__":
    uvicorn.run(app, host="0.0.0.0", port=7860)