Spaces:
Runtime error
Runtime error
from fastapi import FastAPI | |
from config import settings | |
app = FastAPI() | |
huggingface_key = settings.huggingface_key | |
def greet_json(): | |
return {"HUGGINGFACE_API_KEY": huggingface_key} | |