evolve-sdk 0.0.15__tar.gz → 0.0.16__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.
Files changed (36) hide show
  1. {evolve_sdk-0.0.15/evolve_sdk.egg-info → evolve_sdk-0.0.16}/PKG-INFO +1 -1
  2. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/bridge/dist/bridge.bundle.cjs +31 -17
  3. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/__init__.py +1 -1
  4. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16/evolve_sdk.egg-info}/PKG-INFO +1 -1
  5. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/pyproject.toml +1 -1
  6. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/LICENSE +0 -0
  7. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/MANIFEST.in +0 -0
  8. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/README.md +0 -0
  9. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/bridge/__init__.py +0 -0
  10. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/agent.py +0 -0
  11. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/bridge.py +0 -0
  12. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/composio.py +0 -0
  13. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/config.py +0 -0
  14. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/pipeline/__init__.py +0 -0
  15. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/pipeline/pipeline.py +0 -0
  16. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/pipeline/types.py +0 -0
  17. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/prompts/__init__.py +0 -0
  18. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/prompts/agent_md/judge.md +0 -0
  19. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/prompts/agent_md/reduce.md +0 -0
  20. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/prompts/agent_md/verify.md +0 -0
  21. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/prompts/user/judge.md +0 -0
  22. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/prompts/user/retry_feedback.md +0 -0
  23. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/prompts/user/verify.md +0 -0
  24. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/results.py +0 -0
  25. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/retry.py +0 -0
  26. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/schema.py +0 -0
  27. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/swarm/__init__.py +0 -0
  28. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/swarm/results.py +0 -0
  29. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/swarm/swarm.py +0 -0
  30. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/swarm/types.py +0 -0
  31. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve/utils.py +0 -0
  32. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve_sdk.egg-info/SOURCES.txt +0 -0
  33. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve_sdk.egg-info/dependency_links.txt +0 -0
  34. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve_sdk.egg-info/requires.txt +0 -0
  35. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/evolve_sdk.egg-info/top_level.txt +0 -0
  36. {evolve_sdk-0.0.15 → evolve_sdk-0.0.16}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: evolve-sdk
3
- Version: 0.0.15
3
+ Version: 0.0.16
4
4
  Summary: Pythonic SDK for multi-agent orchestration in E2B sandboxes
5
5
  Author-email: "Swarmlink, Inc." <brandomagnani@evolvingmachines.ai>
6
6
  License: Apache-2.0
@@ -734,15 +734,22 @@ IMPORTANT - Directory structure:
734
734
  \u2514\u2500\u2500 output/ # Where you can save final deliverables
735
735
  \`\`\`
736
736
 
737
- ### OUTPUT RESULTS (DELIVERABLES) MUST BE WRITTEN to \`output/\` as files.
738
- ### Never just state results as text.
739
-
740
- - The file system is being used as the main communication channel between the agent (you) and the user.
741
- - Hence, all outputs results must be saved to the \`output/\` folder as files. The user will only be able to view the files in the \`output/\` folder.
742
- - There are several reasons why we need to save the results to the \`output/\` folder:
743
- - The user might be building a long-running agent which could be interrupted and resumed later.
744
- - The user might pass the outputs to another agent for verification or further processing.
745
- - etc.
737
+ ### OUTPUT RULES:
738
+
739
+ The \`output/\` folder is how you deliver files to the user\u2014the SDK retrieves everything from there.
740
+
741
+ Use your best judgment:
742
+ - **Questions, explanations, conversation** \u2192 respond in chat
743
+ - **Artifacts** (files, documents, code, charts, data) \u2192 save to \`output/\`
744
+
745
+ Examples:
746
+ - "What is a binary search?" \u2192 chat
747
+ - "Summarize this document" \u2192 chat
748
+ - "Create an Excel report" \u2192 \`output/sales_report.xlsx\`
749
+ - "Build an HTML dashboard" \u2192 \`output/dashboard.html\`
750
+ - "Generate a bar chart" \u2192 \`output/revenue_chart.png\`
751
+ - "Write a Python script" \u2192 \`output/parser.py\`
752
+ - "Convert this to JSON" \u2192 \`output/data.json\`
746
753
  `,CCn=`## FILESYSTEM INSTRUCTIONS:
747
754
 
748
755
  You are running in a sandbox environment.
@@ -761,15 +768,22 @@ IMPORTANT - Directory structure:
761
768
  \u2514\u2500\u2500 output/ # Final deliverables
762
769
  \`\`\`
763
770
 
764
- ### OUTPUT RESULTS (DELIVERABLES) MUST BE WRITTEN to \`output/\` as files.
765
- ### Never just state results as text.
771
+ ### OUTPUT RULES:
766
772
 
767
- - The file system is being used as the main communication channel between the agent (you) and the user.
768
- - Hence, all outputs results must be saved to the \`output/\` folder as files. The user will only be able to view the files in the \`output/\` folder.
769
- - There are several reasons why we need to save the results to the \`output/\` folder:
770
- - The user might be building a long-running agent which could be interrupted and resumed later.
771
- - The user might pass the outputs to another agent for verification or further processing.
772
- - etc.
773
+ The \`output/\` folder is how you deliver files to the user\u2014the SDK retrieves everything from there.
774
+
775
+ Use your best judgment:
776
+ - **Questions, explanations, conversation** \u2192 respond in chat
777
+ - **Artifacts** (files, documents, code, charts, data) \u2192 save to \`output/\`
778
+
779
+ Examples:
780
+ - "What is a binary search?" \u2192 chat
781
+ - "Summarize this document" \u2192 chat
782
+ - "Create an Excel report" \u2192 \`output/sales_report.xlsx\`
783
+ - "Build an HTML dashboard" \u2192 \`output/dashboard.html\`
784
+ - "Generate a bar chart" \u2192 \`output/revenue_chart.png\`
785
+ - "Write a Python script" \u2192 \`output/parser.py\`
786
+ - "Convert this to JSON" \u2192 \`output/data.json\`
773
787
  `,ACn=`## SYSTEM PROMPT
774
788
 
775
789
  {{systemPrompt}}`,TCn=`## STRUCTURED OUTPUT
@@ -67,7 +67,7 @@ from .pipeline import (
67
67
  EmitOption,
68
68
  )
69
69
 
70
- __version__ = '0.0.15'
70
+ __version__ = '0.0.16'
71
71
 
72
72
  __all__ = [
73
73
  # Main classes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: evolve-sdk
3
- Version: 0.0.15
3
+ Version: 0.0.16
4
4
  Summary: Pythonic SDK for multi-agent orchestration in E2B sandboxes
5
5
  Author-email: "Swarmlink, Inc." <brandomagnani@evolvingmachines.ai>
6
6
  License: Apache-2.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "evolve-sdk"
7
- version = "0.0.15"
7
+ version = "0.0.16"
8
8
  description = "Pythonic SDK for multi-agent orchestration in E2B sandboxes"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes