Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 331 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 331 Bytes

GreenGridIn Flask API

API

  • POST /predict - Predict the power consumption of a server based on the input data.

    • Request Body:

      {
        "air_temperature": 10.926,
        "pressure": 0.979103,
        "wind_speed": 9.014
      }
    • Response:

      {
        "power": 33.6881
      }