Skip to content

Progress Service

Bases: Service

Monitors and reports progress of various components through the system pipeline.

Tracks the creation and completion status of multiple object types (lessons, prompts, documents, observations, engrams, indices) in parent-child hierarchies, calculates completion percentages, and notifies the system when objects are fully processed.

Attributes:

Name Type Description
progress_array dict[str, ProgressArray]

Maps object IDs to their progress tracking data.

lookup_array dict[str, str]

Quick reverse lookup from child-id to parent-id.

tracking_array dict[str, BubbleReturn]

Stores progress aggregation data by tracking ID.

Methods:

Name Description
on_lesson_created

Handles lesson creation events.

on_prompt_created

Handles prompt creation events.

on_document_created

Handles document creation events.

on_observation_created

Handles observation creation events.

on_engrams_created

Handles engrams creation events.

on_indices_created

Handles indices creation events.

Source code in src/engramic/application/progress/progress_service.py
 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
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
class ProgressService(Service):
    """
    Monitors and reports progress of various components through the system pipeline.

    Tracks the creation and completion status of multiple object types (lessons, prompts,
    documents, observations, engrams, indices) in parent-child hierarchies, calculates
    completion percentages, and notifies the system when objects are fully processed.

    Attributes:
        progress_array (dict[str, ProgressArray]): Maps object IDs to their progress tracking data.
        lookup_array (dict[str, str]): Quick reverse lookup from child-id to parent-id.
        tracking_array (dict[str, BubbleReturn]): Stores progress aggregation data by tracking ID.

    Methods:
        on_lesson_created(msg): Handles lesson creation events.
        on_prompt_created(msg): Handles prompt creation events.
        on_document_created(msg): Handles document creation events.
        on_observation_created(msg): Handles observation creation events.
        on_engrams_created(msg): Handles engrams creation events.
        on_indices_created(msg): Handles indices creation events.
    """

    @dataclass(slots=True)
    class ProgressArray:
        """
        Stores progress tracking data for a single object in the system.

        Attributes:
            item_type (str): Type of the object being tracked (lesson, prompt, document, etc).
            tracking_id (str | None): Identifier used to track a processing chain.
            children_is_complete_array (dict[str, bool]): Maps child IDs to completion status.
            target_id (str | None): ID of the target object (usually a document).
        """

        item_type: str
        tracking_id: str | None = None
        children_is_complete_array: dict[str, bool] = field(default_factory=dict)
        target_id: str | None = None

    @dataclass(slots=True)
    class BubbleReturn:
        """
        Stores aggregated progress data during bubble-up operations.

        Used to track completion metrics as progress propagates up the object hierarchy.

        Attributes:
            total_indices (int): Total number of indices to be processed.
            completed_indices (int): Number of indices already processed.
            is_complete (bool): Whether the entire processing chain is complete.
            root_node (str): ID of the root node in the processing hierarchy.
            target_id (str | None): ID of the target object.
        """

        total_indices: int = 0
        completed_indices: int = 0
        is_complete: bool = False
        root_node: str = ''
        target_id: str | None = None

    # --------------------------------------------------------------------- #
    # life-cycle                                                            #
    # --------------------------------------------------------------------- #
    def __init__(self, host: Host) -> None:
        """
        Initializes the ProgressService.

        Args:
            host (Host): The host environment providing access to system resources.
        """
        super().__init__(host)
        self.progress_array: dict[str, ProgressService.ProgressArray] = {}
        # quick reverse lookup: child-id → parent-id
        self.lookup_array: dict[str, str] = {}
        self.tracking_array: dict[str, ProgressService.BubbleReturn] = {}

    def start(self) -> None:
        """
        Starts the progress service by subscribing to relevant system events.

        Subscribes to creation events for lessons, prompts, documents, observations,
        engrams, and indices to begin tracking their progress through the system.
        """
        self.subscribe(Service.Topic.LESSON_CREATED, self.on_lesson_created)
        self.subscribe(Service.Topic.PROMPT_CREATED, self.on_prompt_created)
        self.subscribe(Service.Topic.DOCUMENT_CREATED, self.on_document_created)
        self.subscribe(Service.Topic.OBSERVATION_CREATED, self.on_observation_created)
        self.subscribe(Service.Topic.ENGRAMS_CREATED, self.on_engrams_created)
        self.subscribe(Service.Topic.INDICES_CREATED, self.on_indices_created)
        self.subscribe(Service.Topic.INDICES_INSERTED, self._on_indices_inserted)

        super().start()

    # --------------------------------------------------------------------- #
    # message handlers                                                      #
    # --------------------------------------------------------------------- #
    def on_lesson_created(self, msg: dict[str, Any]) -> None:
        """
        Handles the creation of a new lesson in the system.

        Sets up progress tracking for the lesson and connects it to its parent if one exists.

        Args:
            msg (dict[str, Any]): Message containing lesson creation details.
        """
        lesson_id = msg['id']
        parent_id = msg.get('parent_id', '')
        tracking_id = msg['tracking_id']
        doc_id = msg['doc_id']

        self.progress_array.setdefault(lesson_id, ProgressService.ProgressArray('lesson'))

        parent_id = None
        if 'parent_id' in msg:
            parent_id = msg['parent_id']

        if parent_id:
            self.progress_array[parent_id].children_is_complete_array[lesson_id] = False
            self.progress_array[parent_id].tracking_id = tracking_id
            self.lookup_array[lesson_id] = parent_id

        else:
            self.progress_array[lesson_id].tracking_id = tracking_id
            self.progress_array[lesson_id].target_id = doc_id
            self.send_message_async(
                Service.Topic.PROGRESS_UPDATED,
                {
                    'progress_type': 'lesson',
                    'id': lesson_id,
                    'target_id': doc_id,
                    'percent_complete': 0.05,
                    'tracking_id': tracking_id,
                },
            )

    def on_prompt_created(self, msg: dict[str, Any]) -> None:
        """
        Handles the creation of a new prompt in the system.

        Sets up progress tracking for the prompt and connects it to its parent if one exists.

        Args:
            msg (dict[str, Any): Message containing prompt creation details.
        """
        prompt_id = msg['id']
        parent_id = msg.get('parent_id', '')
        tracking_id = msg['tracking_id']

        self.progress_array.setdefault(prompt_id, ProgressService.ProgressArray('prompt'))

        if parent_id:
            self.progress_array[parent_id].children_is_complete_array[prompt_id] = False
            self.progress_array[parent_id].tracking_id = tracking_id
            self.lookup_array[prompt_id] = parent_id
        else:
            self.progress_array[prompt_id].tracking_id = tracking_id

            self.send_message_async(
                Service.Topic.PROGRESS_UPDATED,
                {
                    'progress_type': 'lesson',
                    'id': prompt_id,
                    'target_id': prompt_id,
                    'percent_complete': 0.05,
                    'tracking_id': tracking_id,
                },
            )

    def on_document_created(self, msg: dict[str, Any]) -> None:
        """
        Handles the creation of a new document in the system.

        Sets up progress tracking for the document and connects it to its parent if one exists.

        Args:
            msg (dict[str, Any]): Message containing document creation details.
        """
        doc_id = msg['id']
        tracking_id = msg['tracking_id']

        parent_id = None
        if 'parent_id' in msg:
            parent_id = msg['parent_id']

        self.progress_array.setdefault(doc_id, ProgressService.ProgressArray('document'))

        if parent_id:
            self.progress_array[parent_id].children_is_complete_array[doc_id] = False
            self.progress_array[parent_id].tracking_id = tracking_id
            self.progress_array[parent_id].target_id = doc_id
            self.lookup_array[doc_id] = parent_id
        else:  # an originating node
            self.progress_array[doc_id].tracking_id = tracking_id
            self.progress_array[doc_id].target_id = doc_id
            self.send_message_async(
                Service.Topic.PROGRESS_UPDATED,
                {
                    'progress_type': 'document',
                    'id': doc_id,
                    'target_id': doc_id,
                    'percent_complete': 0.05,
                    'tracking_id': tracking_id,
                },
            )

    def on_observation_created(self, msg: dict[str, Any]) -> None:
        """
        Handles the creation of a new observation in the system.

        Sets up progress tracking for the observation and connects it to its parent.

        Args:
            msg (dict[str, Any]): Message containing observation creation details.
        """
        obs_id = msg['id']
        parent_id = msg['parent_id']

        self.progress_array.setdefault(obs_id, ProgressService.ProgressArray('observation'))
        self.progress_array[parent_id].children_is_complete_array[obs_id] = False
        self.lookup_array[obs_id] = parent_id

    def on_engrams_created(self, msg: dict[str, Any]) -> None:
        """
        Handles the creation of new engrams in the system.

        Sets up progress tracking for multiple engrams and connects them to their parent.

        Args:
            msg (dict[str, Any]): Message containing engram creation details.
        """
        parent_id = msg['parent_id']
        for engram_id in msg['engram_id_array']:
            self.progress_array.setdefault(engram_id, ProgressService.ProgressArray('engram'))
            self.progress_array[parent_id].children_is_complete_array[engram_id] = False
            self.lookup_array[engram_id] = parent_id

    def on_indices_created(self, msg: dict[str, Any]) -> None:
        """
        Handles the creation of new indices in the system.

        Sets up progress tracking for multiple indices and connects them to their parent.
        Updates tracking metrics for the processing chain.

        Args:
            msg (dict[str, Any]): Message containing index creation details.
        """
        parent_id = msg['parent_id']
        tracking_id = msg['tracking_id']

        for index_id in msg['index_id_array']:
            self.progress_array[parent_id].children_is_complete_array[index_id] = False
            self.lookup_array[index_id] = parent_id

        if tracking_id not in self.tracking_array:
            bubble_return = ProgressService.BubbleReturn()
            self._get_root_node(parent_id, bubble_return)
            self.tracking_array[tracking_id] = bubble_return

        self.tracking_array[tracking_id].total_indices += len(msg['index_id_array'])

    # ------------------------------------------------------------------ #
    # propagation logic                                                  #
    # ------------------------------------------------------------------ #
    def _on_indices_inserted(self, msg: dict[str, Any]) -> None:
        """
        Handles the insertion of indices into the system.

        Marks indices as complete and triggers the bubble-up process to update
        progress metrics and potentially mark parent objects as complete.

        Args:
            msg (dict[str, Any]): Message containing index insertion details.
        """
        parent_id = msg['parent_id']
        tracking_id = msg['tracking_id']

        for index_id in msg['index_id_array']:
            self.progress_array[parent_id].children_is_complete_array[index_id] = True
            # (no need to fill lookup_array here it was done in on_indices_created)

        bubble_return = self.tracking_array[tracking_id]

        # Kick off bubble-up test from the *parent* node
        self._bubble_up_if_complete(parent_id, bubble_return)
        originating_object = self.progress_array[bubble_return.root_node]

        self.send_message_async(
            Service.Topic.PROGRESS_UPDATED,
            {
                'progress_type': originating_object.item_type,
                'id': bubble_return.root_node,
                'target_id': originating_object.target_id,
                'percent_complete': bubble_return.completed_indices / bubble_return.total_indices,
                'tracking_id': tracking_id,
            },
        )

        if bubble_return.is_complete:
            self._cleanup_subtree(bubble_return.root_node)
            del self.tracking_array[tracking_id]

    def _bubble_up_if_complete(self, node_id: str, bubble_return: ProgressService.BubbleReturn) -> None:
        """
        Recursively marks nodes as complete and propagates completion status upward.

        Checks if all children of a node are complete, and if so, marks the node as complete
        in its parent. This process continues up the hierarchy until reaching the root node.

        Args:
            node_id (str): ID of the node to check for completion.
            bubble_return (BubbleReturn): Object to track aggregated progress metrics.
        """
        progress = self.progress_array[node_id]

        if progress.item_type == 'engram':
            bubble_return.completed_indices += sum(progress.children_is_complete_array.values())

        if not progress.children_is_complete_array:
            return

        if all(progress.children_is_complete_array.values()):
            # Notify whoever cares that this node is done
            parent_id: str | None = self.lookup_array.get(node_id)

            if progress.item_type == 'document':
                self.send_message_async(Service.Topic.DOCUMENT_INSERTED, {'id': node_id})
            elif progress.item_type == 'lesson':
                self.send_message_async(Service.Topic.LESSON_INSERTED, {'id': node_id})
            elif progress.item_type == 'prompt':
                self.send_message_async(Service.Topic.PROMPT_INSERTED, {'id': node_id})

            # mark completion in the parent (if any)
            if parent_id is not None:
                self.progress_array[parent_id].children_is_complete_array[node_id] = True
            else:
                bubble_return.is_complete = True
                bubble_return.target_id = progress.target_id
                return

            self._bubble_up_if_complete(parent_id, bubble_return)

        return

    def _get_root_node(self, node_id: str, bubble_return: ProgressService.BubbleReturn) -> None:
        """
        Recursively finds the root node of a processing hierarchy.

        Args:
            node_id (str): ID of the node to start the search from.
            bubble_return (BubbleReturn): Object to store the root node ID once found.
        """
        parent_id: str | None = self.lookup_array.get(node_id)
        if parent_id is None:
            bubble_return.root_node = node_id
        else:
            self._get_root_node(parent_id, bubble_return)

    def _cleanup_subtree(self, root_node_id: str) -> None:
        """
        Recursively removes completed nodes and their children from tracking structures.

        Cleans up memory by removing objects that have completed processing.

        Args:
            root_node_id (str): ID of the root node of the subtree to clean up.
        """
        node = self.progress_array.get(root_node_id)
        if node is None:
            return

        # Defensive copy because we mutate inside the loop
        for child_id in list(node.children_is_complete_array):
            if child_id in self.progress_array:
                self._cleanup_subtree(child_id)

            self.lookup_array.pop(child_id, None)
            self.progress_array.pop(child_id, None)

        # Remove the node itself
        self.lookup_array.pop(root_node_id, None)
        self.progress_array.pop(root_node_id, None)

BubbleReturn dataclass

Stores aggregated progress data during bubble-up operations.

Used to track completion metrics as progress propagates up the object hierarchy.

Attributes:

Name Type Description
total_indices int

Total number of indices to be processed.

completed_indices int

Number of indices already processed.

is_complete bool

Whether the entire processing chain is complete.

root_node str

ID of the root node in the processing hierarchy.

target_id str | None

ID of the target object.

Source code in src/engramic/application/progress/progress_service.py
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
@dataclass(slots=True)
class BubbleReturn:
    """
    Stores aggregated progress data during bubble-up operations.

    Used to track completion metrics as progress propagates up the object hierarchy.

    Attributes:
        total_indices (int): Total number of indices to be processed.
        completed_indices (int): Number of indices already processed.
        is_complete (bool): Whether the entire processing chain is complete.
        root_node (str): ID of the root node in the processing hierarchy.
        target_id (str | None): ID of the target object.
    """

    total_indices: int = 0
    completed_indices: int = 0
    is_complete: bool = False
    root_node: str = ''
    target_id: str | None = None

ProgressArray dataclass

Stores progress tracking data for a single object in the system.

Attributes:

Name Type Description
item_type str

Type of the object being tracked (lesson, prompt, document, etc).

tracking_id str | None

Identifier used to track a processing chain.

children_is_complete_array dict[str, bool]

Maps child IDs to completion status.

target_id str | None

ID of the target object (usually a document).

Source code in src/engramic/application/progress/progress_service.py
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
@dataclass(slots=True)
class ProgressArray:
    """
    Stores progress tracking data for a single object in the system.

    Attributes:
        item_type (str): Type of the object being tracked (lesson, prompt, document, etc).
        tracking_id (str | None): Identifier used to track a processing chain.
        children_is_complete_array (dict[str, bool]): Maps child IDs to completion status.
        target_id (str | None): ID of the target object (usually a document).
    """

    item_type: str
    tracking_id: str | None = None
    children_is_complete_array: dict[str, bool] = field(default_factory=dict)
    target_id: str | None = None

__init__(host)

Initializes the ProgressService.

Parameters:

Name Type Description Default
host Host

The host environment providing access to system resources.

required
Source code in src/engramic/application/progress/progress_service.py
87
88
89
90
91
92
93
94
95
96
97
98
def __init__(self, host: Host) -> None:
    """
    Initializes the ProgressService.

    Args:
        host (Host): The host environment providing access to system resources.
    """
    super().__init__(host)
    self.progress_array: dict[str, ProgressService.ProgressArray] = {}
    # quick reverse lookup: child-id → parent-id
    self.lookup_array: dict[str, str] = {}
    self.tracking_array: dict[str, ProgressService.BubbleReturn] = {}

on_document_created(msg)

Handles the creation of a new document in the system.

Sets up progress tracking for the document and connects it to its parent if one exists.

Parameters:

Name Type Description Default
msg dict[str, Any]

Message containing document creation details.

required
Source code in src/engramic/application/progress/progress_service.py
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
def on_document_created(self, msg: dict[str, Any]) -> None:
    """
    Handles the creation of a new document in the system.

    Sets up progress tracking for the document and connects it to its parent if one exists.

    Args:
        msg (dict[str, Any]): Message containing document creation details.
    """
    doc_id = msg['id']
    tracking_id = msg['tracking_id']

    parent_id = None
    if 'parent_id' in msg:
        parent_id = msg['parent_id']

    self.progress_array.setdefault(doc_id, ProgressService.ProgressArray('document'))

    if parent_id:
        self.progress_array[parent_id].children_is_complete_array[doc_id] = False
        self.progress_array[parent_id].tracking_id = tracking_id
        self.progress_array[parent_id].target_id = doc_id
        self.lookup_array[doc_id] = parent_id
    else:  # an originating node
        self.progress_array[doc_id].tracking_id = tracking_id
        self.progress_array[doc_id].target_id = doc_id
        self.send_message_async(
            Service.Topic.PROGRESS_UPDATED,
            {
                'progress_type': 'document',
                'id': doc_id,
                'target_id': doc_id,
                'percent_complete': 0.05,
                'tracking_id': tracking_id,
            },
        )

on_engrams_created(msg)

Handles the creation of new engrams in the system.

Sets up progress tracking for multiple engrams and connects them to their parent.

Parameters:

Name Type Description Default
msg dict[str, Any]

Message containing engram creation details.

required
Source code in src/engramic/application/progress/progress_service.py
245
246
247
248
249
250
251
252
253
254
255
256
257
258
def on_engrams_created(self, msg: dict[str, Any]) -> None:
    """
    Handles the creation of new engrams in the system.

    Sets up progress tracking for multiple engrams and connects them to their parent.

    Args:
        msg (dict[str, Any]): Message containing engram creation details.
    """
    parent_id = msg['parent_id']
    for engram_id in msg['engram_id_array']:
        self.progress_array.setdefault(engram_id, ProgressService.ProgressArray('engram'))
        self.progress_array[parent_id].children_is_complete_array[engram_id] = False
        self.lookup_array[engram_id] = parent_id

on_indices_created(msg)

Handles the creation of new indices in the system.

Sets up progress tracking for multiple indices and connects them to their parent. Updates tracking metrics for the processing chain.

Parameters:

Name Type Description Default
msg dict[str, Any]

Message containing index creation details.

required
Source code in src/engramic/application/progress/progress_service.py
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
def on_indices_created(self, msg: dict[str, Any]) -> None:
    """
    Handles the creation of new indices in the system.

    Sets up progress tracking for multiple indices and connects them to their parent.
    Updates tracking metrics for the processing chain.

    Args:
        msg (dict[str, Any]): Message containing index creation details.
    """
    parent_id = msg['parent_id']
    tracking_id = msg['tracking_id']

    for index_id in msg['index_id_array']:
        self.progress_array[parent_id].children_is_complete_array[index_id] = False
        self.lookup_array[index_id] = parent_id

    if tracking_id not in self.tracking_array:
        bubble_return = ProgressService.BubbleReturn()
        self._get_root_node(parent_id, bubble_return)
        self.tracking_array[tracking_id] = bubble_return

    self.tracking_array[tracking_id].total_indices += len(msg['index_id_array'])

on_lesson_created(msg)

Handles the creation of a new lesson in the system.

Sets up progress tracking for the lesson and connects it to its parent if one exists.

Parameters:

Name Type Description Default
msg dict[str, Any]

Message containing lesson creation details.

required
Source code in src/engramic/application/progress/progress_service.py
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
def on_lesson_created(self, msg: dict[str, Any]) -> None:
    """
    Handles the creation of a new lesson in the system.

    Sets up progress tracking for the lesson and connects it to its parent if one exists.

    Args:
        msg (dict[str, Any]): Message containing lesson creation details.
    """
    lesson_id = msg['id']
    parent_id = msg.get('parent_id', '')
    tracking_id = msg['tracking_id']
    doc_id = msg['doc_id']

    self.progress_array.setdefault(lesson_id, ProgressService.ProgressArray('lesson'))

    parent_id = None
    if 'parent_id' in msg:
        parent_id = msg['parent_id']

    if parent_id:
        self.progress_array[parent_id].children_is_complete_array[lesson_id] = False
        self.progress_array[parent_id].tracking_id = tracking_id
        self.lookup_array[lesson_id] = parent_id

    else:
        self.progress_array[lesson_id].tracking_id = tracking_id
        self.progress_array[lesson_id].target_id = doc_id
        self.send_message_async(
            Service.Topic.PROGRESS_UPDATED,
            {
                'progress_type': 'lesson',
                'id': lesson_id,
                'target_id': doc_id,
                'percent_complete': 0.05,
                'tracking_id': tracking_id,
            },
        )

on_observation_created(msg)

Handles the creation of a new observation in the system.

Sets up progress tracking for the observation and connects it to its parent.

Parameters:

Name Type Description Default
msg dict[str, Any]

Message containing observation creation details.

required
Source code in src/engramic/application/progress/progress_service.py
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
def on_observation_created(self, msg: dict[str, Any]) -> None:
    """
    Handles the creation of a new observation in the system.

    Sets up progress tracking for the observation and connects it to its parent.

    Args:
        msg (dict[str, Any]): Message containing observation creation details.
    """
    obs_id = msg['id']
    parent_id = msg['parent_id']

    self.progress_array.setdefault(obs_id, ProgressService.ProgressArray('observation'))
    self.progress_array[parent_id].children_is_complete_array[obs_id] = False
    self.lookup_array[obs_id] = parent_id

on_prompt_created(msg)

Handles the creation of a new prompt in the system.

Sets up progress tracking for the prompt and connects it to its parent if one exists.

Parameters:

Name Type Description Default
msg dict[str, Any

Message containing prompt creation details.

required
Source code in src/engramic/application/progress/progress_service.py
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
def on_prompt_created(self, msg: dict[str, Any]) -> None:
    """
    Handles the creation of a new prompt in the system.

    Sets up progress tracking for the prompt and connects it to its parent if one exists.

    Args:
        msg (dict[str, Any): Message containing prompt creation details.
    """
    prompt_id = msg['id']
    parent_id = msg.get('parent_id', '')
    tracking_id = msg['tracking_id']

    self.progress_array.setdefault(prompt_id, ProgressService.ProgressArray('prompt'))

    if parent_id:
        self.progress_array[parent_id].children_is_complete_array[prompt_id] = False
        self.progress_array[parent_id].tracking_id = tracking_id
        self.lookup_array[prompt_id] = parent_id
    else:
        self.progress_array[prompt_id].tracking_id = tracking_id

        self.send_message_async(
            Service.Topic.PROGRESS_UPDATED,
            {
                'progress_type': 'lesson',
                'id': prompt_id,
                'target_id': prompt_id,
                'percent_complete': 0.05,
                'tracking_id': tracking_id,
            },
        )

start()

Starts the progress service by subscribing to relevant system events.

Subscribes to creation events for lessons, prompts, documents, observations, engrams, and indices to begin tracking their progress through the system.

Source code in src/engramic/application/progress/progress_service.py
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
def start(self) -> None:
    """
    Starts the progress service by subscribing to relevant system events.

    Subscribes to creation events for lessons, prompts, documents, observations,
    engrams, and indices to begin tracking their progress through the system.
    """
    self.subscribe(Service.Topic.LESSON_CREATED, self.on_lesson_created)
    self.subscribe(Service.Topic.PROMPT_CREATED, self.on_prompt_created)
    self.subscribe(Service.Topic.DOCUMENT_CREATED, self.on_document_created)
    self.subscribe(Service.Topic.OBSERVATION_CREATED, self.on_observation_created)
    self.subscribe(Service.Topic.ENGRAMS_CREATED, self.on_engrams_created)
    self.subscribe(Service.Topic.INDICES_CREATED, self.on_indices_created)
    self.subscribe(Service.Topic.INDICES_INSERTED, self._on_indices_inserted)

    super().start()