Identify child elements for each category in the element list using a language model.
Parameters:
Name |
Type |
Description |
Default |
state
|
State
|
The current state containing the user prompt and element list.
|
required
|
config
|
dict
|
Configuration dictionary containing the language model.
|
required
|
Returns:
Name | Type |
Description |
dict |
Dict[str, Any]
|
A dictionary containing the hierarchical structure of identified elements.
|
Source code in brickllm/nodes/get_elem_children.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
60
61
62
63
64
65
66
67
68
69
70
71 | def get_elem_children(state: State, config: Dict[str, Any]) -> Dict[str, Any]:
"""
Identify child elements for each category in the element list using a language model.
Args:
state (State): The current state containing the user prompt and element list.
config (dict): Configuration dictionary containing the language model.
Returns:
dict: A dictionary containing the hierarchical structure of identified elements.
"""
custom_logger.eurac(
"📊 Getting children for each BrickSchema category in the element list"
)
user_prompt = state["user_prompt"]
categories = state["elem_list"]
category_dict = {}
for category in categories:
children_list = get_children_hierarchy(category, flatten=True)
children_string = "\n".join(
[
f"{parent} -> {child}"
for parent, child in children_list
if isinstance(parent, str) and isinstance(child, str)
]
)
category_dict[category] = children_string
# Get the model name from the config
llm = config.get("configurable", {}).get("llm_model")
# Enforce structured output
structured_llm = llm.with_structured_output(ElemListSchema)
identified_children = []
for category in categories:
# if the category is not "\n", then add the category to the prompt
if category_dict[category] != "":
# System message
system_message = get_elem_children_instructions.format(
prompt=user_prompt, elements_list=category_dict[category]
)
# Generate question
elements = structured_llm.invoke(
[SystemMessage(content=system_message)]
+ [HumanMessage(content="Find the elements.")]
)
identified_children.extend(elements.elem_list)
else:
identified_children.append(category)
# Remove duplicates
identified_children = list(set(identified_children))
filtered_children = filter_elements(identified_children)
# create hierarchical dictionary
hierarchical_dict = create_hierarchical_dict(filtered_children, properties=True)
return {"elem_hierarchy": hierarchical_dict}
|