You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We would like to convert a recording of one or more workflow iterations into a repeatable and versionable process representation, i.e. a process model.
We wish to extract process logs from Screenshot and ActionEvents in order to generate a process log, e.g.
select r.id as case_id,
we.title as activity,
-- ae."timestamp" as timestamp,
datetime(ae."timestamp", 'unixepoch', 'localtime') AS "timestamp",
COALESCE(ae."timestamp" - LAG(ae."timestamp") OVER (ORDER BY ae."timestamp"), 0) as costs,
ae.name as resource
from recording r
inner join action_event ae on r."timestamp" = ae.recording_timestamp
inner join window_event we on r."timestamp" = we.recording_timestamp and we."timestamp" = ae.window_event_timestamp
where r.id = 1
order by r.id, ae."timestamp";
Feature request
We would like to convert a recording of one or more workflow iterations into a repeatable and versionable process representation, i.e. a process model.
https://pm4py.fit.fraunhofer.de/static/assets/api/2.7.9/api.html#llm-integration-pm4py-llm
We wish to extract process logs from
Screenshot
andActionEvents
in order to generate a process log, e.g.Replaces #545
Motivation
Extract process logs to generate process model that can serve as replay state machine in model prompt.
The text was updated successfully, but these errors were encountered: