evolve-sdk 0.0.4__py3-none-any.whl → 0.0.5__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.
evolve/__init__.py CHANGED
@@ -4,6 +4,8 @@ from .agent import Evolve
4
4
  from .config import (
5
5
  AgentConfig,
6
6
  E2BProvider,
7
+ DaytonaProvider,
8
+ ModalProvider,
7
9
  SandboxProvider,
8
10
  AgentType,
9
11
  WorkspaceMode,
@@ -65,7 +67,7 @@ from .pipeline import (
65
67
  EmitOption,
66
68
  )
67
69
 
68
- __version__ = '0.0.4'
70
+ __version__ = '0.0.5'
69
71
 
70
72
  __all__ = [
71
73
  # Main classes
@@ -77,6 +79,8 @@ __all__ = [
77
79
  # Evolve Configuration
78
80
  'AgentConfig',
79
81
  'E2BProvider',
82
+ 'DaytonaProvider',
83
+ 'ModalProvider',
80
84
  'SandboxProvider',
81
85
  'AgentType',
82
86
  'WorkspaceMode',
evolve/agent.py CHANGED
@@ -28,12 +28,19 @@ class Evolve:
28
28
  ... for name, content in output.files.items():
29
29
  ... print(f'{name}: {len(content)} bytes')
30
30
  >>>
31
- >>> # Or with explicit config
31
+ >>> # Or with explicit config (E2B)
32
32
  >>> from evolve import AgentConfig, E2BProvider
33
33
  >>> evolve = Evolve(
34
34
  ... config=AgentConfig(type='codex', api_key='sk-...'),
35
35
  ... sandbox=E2BProvider(api_key='...')
36
36
  ... )
37
+ >>>
38
+ >>> # Or with Daytona
39
+ >>> from evolve import DaytonaProvider
40
+ >>> evolve = Evolve(sandbox=DaytonaProvider(api_key='...'))
41
+ >>> # Or with Modal
42
+ >>> from evolve import ModalProvider
43
+ >>> evolve = Evolve(sandbox=ModalProvider())
37
44
  """
38
45
 
39
46
  # Static helpers for Composio pre-auth flows (no instance required)
@@ -61,7 +68,10 @@ class Evolve:
61
68
 
62
69
  Args:
63
70
  config: Agent configuration (optional - defaults to EVOLVE_API_KEY env var with 'claude' type)
64
- sandbox: Sandbox provider (optional - defaults to E2B with E2B_API_KEY env var)
71
+ sandbox: Sandbox provider (optional - auto-resolves from env vars:
72
+ E2B_API_KEY → E2B direct, DAYTONA_API_KEY → Daytona direct,
73
+ MODAL_TOKEN_ID+MODAL_TOKEN_SECRET → Modal direct,
74
+ EVOLVE_API_KEY → E2B via gateway. User sandbox keys take priority.)
65
75
  working_directory: Working directory in sandbox (default: /home/user/workspace)
66
76
  workspace_mode: Workspace setup mode - 'knowledge' (creates output/context/scripts/temp folders + default prompt)
67
77
  or 'swe' (clean workspace for cloned repos) (default: 'knowledge')
@@ -120,7 +130,7 @@ class Evolve:
120
130
  'model': self.config.model if self.config else None,
121
131
  'reasoning_effort': self.config.reasoning_effort if self.config else None,
122
132
  'betas': self.config.betas if self.config else None,
123
- # Sandbox (optional - TS SDK resolves from E2B_API_KEY)
133
+ # Sandbox (optional - TS SDK auto-resolves from EVOLVE_API_KEY/E2B_API_KEY/DAYTONA_API_KEY)
124
134
  'sandbox_provider': {'type': self.sandbox.type, 'config': self.sandbox.config} if self.sandbox else None,
125
135
  # Other settings
126
136
  'working_directory': self.working_directory,
evolve/config.py CHANGED
@@ -56,7 +56,7 @@ class SandboxProvider(Protocol):
56
56
  """Sandbox provider protocol.
57
57
 
58
58
  Any sandbox provider must implement this protocol.
59
- Currently supported: E2BProvider
59
+ Currently supported: E2BProvider, DaytonaProvider, ModalProvider
60
60
 
61
61
  To add a new provider:
62
62
  1. Create a class with `type` and `config` properties
@@ -65,7 +65,7 @@ class SandboxProvider(Protocol):
65
65
 
66
66
  @property
67
67
  def type(self) -> str:
68
- """Provider type identifier (e.g., 'e2b')."""
68
+ """Provider type identifier (e.g., 'e2b', 'daytona')."""
69
69
  ...
70
70
 
71
71
  @property
@@ -101,6 +101,68 @@ class E2BProvider:
101
101
  return result
102
102
 
103
103
 
104
+ @dataclass
105
+ class DaytonaProvider:
106
+ """Daytona sandbox provider configuration.
107
+
108
+ Args:
109
+ api_key: Daytona API key (defaults to DAYTONA_API_KEY env var)
110
+ api_url: API URL (defaults to https://app.daytona.io/api)
111
+ target: Target region (defaults to 'us')
112
+ timeout_ms: Sandbox timeout in milliseconds (default: 3600000 = 1 hour)
113
+ """
114
+ api_key: Optional[str] = None
115
+ api_url: Optional[str] = None
116
+ target: Optional[str] = None
117
+ timeout_ms: int = 3600000
118
+
119
+ @property
120
+ def type(self) -> Literal['daytona']:
121
+ """Provider type."""
122
+ return 'daytona'
123
+
124
+ @property
125
+ def config(self) -> dict:
126
+ """Provider configuration dict."""
127
+ result = {}
128
+ if self.api_key:
129
+ result['apiKey'] = self.api_key
130
+ if self.api_url:
131
+ result['apiUrl'] = self.api_url
132
+ if self.target:
133
+ result['target'] = self.target
134
+ if self.timeout_ms:
135
+ result['defaultTimeoutMs'] = self.timeout_ms
136
+ return result
137
+
138
+
139
+ @dataclass
140
+ class ModalProvider:
141
+ """Modal sandbox provider configuration.
142
+
143
+ Args:
144
+ app_name: Modal app namespace (defaults to 'evolve-sandbox')
145
+ timeout_ms: Sandbox timeout in milliseconds (default: 3600000 = 1 hour)
146
+ """
147
+ app_name: Optional[str] = None
148
+ timeout_ms: int = 3600000
149
+
150
+ @property
151
+ def type(self) -> Literal['modal']:
152
+ """Provider type."""
153
+ return 'modal'
154
+
155
+ @property
156
+ def config(self) -> dict:
157
+ """Provider configuration dict."""
158
+ result = {}
159
+ if self.app_name:
160
+ result['appName'] = self.app_name
161
+ if self.timeout_ms:
162
+ result['defaultTimeoutMs'] = self.timeout_ms
163
+ return result
164
+
165
+
104
166
  # =============================================================================
105
167
  # COMPOSIO TOOL ROUTER
106
168
  # =============================================================================
evolve/swarm/swarm.py CHANGED
@@ -6,16 +6,24 @@ Example:
6
6
  ```python
7
7
  from evolve import Swarm
8
8
 
9
- # Minimal usage - uses EVOLVE_API_KEY and E2B_API_KEY env vars
9
+ # Minimal usage - uses EVOLVE_API_KEY (or E2B_API_KEY/DAYTONA_API_KEY/MODAL_TOKEN_*) env vars
10
10
  swarm = Swarm()
11
11
 
12
- # Or with explicit config
12
+ # Or with explicit config (E2B)
13
13
  from evolve import SwarmConfig, AgentConfig, E2BProvider
14
14
  swarm = Swarm(SwarmConfig(
15
15
  agent=AgentConfig(type="claude", api_key="..."),
16
16
  sandbox=E2BProvider(api_key="..."),
17
17
  ))
18
18
 
19
+ # Or with Daytona
20
+ from evolve import DaytonaProvider
21
+ swarm = Swarm(SwarmConfig(sandbox=DaytonaProvider(api_key="...")))
22
+
23
+ # Or with Modal
24
+ from evolve import ModalProvider
25
+ swarm = Swarm(SwarmConfig(sandbox=ModalProvider()))
26
+
19
27
  # Map: apply agent to each item
20
28
  results = await swarm.map(
21
29
  items=[{"doc.txt": "content1"}, {"doc.txt": "content2"}],
@@ -741,7 +749,7 @@ class Swarm:
741
749
  'model': agent_config.model if agent_config else None,
742
750
  'reasoning_effort': agent_config.reasoning_effort if agent_config else None,
743
751
  'betas': agent_config.betas if agent_config else None,
744
- # Sandbox (optional - TS SDK resolves from E2B_API_KEY)
752
+ # Sandbox (optional - TS SDK auto-resolves from EVOLVE_API_KEY/E2B_API_KEY/DAYTONA_API_KEY)
745
753
  'sandbox_provider': {'type': self.config.sandbox.type, 'config': self.config.sandbox.config} if self.config.sandbox else None,
746
754
  # Other settings
747
755
  'workspace_mode': self.config.workspace_mode,
evolve/swarm/types.py CHANGED
@@ -39,7 +39,7 @@ class SwarmConfig:
39
39
 
40
40
  All fields are optional - TS SDK resolves defaults from environment:
41
41
  - agent defaults to EVOLVE_API_KEY env var with 'claude' type
42
- - sandbox defaults to E2B with E2B_API_KEY env var
42
+ - sandbox auto-resolves: E2B_API_KEY E2B direct, DAYTONA_API_KEY Daytona, MODAL_TOKEN_* → Modal, EVOLVE_API_KEY → E2B gateway (fallback)
43
43
  """
44
44
  agent: Optional[AgentConfig] = None
45
45
  sandbox: Optional[SandboxProvider] = None
@@ -1,15 +1,15 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: evolve-sdk
3
- Version: 0.0.4
3
+ Version: 0.0.5
4
4
  Summary: Pythonic SDK for multi-agent orchestration in E2B sandboxes
5
5
  Author-email: "Swarmlink, Inc." <brandomagnani@evolvingmachines.ai>
6
- License: Proprietary Beta Evaluation License - See LICENSE file
6
+ License: Apache-2.0
7
7
  Project-URL: Homepage, https://github.com/evolving-machines-lab/evolve
8
8
  Project-URL: Repository, https://github.com/evolving-machines-lab/evolve
9
9
  Keywords: ai,agents,sandbox,e2b,orchestration,codex,claude,gemini,evolve-sdk
10
10
  Classifier: Development Status :: 4 - Beta
11
11
  Classifier: Intended Audience :: Developers
12
- Classifier: License :: Other/Proprietary License
12
+ Classifier: License :: OSI Approved :: Apache Software License
13
13
  Classifier: Programming Language :: Python :: 3
14
14
  Classifier: Programming Language :: Python :: 3.11
15
15
  Classifier: Programming Language :: Python :: 3.12
@@ -1,10 +1,10 @@
1
1
  bridge/__init__.py,sha256=hBfIKEwXusD5YNNkBb27SwzMCCapucjAjgwbltpXYrQ,161
2
- bridge/dist/bridge.bundle.cjs,sha256=OI7NmpyrCHZWOqO6-y5KmU-hZrVz2vd0I61Mf9lGpBA,1213071
3
- evolve/__init__.py,sha256=btd3297LCCyCB-fbLbNzU_T8oXor6FzuOeebkZqQA_A,3153
4
- evolve/agent.py,sha256=zKw0zr39Vr2KcycruWKag9MymvaMCQ30cRhbL9vNqnQ,19090
2
+ bridge/dist/bridge.bundle.cjs,sha256=1x9kFFuk8GOf1iTICdDnNnulB0uU1zYB7iNsCcg-KQ8,4158663
3
+ evolve/__init__.py,sha256=gFZMHtALtCkDnyOmgwEZuiFl4W4WwZNgHoAcbmUdE7M,3237
4
+ evolve/agent.py,sha256=x5a8PrXE4HUAh2fS_KUHunKHqQw86tpOsMPTsM5WHDU,19651
5
5
  evolve/bridge.py,sha256=x6prpX5-asy1Q0PHTDu8A-TLS4hh8dwPqJ4goLiEwVs,17465
6
6
  evolve/composio.py,sha256=4rT-o0vnB35l6nZeRkuMuMOQpgAdvjaoOyg2nEg_Axk,4237
7
- evolve/config.py,sha256=Ndl0B-UKcsyifRxNAgUe2kKFNxAuHzur3xh1suDxZ24,5391
7
+ evolve/config.py,sha256=wxoRL3EFzr_WyoxkGzgh3dCAZZSZZCbHqTVdoHOQYrg,7170
8
8
  evolve/results.py,sha256=rYtVPAj9LMDokz2pMoBOoLLDWal5B8kZ0X4dqr_y3mQ,1243
9
9
  evolve/retry.py,sha256=Sfnm21Qed8u4kfI85KD1qr2geNW6OSGIurbKDQBQSbg,4637
10
10
  evolve/schema.py,sha256=hmmpBxdsI7FWNf7Gd8dDhIWICwVcowodMQ0mKiu9_xs,2988
@@ -21,10 +21,10 @@ evolve/prompts/user/retry_feedback.md,sha256=-dUWfAbknKsrPArHd38jE1ShQ-3quKInrhc
21
21
  evolve/prompts/user/verify.md,sha256=Tuq8FQotrBTFOm_lngEpNx8j7l12J96QrVKPnmuxQpU,109
22
22
  evolve/swarm/__init__.py,sha256=3qLm8TqAPbcpXH7vuWLr3IqJ7bUj9hz_qpCdTjBjln4,1430
23
23
  evolve/swarm/results.py,sha256=vNWCOkJ_fnEUsCipWq7xAADxg4hJdV3Wh4YI57drR8s,4516
24
- evolve/swarm/swarm.py,sha256=jlNnenqfE_AK72JLApLeKX3so3POIyHorS8MRln8LrQ,85706
25
- evolve/swarm/types.py,sha256=iKuzTOPCkfc5fj7kVyJilU6IEV2_PnFvOH_WWU7Vf9k,8589
26
- evolve_sdk-0.0.4.dist-info/licenses/LICENSE,sha256=i0_tsE8hQHfI3Jzbn4c2S5yR49c4EsHI9IorJxBZDlA,802
27
- evolve_sdk-0.0.4.dist-info/METADATA,sha256=iEEZ6z5TyMyIyyoXKaDqWNf_Snt1EAtPvfxLIglAqmY,1977
28
- evolve_sdk-0.0.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
29
- evolve_sdk-0.0.4.dist-info/top_level.txt,sha256=a89CrgZq2tVvkvvzaaJDSKWm_cU3G1fGB9i_qC6Fre0,14
30
- evolve_sdk-0.0.4.dist-info/RECORD,,
24
+ evolve/swarm/swarm.py,sha256=XSadhjZESP4tyzAJtTKju9bWjfzPWmTV3coOCWG9Zms,86026
25
+ evolve/swarm/types.py,sha256=VQsB4wWZz_w6Eed_-AdCZRu7wjytumaG0IdcLNkgemo,8687
26
+ evolve_sdk-0.0.5.dist-info/licenses/LICENSE,sha256=vlZvuwU-PV15bOuh44YhTgUw4_4vGZHTQjE671NiHWM,11345
27
+ evolve_sdk-0.0.5.dist-info/METADATA,sha256=99gADkSWnnmVnjQ8Yjift05BBmekSANpl-1nnsM36Xo,1947
28
+ evolve_sdk-0.0.5.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
29
+ evolve_sdk-0.0.5.dist-info/top_level.txt,sha256=a89CrgZq2tVvkvvzaaJDSKWm_cU3G1fGB9i_qC6Fre0,14
30
+ evolve_sdk-0.0.5.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2025 Swarmlink, Inc.
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -1,24 +0,0 @@
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