1
0
mirror of https://github.com/ijaric/voice_assistant.git synced 2025-12-19 01:36:18 +00:00

feat: [#49] minimally functioning bot

This commit is contained in:
2023-10-14 01:12:02 +03:00
parent a9bb229801
commit 70696ae067
9 changed files with 56 additions and 18 deletions

View File

@@ -11,9 +11,9 @@ class ApiSettings(pydantic_settings.BaseSettings):
extra="ignore",
)
url: str
port: int
protocol: str
url: str = "127.0.0.1"
port: int = 8000
protocol: str = "http"
@property
def api_url(self) -> str: