Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/uipath-google-adk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ dependencies = [
"google-adk>=1.25.1",
"openinference-instrumentation-google-adk>=0.1.9",
"uipath>=2.10.0, <2.11.0",
"uipath-core>=0.5.18, <0.7.0",
"uipath-runtime>=0.11.0, <0.12.0",
]
classifiers = [
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
"""Governance integration for ``uipath-google-adk``.

Exposes :func:`install_governance` — installs governance callbacks
(BEFORE_MODEL, AFTER_MODEL, TOOL_CALL, AFTER_TOOL) on every ``LlmAgent`` in an
ADK agent tree's native ``*_callback`` slots. Wired into a run by passing an
``evaluator`` to :class:`UiPathGoogleADKRuntimeFactory`; the factory calls
:func:`install_governance` on the resolved agent.

Importing this module has no side effects: no adapter is registered, no global
state is mutated.
"""

from __future__ import annotations

from .callbacks import GovernanceCallbacks, install_governance

__all__ = [
"GovernanceCallbacks",
"install_governance",
]
Loading
Loading