Spaces:
Sleeping
Sleeping
File size: 360 Bytes
c14d84c a46fd4b 4e4c3a4 c14d84c a46fd4b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
from dotenv import load_dotenv
import os
load_dotenv()
HF_TOKEN = os.getenv("HF_TOKEN", None)
SUMMARIZATION_ENDPOINT="https://habib926653-text-translator-agent-api.hf.space/generate"
IMAGE_GENERATION_SPACE_NAME="habib926653/stabilityai-stable-diffusion-3.5-large-turbo"
# Supported formats
SUPPORTED_FORMATS = ["mp3", "wav", "ogg", "flac", "aac", "m4a"]
|