hirann commited on
Commit
4d1e39a
·
1 Parent(s): b594d6e

Fix Space metadata

Browse files
Files changed (1) hide show
  1. README.md +26 -5
README.md CHANGED
@@ -1,10 +1,31 @@
1
  ---
2
- title: Overview Env
3
- emoji: 🔥
4
- colorFrom: gray
5
- colorTo: gray
6
  sdk: docker
 
 
7
  pinned: false
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ title: Overview Environment
3
+ emoji: 📝
4
+ colorFrom: blue
5
+ colorTo: green
6
  sdk: docker
7
+ sdk_version: latest
8
+ app_port: 8000
9
  pinned: false
10
  ---
11
 
12
+ # Overview Environment
13
+
14
+ A general-purpose text analysis environment for OpenEnv where AI agents can perform summarization, question answering, code analysis, and information extraction tasks.
15
+
16
+ ## Quick Start
17
+
18
+ ```python
19
+ import asyncio
20
+ from overview_env import OverviewEnv
21
+
22
+ async def main():
23
+ env = await OverviewEnv.from_env("hirann/overview-env")
24
+ result = await env.reset()
25
+ print(f"Task: {result.observation.task_name}")
26
+ await env.close()
27
+
28
+ asyncio.run(main())
29
+ ```
30
+
31
+ See [README.md](https://github.com/hirann/overview-env) for full documentation.