src.database.query_builder.ElasticQueryBuilder
Source code in src/database/query_builder.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
|
__init__(config)
Initialize the QueryBuilder with the Elasticsearch-related config.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config
|
Dict[str, Any]
|
Elasticsearch config, including the query templates and other parameters. |
required |
Source code in src/database/query_builder.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
|
get_query(user_input)
Retrieve and process the query template with user input.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
user_input
|
str
|
The user input to inject into the query. |
required |
Returns:
Type | Description |
---|---|
Dict[str, Any]
|
Dict[str, Any]: The processed query body. |
Source code in src/database/query_builder.py
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
|