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
Given W as the worked entity extracted via LUIS from the user's sentence, the project recognition flow is structured as follows:
Retrieves all the Clockify projects of the user workspace
Search for an exact match of W in the projects list
Search for the best match of W in the projects list using a string distance algorithm
Add another step in the project recognition flow where if no match is found, try to infer the Clockify project by assuming that W is a task. In detail:
Search for the best match of W in the tasks duplicate values using string distance algorithm and handle ambiguous cases
Search for an exact match of W in the tasks unique list
Search for the best match of W in the tasks unique list using a string distance algorithm (ambiguous cases must be handled as for the search in the project list)
Given W as the worked entity extracted via LUIS from the user's sentence, the project recognition flow is structured as follows:
Add another step in the project recognition flow where if no match is found, try to infer the Clockify project by assuming that W is a task. In detail:
All Clockify tasks per project could be retrieved via the global Clockify API at the following endpoint https://global.api.clockify.me/workspaces/{WORKSPACE_ID}/projects/tasks/report-filters
The text was updated successfully, but these errors were encountered: