File size: 520 Bytes
97c03e5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"""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",
]