Spaces:
Runtime error
Runtime error
File size: 739 Bytes
1f9fc8c e960714 1f9fc8c e960714 1f9fc8c e960714 1f9fc8c e960714 1f9fc8c e960714 | 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 27 28 29 30 31 | ---
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. |