get_elements.py§
get_elements(state, config)
§
Process the user prompt to identify elements within specified categories using a language model.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
state
|
State
|
The current state containing the user prompt. |
required |
config
|
dict
|
Configuration dictionary containing the language model. |
required |
Returns:
Name | Type | Description |
---|---|---|
dict |
Dict[str, Any]
|
A dictionary containing the list of identified elements. |
Source code in brickllm/nodes/get_elements.py
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 47 48 49 50 51 52 53 54 55 56 57 58 59 |
|