added AI analysis

This commit is contained in:
2025-02-10 13:49:15 +01:00
parent fb62703894
commit 1008a778c0
4 changed files with 114 additions and 3 deletions

View File

@@ -14,6 +14,12 @@ from pathlib import Path
from decouple import Csv, config
from dj_database_url import parse as dburl
import os
from dotenv import load_dotenv
load_dotenv()
#API key
OPENAI_API_KEY = os.getenv("OPENAI_API_KEY")
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent