f44d44d b432a1e f44d44d c25ebd9 f44d44d c25ebd9
1
2
3
4
5
6
7
8
9
from fastapi import FastAPI from config import settings app = FastAPI() huggingface_key = settings.huggingface_key @app.get("/") def greet_json(): return {"HUGGINGFACE_API_KEY": huggingface_key}