Spaces:
Runtime error
Runtime error
from dataclasses import dataclass | |
import os | |
class TgBot: | |
token: str | |
admin_ids: list[int] | |
class DataConfig: | |
dataset: str | |
cls_vec: str | |
class ModelConfig: | |
bi_checkpoint: str | |
cross_checkpoint: str | |
device: str | |
hf_client: str | |
class Config: | |
tg_bot: TgBot | |
data: DataConfig | |
model: ModelConfig | |
def load_config(path: str='.env') -> Config: | |
return Config( | |
tg_bot=TgBot( | |
token=os.environ['telegram_token'], | |
admin_ids=os.environ['telegram_admin'] | |
), | |
data=DataConfig( | |
dataset='ekaterinatao/house_md_context3', | |
cls_vec='ekaterinatao/house_md_cls_embeds' | |
), | |
model=ModelConfig( | |
bi_checkpoint='ekaterinatao/house-md-bot-bert-bi-encoder', | |
cross_checkpoint='ekaterinatao/house-md-bot-bert-cross-encoder', | |
device='cpu', | |
hf_client='ekaterinatao/house_md_bot' | |
) | |
) |