synapserun 0.3.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- synapse/__init__.py +29 -0
- synapse/cell.py +1258 -0
- synapse/cli.py +105 -0
- synapse/client.py +187 -0
- synapse/crewai_tool.py +118 -0
- synapse/decorator.py +314 -0
- synapse/e2b_compat.py +481 -0
- synapse/langchain_tool.py +190 -0
- synapse/syn_executor.py +193 -0
- synapse/tools/__init__.py +28 -0
- synapse/tools/crewai_tool.py +103 -0
- synapse/tools/langchain_tool.py +132 -0
- synapse/transpiler.py +2302 -0
- synapserun-0.3.0.dist-info/METADATA +88 -0
- synapserun-0.3.0.dist-info/RECORD +18 -0
- synapserun-0.3.0.dist-info/WHEEL +5 -0
- synapserun-0.3.0.dist-info/entry_points.txt +2 -0
- synapserun-0.3.0.dist-info/top_level.txt +1 -0
synapse/__init__.py
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
from synapse.cell import (
|
|
2
|
+
Cell,
|
|
3
|
+
CellResult,
|
|
4
|
+
CellReceipt,
|
|
5
|
+
CellError,
|
|
6
|
+
EntryInfo,
|
|
7
|
+
SandboxInfo,
|
|
8
|
+
SandboxState,
|
|
9
|
+
SandboxQuery,
|
|
10
|
+
SandboxPaginator,
|
|
11
|
+
CommandHandle,
|
|
12
|
+
)
|
|
13
|
+
from synapse.e2b_compat import Sandbox
|
|
14
|
+
|
|
15
|
+
__all__ = [
|
|
16
|
+
"Cell",
|
|
17
|
+
"CellResult",
|
|
18
|
+
"CellReceipt",
|
|
19
|
+
"CellError",
|
|
20
|
+
"EntryInfo",
|
|
21
|
+
"SandboxInfo",
|
|
22
|
+
"SandboxState",
|
|
23
|
+
"SandboxQuery",
|
|
24
|
+
"SandboxPaginator",
|
|
25
|
+
"CommandHandle",
|
|
26
|
+
"Sandbox",
|
|
27
|
+
]
|
|
28
|
+
__version__ = "0.3.0"
|
|
29
|
+
|