File size: 345 Bytes
5ada319
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
# Stub for api_keys module to avoid import errors in HF Space
# In the HF deployment, we don't need the full api_keys config since
# the UI only talks to the remote Modal backend.

class APIConfig:
    def __init__(self):
        # Stub - only needed for imports, not actually used
        self.elevenlabs_api_key = ""

api_config = APIConfig()