Spaces:
Runtime error
Runtime error
| title: Core Identity Environment | |
| emoji: ๐ | |
| colorFrom: purple | |
| colorTo: red | |
| sdk: docker | |
| sdk_version: latest | |
| app_port: 8000 | |
| pinned: false | |
| # Core Identity Environment | |
| An identity verification environment for OpenEnv where AI agents can perform document verification, credential authentication, profile management, and fraud detection tasks. | |
| ## Quick Start | |
| ```python | |
| import asyncio | |
| from core_identity_env import CoreIdentityEnv | |
| async def main(): | |
| env = await CoreIdentityEnv.from_env("hirann/core-identity-env") | |
| result = await env.reset() | |
| print(f"Task: {result.observation.task_name}") | |
| await env.close() | |
| asyncio.run(main()) | |
| ``` | |
| See [README.md](https://github.com/hirann/core-identity-env) for full documentation. |