Coverage for mindsdb / integrations / handlers / google_search_handler / connection_args.py: 0%

4 statements  

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

1from collections import OrderedDict 

2 

3from mindsdb.integrations.libs.const import HANDLER_CONNECTION_ARG_TYPE as ARG_TYPE 

4 

5 

6connection_args = OrderedDict( 

7 credentials={ 

8 'type': ARG_TYPE.PATH, 

9 'description': 'The path to the credentials file. If not specified, the default credentials are used.' 

10 } 

11) 

12 

13connection_args_example = OrderedDict( 

14 credentials='/path/to/credentials.json' 

15)