1
0
mirror of https://github.com/MarkParker5/STARK.git synced 2024-11-24 08:12:13 +02:00
STARK/config.example.py
2022-06-12 17:40:40 +02:00

38 lines
549 B
Python

import pathlib
path = str(pathlib.Path(__file__).parent.absolute())
del pathlib
src: str = path + '/resources'
# Api keys
telebot: str
goole_tts_json_key: str = src + '/tts-gc-key.json'
# Speech Recognition
vosk_model: str = src + '/model-small-rus'
# TTS
language_code: str = 'ru-RU'
voice_volume: float = 1
# Archie settings
double_clap_activation: bool = False
# Archie Core
names: list[str] = ['арчи', 'archie']
# DB
db_url: str = 'sqlite:///./sql_app.db'
# WiFi
wifi_ssid: str = 'Archie Hub'
wifi_password: str = '12345678'