Spaces:
Paused
Paused
| """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", | |
| ] |