Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
bc4feaf
Implement GovernanceDecision and GovernanceOutcome types
nagasatish007 Jun 3, 2026
e4ec9a4
Add contract tests for GovernanceDecision and Outcome
nagasatish007 Jun 3, 2026
6ff28b2
Create __init__.py
nagasatish007 Jun 3, 2026
d7e0a81
Delete test_governance_decision_contract.py
nagasatish007 Jun 4, 2026
99f213c
Add contract tests for GovernanceDecision and Outcome
nagasatish007 Jun 4, 2026
4539fa6
Delete governance_decision.py
nagasatish007 Jun 4, 2026
918c6d8
Implement GovernanceDecision and GovernanceOutcome types
nagasatish007 Jun 4, 2026
2ee3042
Import GovernanceDecision and GovernanceOutcome
nagasatish007 Jun 4, 2026
bd039bf
Add test for error outcome fields in governance decision
nagasatish007 Jun 4, 2026
e5ff11d
Merge branch 'main' into feat/governance-decision-contract
nagasatish007 Jun 10, 2026
de55bbb
Merge branch 'main' into feat/governance-decision-contract
nagasatish007 Jun 11, 2026
0bce04b
Merge branch 'main' into feat/governance-decision-contract
nagasatish007 Jun 13, 2026
5355007
feat: add seq/running_count for omission-evident governance records
nagasatish007 Jun 21, 2026
7452ed2
Fix formatting and add new fields in GovernanceDecision
nagasatish007 Jun 21, 2026
ca1cb57
Enhance governance decision tests with seq fields
nagasatish007 Jun 21, 2026
b14c3a1
Update test_governance_decision_contract.py
nagasatish007 Jun 21, 2026
11aeaec
Enhance governance decision documentation and validation
nagasatish007 Jun 25, 2026
3e3d026
Update print statement from 'Hello' to 'Goodbye'
nagasatish007 Jun 25, 2026
a40a2d0
Implement tests for GovernanceDecision fail-closed contract
nagasatish007 Jun 25, 2026
fa85d40
Merge branch 'main' into feat/governance-decision-contract
nagasatish007 Jun 25, 2026
f341083
Merge branch 'main' into feat/governance-decision-contract
nagasatish007 Jun 26, 2026
c841ac1
Merge branch 'main' into feat/governance-decision-contract
nagasatish007 Jun 28, 2026
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
3 changes: 3 additions & 0 deletions lib/crewai/src/crewai/governance/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from crewai.governance.governance_decision import GovernanceDecision, GovernanceOutcome

__all__ = ["GovernanceDecision", "GovernanceOutcome"]
Loading