hirann commited on
Commit
97c03e5
·
verified ·
1 Parent(s): 4d1e39a

Upload __init__.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. __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
+ ]