Spaces:
Paused
Paused
File size: 700 Bytes
b594d6e 4d1e39a b594d6e 4d1e39a b594d6e 4d1e39a | 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: Overview Environment
emoji: 📝
colorFrom: blue
colorTo: green
sdk: docker
sdk_version: latest
app_port: 8000
pinned: false
---
# Overview Environment
A general-purpose text analysis environment for OpenEnv where AI agents can perform summarization, question answering, code analysis, and information extraction tasks.
## Quick Start
```python
import asyncio
from overview_env import OverviewEnv
async def main():
env = await OverviewEnv.from_env("hirann/overview-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/overview-env) for full documentation. |