Spaces:
Paused
Paused
Upload __init__.py with huggingface_hub
Browse files- __init__.py +24 -0
__init__.py
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Overview Environment — OpenEnv.
|
| 2 |
+
|
| 3 |
+
A general-purpose text analysis environment for AI agents that can:
|
| 4 |
+
- Summarize documents and articles
|
| 5 |
+
- Answer questions based on provided text
|
| 6 |
+
- Analyze and explain code
|
| 7 |
+
- Extract key information from text
|
| 8 |
+
"""
|
| 9 |
+
|
| 10 |
+
from overview_env.client import OverviewEnv
|
| 11 |
+
from overview_env.models import (
|
| 12 |
+
OverviewAction,
|
| 13 |
+
OverviewObservation,
|
| 14 |
+
TaskType,
|
| 15 |
+
TextInput,
|
| 16 |
+
)
|
| 17 |
+
|
| 18 |
+
__all__ = [
|
| 19 |
+
"OverviewEnv",
|
| 20 |
+
"OverviewAction",
|
| 21 |
+
"OverviewObservation",
|
| 22 |
+
"TaskType",
|
| 23 |
+
"TextInput",
|
| 24 |
+
]
|