overview-env / __init__.py
hirann's picture
Upload __init__.py with huggingface_hub
97c03e5 verified
raw
history blame contribute delete
520 Bytes
"""Overview Environment — OpenEnv.
A general-purpose text analysis environment for AI agents that can:
- Summarize documents and articles
- Answer questions based on provided text
- Analyze and explain code
- Extract key information from text
"""
from overview_env.client import OverviewEnv
from overview_env.models import (
OverviewAction,
OverviewObservation,
TaskType,
TextInput,
)
__all__ = [
"OverviewEnv",
"OverviewAction",
"OverviewObservation",
"TaskType",
"TextInput",
]