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
feat(Mocking): allow functions to be marked as mockable
Initial design wanted to let every tracable elements to also be mockable.
However, langgraph and `@traced` annotations uses different tracing mechanisms.
Keeping `@mockable` separate from the tracing system will create a cleaner separation of concern.
The `mockingStrategy` can be extended to support different types of strategies.
Currently, LLM strategy and mockito strategy is supported.
The LLM strategy is backwards compatible, however the feature is incomplete:
1. The prompt used to generate LLM responses need to be 1:1 with the c# world.
Specially, the current run history may be an important part of the prompt.
2. Dynamic input generation is currently unsupported.
3. Model selection is currently unsupported.
4. Caching is currently unsupported.
Copy file name to clipboardExpand all lines: pyproject.toml
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[project]
2
2
name = "uipath"
3
-
version = "2.1.72"
3
+
version = "2.1.73"
4
4
description = "Python SDK and CLI for UiPath Platform, enabling programmatic interaction with automation services, process management, and deployment tools."
0 commit comments