evolve-sdk 0.0.2__tar.gz
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.
- evolve_sdk-0.0.2/LICENSE +24 -0
- evolve_sdk-0.0.2/MANIFEST.in +16 -0
- evolve_sdk-0.0.2/PKG-INFO +43 -0
- evolve_sdk-0.0.2/README.md +17 -0
- evolve_sdk-0.0.2/bridge/__init__.py +5 -0
- evolve_sdk-0.0.2/bridge/dist/bridge.bundle.cjs +432 -0
- evolve_sdk-0.0.2/evolve/__init__.py +158 -0
- evolve_sdk-0.0.2/evolve/agent.py +496 -0
- evolve_sdk-0.0.2/evolve/bridge.py +475 -0
- evolve_sdk-0.0.2/evolve/composio.py +142 -0
- evolve_sdk-0.0.2/evolve/config.py +173 -0
- evolve_sdk-0.0.2/evolve/pipeline/__init__.py +59 -0
- evolve_sdk-0.0.2/evolve/pipeline/pipeline.py +512 -0
- evolve_sdk-0.0.2/evolve/pipeline/types.py +286 -0
- evolve_sdk-0.0.2/evolve/prompts/__init__.py +126 -0
- evolve_sdk-0.0.2/evolve/prompts/agent_md/judge.md +30 -0
- evolve_sdk-0.0.2/evolve/prompts/agent_md/reduce.md +7 -0
- evolve_sdk-0.0.2/evolve/prompts/agent_md/verify.md +33 -0
- evolve_sdk-0.0.2/evolve/prompts/user/judge.md +1 -0
- evolve_sdk-0.0.2/evolve/prompts/user/retry_feedback.md +9 -0
- evolve_sdk-0.0.2/evolve/prompts/user/verify.md +1 -0
- evolve_sdk-0.0.2/evolve/results.py +45 -0
- evolve_sdk-0.0.2/evolve/retry.py +133 -0
- evolve_sdk-0.0.2/evolve/schema.py +107 -0
- evolve_sdk-0.0.2/evolve/swarm/__init__.py +75 -0
- evolve_sdk-0.0.2/evolve/swarm/results.py +140 -0
- evolve_sdk-0.0.2/evolve/swarm/swarm.py +2118 -0
- evolve_sdk-0.0.2/evolve/swarm/types.py +241 -0
- evolve_sdk-0.0.2/evolve/utils.py +82 -0
- evolve_sdk-0.0.2/evolve_sdk.egg-info/PKG-INFO +43 -0
- evolve_sdk-0.0.2/evolve_sdk.egg-info/SOURCES.txt +34 -0
- evolve_sdk-0.0.2/evolve_sdk.egg-info/dependency_links.txt +1 -0
- evolve_sdk-0.0.2/evolve_sdk.egg-info/requires.txt +6 -0
- evolve_sdk-0.0.2/evolve_sdk.egg-info/top_level.txt +2 -0
- evolve_sdk-0.0.2/pyproject.toml +60 -0
- evolve_sdk-0.0.2/setup.cfg +4 -0
evolve_sdk-0.0.2/LICENSE
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
EVOLVE SDK PROPRIETARY SOFTWARE LICENSE
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Swarmlink, Inc. All rights reserved.
|
|
4
|
+
|
|
5
|
+
BETA EVALUATION LICENSE
|
|
6
|
+
|
|
7
|
+
The Evolve SDK is provided for evaluation and beta testing purposes only.
|
|
8
|
+
|
|
9
|
+
PERMITTED:
|
|
10
|
+
- Install Evolve SDK via npm/PyPI for evaluation and development
|
|
11
|
+
- Build applications using the Evolve SDK during the beta period
|
|
12
|
+
- Deploy applications using the Evolve SDK to production
|
|
13
|
+
|
|
14
|
+
PROHIBITED:
|
|
15
|
+
- Redistribute the Evolve SDK itself
|
|
16
|
+
- Reverse engineer, decompile, or extract source code from the SDK
|
|
17
|
+
- Create derivative works of the Evolve SDK
|
|
18
|
+
- Use Evolve SDK in competing products or services
|
|
19
|
+
|
|
20
|
+
NO WARRANTY. THIS SOFTWARE IS PROVIDED "AS IS" FOR BETA EVALUATION.
|
|
21
|
+
|
|
22
|
+
This license may be revised upon general availability.
|
|
23
|
+
|
|
24
|
+
For licensing inquiries, contact: brandomagnani@evolvingmachines.ai
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# Include license file
|
|
2
|
+
include LICENSE
|
|
3
|
+
|
|
4
|
+
# Include pre-built bundled bridge (self-contained, no dependencies needed)
|
|
5
|
+
include bridge/dist/bridge.bundle.cjs
|
|
6
|
+
|
|
7
|
+
# Exclude all other build artifacts and development files
|
|
8
|
+
prune bridge/node_modules
|
|
9
|
+
prune bridge/src
|
|
10
|
+
exclude bridge/package.json
|
|
11
|
+
exclude bridge/package-lock.json
|
|
12
|
+
exclude bridge/tsconfig.json
|
|
13
|
+
exclude bridge/bundle.mjs
|
|
14
|
+
exclude bridge/dist/bridge.js
|
|
15
|
+
exclude bridge/dist/bridge.d.ts
|
|
16
|
+
exclude bridge/dist/bridge.bundle.js
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: evolve-sdk
|
|
3
|
+
Version: 0.0.2
|
|
4
|
+
Summary: Pythonic SDK for multi-agent orchestration in E2B sandboxes
|
|
5
|
+
Author-email: "Swarmlink, Inc." <brandomagnani@evolvingmachines.ai>
|
|
6
|
+
License: Proprietary Beta Evaluation License - See LICENSE file
|
|
7
|
+
Project-URL: Homepage, https://github.com/evolving-machines-lab/evolve
|
|
8
|
+
Project-URL: Repository, https://github.com/evolving-machines-lab/evolve
|
|
9
|
+
Keywords: ai,agents,sandbox,e2b,orchestration,codex,claude,gemini,evolve-sdk
|
|
10
|
+
Classifier: Development Status :: 4 - Beta
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: Other/Proprietary License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
17
|
+
Requires-Python: >=3.11
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
License-File: LICENSE
|
|
20
|
+
Provides-Extra: dev
|
|
21
|
+
Requires-Dist: pytest>=8.0.0; extra == "dev"
|
|
22
|
+
Requires-Dist: pytest-asyncio>=0.23.0; extra == "dev"
|
|
23
|
+
Requires-Dist: python-dotenv>=1.0.0; extra == "dev"
|
|
24
|
+
Requires-Dist: pydantic>=2.0.0; extra == "dev"
|
|
25
|
+
Dynamic: license-file
|
|
26
|
+
|
|
27
|
+
# Evolve SDK Python SDK
|
|
28
|
+
|
|
29
|
+
Evolve SDK lets you run and orchestrate terminal-based AI agents in secure sandboxes with built-in observability.
|
|
30
|
+
|
|
31
|
+
Check out the [official documentation](https://github.com/evolving-machines-lab/evolve/tree/main/docs) and [cookbooks](https://github.com/evolving-machines-lab/evolve/tree/main/cookbooks).
|
|
32
|
+
|
|
33
|
+
## Reporting Bugs
|
|
34
|
+
|
|
35
|
+
We welcome your feedback. File a [GitHub issue](https://github.com/evolving-machines-lab/evolve/issues) to report bugs or request features.
|
|
36
|
+
|
|
37
|
+
## Connect on Discord
|
|
38
|
+
|
|
39
|
+
Join the [Evolve SDK Developers Discord](https://discord.gg/Q36D8dGyNF) to connect with other developers using Evolve SDK. Get help, share feedback, and discuss your projects with the community.
|
|
40
|
+
|
|
41
|
+
## License
|
|
42
|
+
|
|
43
|
+
See [LICENSE](https://github.com/evolving-machines-lab/evolve/blob/main/LICENSE) for details.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Evolve SDK Python SDK
|
|
2
|
+
|
|
3
|
+
Evolve SDK lets you run and orchestrate terminal-based AI agents in secure sandboxes with built-in observability.
|
|
4
|
+
|
|
5
|
+
Check out the [official documentation](https://github.com/evolving-machines-lab/evolve/tree/main/docs) and [cookbooks](https://github.com/evolving-machines-lab/evolve/tree/main/cookbooks).
|
|
6
|
+
|
|
7
|
+
## Reporting Bugs
|
|
8
|
+
|
|
9
|
+
We welcome your feedback. File a [GitHub issue](https://github.com/evolving-machines-lab/evolve/issues) to report bugs or request features.
|
|
10
|
+
|
|
11
|
+
## Connect on Discord
|
|
12
|
+
|
|
13
|
+
Join the [Evolve SDK Developers Discord](https://discord.gg/Q36D8dGyNF) to connect with other developers using Evolve SDK. Get help, share feedback, and discuss your projects with the community.
|
|
14
|
+
|
|
15
|
+
## License
|
|
16
|
+
|
|
17
|
+
See [LICENSE](https://github.com/evolving-machines-lab/evolve/blob/main/LICENSE) for details.
|