get_relationships.py§
get_relationships(state, config)
§
Determine relationships between building components using a language model.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
state
|
State
|
The current state containing the user prompt and element hierarchy. |
required |
config
|
dict
|
Configuration dictionary containing the language model. |
required |
Returns:
Name | Type | Description |
---|---|---|
dict |
Dict[str, Any]
|
A dictionary containing the grouped sensor paths. |
Source code in brickllm/nodes/get_relationships.py
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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
|