Spaces:
Runtime error
Runtime error
| """Core Identity Environment — OpenEnv. | |
| An identity verification environment for AI agents that can: | |
| - Verify user identity documents (ID, passport, etc.) | |
| - Authenticate users via credentials | |
| - Manage user profiles and attributes | |
| - Detect fraudulent documents | |
| """ | |
| from core_identity_env.client import CoreIdentityEnv | |
| from core_identity_env.models import ( | |
| CoreIdentityAction, | |
| CoreIdentityObservation, | |
| TaskType, | |
| IdentityDocument, | |
| VerificationResult, | |
| ) | |
| __all__ = [ | |
| "CoreIdentityEnv", | |
| "CoreIdentityAction", | |
| "CoreIdentityObservation", | |
| "TaskType", | |
| "IdentityDocument", | |
| "VerificationResult", | |
| ] |