|
6 | 6 | You are an expert in indentifying semantic elements in a natural language prompt hich describes a building and/or energy systems.\n
|
7 | 7 | 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.
|
8 | 8 | 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 |
10 | 10 | USER PROMPT: {prompt} \n
|
11 | 11 | ENTITIES: {elements_dict} \n
|
12 | 12 | """ # noqa
|
|
45 | 45 | 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
|
46 | 46 | To encode the unit of measures, use the names defined by the QUDT ontology.\n
|
47 | 47 | 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. |
48 | 49 | USER PROMPT: {prompt}
|
49 | 50 | HIERARCHICAL SENSOR STRUCTURE: {sensor_structure}
|
50 | 51 | """
|
|
98 | 99 | 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
|
99 | 100 | DO NOT add information that are not present in the input.\n
|
100 | 101 | 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 |
102 | 103 | 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 |
104 | 105 | TTL SCRIPT EXAMPLE: {ttl_example}\n
|
105 | 106 |
|
106 | 107 | COMPONENTS HIERARCHY: {elem_hierarchy}\n
|
|
0 commit comments