File size: 635 Bytes
1f9fc8c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
"""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",
]