Abhilash7 commited on
Commit
064db79
·
verified ·
1 Parent(s): 2ecc363

Delete app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -24
app.py DELETED
@@ -1,24 +0,0 @@
1
- from fastapi import FastAPI
2
- from pydantic import BaseModel
3
-
4
- app = FastAPI()
5
-
6
- # Define a request body model
7
- class ForecastRequest(BaseModel):
8
- year: int
9
- month: int
10
-
11
- # Dummy response for the root endpoint
12
- @app.get("/")
13
- async def root():
14
- return {"message": "Welcome to the Forecasting API on Hugging Face Spaces"}
15
-
16
- # Example POST endpoint
17
- @app.post("/forecast")
18
- async def forecast(request: ForecastRequest):
19
- # Dummy logic: just return the input with a fake forecast
20
- predicted_value = (request.year * 100 + request.month * 10) % 1000
21
- return {
22
- "input": {"year": request.year, "month": request.month},
23
- "forecast": f"Predicted value for {request.year}-{request.month}: {predicted_value}"
24
- }