-
Notifications
You must be signed in to change notification settings - Fork 235
Expand file tree
/
Copy path__init__.py
More file actions
29 lines (26 loc) · 891 Bytes
/
__init__.py
File metadata and controls
29 lines (26 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from openhands.sdk.context.view.properties.base import ViewPropertyBase
from openhands.sdk.context.view.properties.batch_atomicity import BatchAtomicityProperty
from openhands.sdk.context.view.properties.tool_call_matching import (
ToolCallMatchingProperty,
)
from openhands.sdk.context.view.properties.tool_loop_atomicity import (
ToolLoopAtomicityProperty,
)
from openhands.sdk.context.view.properties.tool_result_uniqueness import (
ToolResultUniquenessProperty,
)
ALL_PROPERTIES: list[ViewPropertyBase] = [
BatchAtomicityProperty(),
ToolCallMatchingProperty(),
ToolLoopAtomicityProperty(),
ToolResultUniquenessProperty(),
]
"""A list of all existing properties."""
__all__ = [
"ViewPropertyBase",
"BatchAtomicityProperty",
"ToolCallMatchingProperty",
"ToolLoopAtomicityProperty",
"ToolResultUniquenessProperty",
"ALL_PROPERTIES",
]