File size: 285 Bytes
0c51b93 |
1 2 3 4 5 6 7 8 9 10 11 12 |
# apps.py
from django.apps import AppConfig
class SotopiaConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "sotopia"
class RejectionSamplerConfig(AppConfig):
name = 'sotopia'
rejection_sampler = None # Initialized in the custom command
|