File size: 439 Bytes
a441854
 
b7087b8
 
 
 
 
 
 
 
a441854
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from fastapi import FastAPI
from ui.gradio_ui import create_ui
import os
from dotenv import load_dotenv

# Load environment variables from .env file
load_dotenv()

# Fetch the OpenAI API key from environment variables
openai_api_key = os.getenv('OPENAI_API_KEY')

app = FastAPI()

@app.on_event("startup")
def startup_event():
    create_ui()

@app.get("/")
def read_root():
    return {"message": "EcoPropertyRetrofitGPT API is running"}