Coverage for mindsdb / integrations / handlers / minds_endpoint_handler / settings.py: 0%

4 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-01-21 00:36 +0000

1from pydantic_settings import BaseSettings 

2 

3 

4class MindsEndpointHandlerConfig(BaseSettings): 

5 """ 

6 Configuration for Minds Endpoint handler. 

7 

8 Attributes 

9 ---------- 

10 

11 BASE_URL : str 

12 Base URL for the Minds Endpoint API. 

13 """ 

14 

15 BASE_URL: str = "https://llm.mdb.ai/" 

16 

17 

18minds_endpoint_handler_config = MindsEndpointHandlerConfig()