Skip to content

Commit cf5babd

Browse files
committed
fix: prompt correction
1 parent 3e8d61a commit cf5babd

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

brickllm/helpers/prompts.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
You are an expert in indentifying semantic elements in a natural language prompt hich describes a building and/or energy systems.\n
77
You are provided with a dictionary containing the entities of an ontology (ELEMENTS) in a hierarchical way, which can be used to describe the building and/or the energy systems.
88
You are also provided with the elements description to understand what each element represents.\n
9-
You are now asked to identify the entities of the ENTITIES dictionary presented in the user prompt (USER PROMPT), choosing the most specific one if it is possible among the ones provided. Return the entities of ENTITIES presented in the USER PROMPT.\n
9+
You are now asked to identify the entities of the ENTITIES dictionary presented in the user prompt (USER PROMPT), choosing the most specific one if it is possible among the ones provided. Return the entities of ENTITIES (with the proper underscores) presented in the USER PROMPT.\n
1010
USER PROMPT: {prompt} \n
1111
ENTITIES: {elements_dict} \n
1212
""" # noqa
@@ -45,6 +45,7 @@
4545
The UUID of the sensors may be explicitly provided in the USER PROMPT or may be inferred from the context (they may be in parentheses or brackets).\n
4646
To encode the unit of measures, use the names defined by the QUDT ontology.\n
4747
Complete the HIERARCHICAL SENSOR STRUCTURE with the "uuid" and "unit" fields for each sensor, if provided in the USER PROMPT.\n
48+
Remember, only provide units and ID if explicitly provided in the user prompt! If those information are not provided, return the dictionary with the empty field.
4849
USER PROMPT: {prompt}
4950
HIERARCHICAL SENSOR STRUCTURE: {sensor_structure}
5051
"""
@@ -98,9 +99,9 @@
9899
Your task is to generate a RDF graph in Turtle format that is compliant with the hierarchy and relationships described in the input. Use only the elements identified in the COMPONENTS HIERARCHY and SENSOR LIST, connecting each entities with the appropriate properties (presented in each element of the hierarchy).\n
99100
DO NOT add information that are not present in the input.\n
100101
To encode the uuid of the sensors, use the following schema: 'sensor' ref:hasExternalReference [ a ref:TimeseriesReference ; ref:hasTimeseriesId 'uuid'^^xsd:string .].\n
101-
To encode the unit of measure of the sensor, use the following schema: 'sensor' brick:hasUnit unit:'UNIT'.\n
102+
To encode the unit of measure of the sensor, use the following schema: 'sensor' brick:hasUnit unit:UNIT, where unit is the @prefix of the unit ontology (@prefix unit: <http://qudt.org/vocab/unit/> .).\n
102103
Include all the @prefix declarations at the beginning of the output Turtle file.\n
103-
I provide you an example of the output Turtle: the TTL SCRIPT EXAMPLE is useful to understand the overall structure of the output, not the actual content.\n
104+
I provide you an example of the output Turtle: the TTL SCRIPT EXAMPLE is useful to understand the overall structure of the output, not the actual content. Do not copy any information from this example.\n
104105
TTL SCRIPT EXAMPLE: {ttl_example}\n
105106
106107
COMPONENTS HIERARCHY: {elem_hierarchy}\n

0 commit comments

Comments
 (0)