kya-validator 0.2.3

Rust core KYA (Know Your Agent) validator with Python bindings, TEE support, and blockchain integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import PolicyEditor from './PolicyEditor';

/**
 * Wrapper component for Policy Editor
 * Maintains compatibility with existing E2E tests
 * The new App.tsx has the preset modal inline, but tests expect this page
 */
export default function PolicyEditorPage() {
  return (
    <div>
      <PolicyEditor />
    </div>
  );
}