jarviscore-framework 0.1.1__py3-none-any.whl → 0.2.1__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.
- examples/autoagent_distributed_example.py +211 -0
- examples/custom_profile_decorator.py +134 -0
- examples/custom_profile_wrap.py +168 -0
- examples/customagent_distributed_example.py +362 -0
- examples/customagent_p2p_example.py +730 -0
- jarviscore/__init__.py +49 -36
- jarviscore/adapter/__init__.py +15 -9
- jarviscore/adapter/decorator.py +23 -19
- jarviscore/adapter/wrapper.py +303 -0
- jarviscore/cli/scaffold.py +1 -1
- jarviscore/cli/smoketest.py +3 -2
- jarviscore/core/agent.py +44 -1
- jarviscore/core/mesh.py +196 -35
- jarviscore/data/examples/autoagent_distributed_example.py +211 -0
- jarviscore/data/examples/customagent_distributed_example.py +362 -0
- jarviscore/data/examples/customagent_p2p_example.py +730 -0
- jarviscore/docs/API_REFERENCE.md +264 -51
- jarviscore/docs/AUTOAGENT_GUIDE.md +198 -0
- jarviscore/docs/CONFIGURATION.md +35 -21
- jarviscore/docs/CUSTOMAGENT_GUIDE.md +1362 -0
- jarviscore/docs/GETTING_STARTED.md +107 -14
- jarviscore/docs/TROUBLESHOOTING.md +145 -7
- jarviscore/docs/USER_GUIDE.md +138 -361
- jarviscore/orchestration/engine.py +20 -8
- jarviscore/p2p/__init__.py +10 -0
- jarviscore/p2p/coordinator.py +129 -0
- jarviscore/p2p/messages.py +87 -0
- jarviscore/p2p/peer_client.py +576 -0
- jarviscore/p2p/peer_tool.py +268 -0
- jarviscore_framework-0.2.1.dist-info/METADATA +144 -0
- jarviscore_framework-0.2.1.dist-info/RECORD +132 -0
- {jarviscore_framework-0.1.1.dist-info → jarviscore_framework-0.2.1.dist-info}/WHEEL +1 -1
- {jarviscore_framework-0.1.1.dist-info → jarviscore_framework-0.2.1.dist-info}/top_level.txt +1 -0
- test_logs/code_registry/functions/data_generator-558779ed_560ebc37.py +7 -0
- test_logs/code_registry/functions/data_generator-5ed3609e_560ebc37.py +7 -0
- test_logs/code_registry/functions/data_generator-66da0356_43970bb9.py +25 -0
- test_logs/code_registry/functions/data_generator-7a2fac83_583709d9.py +36 -0
- test_logs/code_registry/functions/data_generator-888b670f_aa235863.py +9 -0
- test_logs/code_registry/functions/data_generator-9ca5f642_aa235863.py +9 -0
- test_logs/code_registry/functions/data_generator-bfd90775_560ebc37.py +7 -0
- test_logs/code_registry/functions/data_generator-e95d2f7d_aa235863.py +9 -0
- test_logs/code_registry/functions/data_generator-f60ca8a2_327eb8c2.py +29 -0
- test_logs/code_registry/functions/mathematician-02adf9ee_958658d9.py +19 -0
- test_logs/code_registry/functions/mathematician-0706fb57_5df13441.py +23 -0
- test_logs/code_registry/functions/mathematician-153c9c4a_ba59c918.py +83 -0
- test_logs/code_registry/functions/mathematician-287e61c0_41daa793.py +18 -0
- test_logs/code_registry/functions/mathematician-2967af5a_863c2cc6.py +17 -0
- test_logs/code_registry/functions/mathematician-303ca6d6_5df13441.py +23 -0
- test_logs/code_registry/functions/mathematician-308a4afd_cbf5064d.py +73 -0
- test_logs/code_registry/functions/mathematician-353f16e2_0968bcf5.py +18 -0
- test_logs/code_registry/functions/mathematician-3c22475a_41daa793.py +17 -0
- test_logs/code_registry/functions/mathematician-5bac1029_0968bcf5.py +18 -0
- test_logs/code_registry/functions/mathematician-640f76b2_9198780b.py +19 -0
- test_logs/code_registry/functions/mathematician-752fa7ea_863c2cc6.py +17 -0
- test_logs/code_registry/functions/mathematician-baf9ef39_0968bcf5.py +18 -0
- test_logs/code_registry/functions/mathematician-bc8b2a2f_5df13441.py +23 -0
- test_logs/code_registry/functions/mathematician-c31e4686_41daa793.py +18 -0
- test_logs/code_registry/functions/mathematician-cc84c84c_863c2cc6.py +17 -0
- test_logs/code_registry/functions/mathematician-dd7c7144_9198780b.py +19 -0
- test_logs/code_registry/functions/mathematician-e671c256_41ea4487.py +74 -0
- test_logs/code_registry/functions/report_generator-1a878fcc_18d44bdc.py +47 -0
- test_logs/code_registry/functions/report_generator-25c1c331_cea57d0d.py +35 -0
- test_logs/code_registry/functions/report_generator-37552117_e711c2b9.py +35 -0
- test_logs/code_registry/functions/report_generator-bc662768_e711c2b9.py +35 -0
- test_logs/code_registry/functions/report_generator-d6c0e76b_5e7722ec.py +44 -0
- test_logs/code_registry/functions/report_generator-f270fb02_680529c3.py +44 -0
- test_logs/code_registry/functions/text_processor-11393b14_4370d3ed.py +40 -0
- test_logs/code_registry/functions/text_processor-7d02dfc3_d3b569be.py +37 -0
- test_logs/code_registry/functions/text_processor-8adb5e32_9168c5fe.py +13 -0
- test_logs/code_registry/functions/text_processor-c58ffc19_78b4ceac.py +42 -0
- test_logs/code_registry/functions/text_processor-cd5977b1_9168c5fe.py +13 -0
- test_logs/code_registry/functions/text_processor-ec1c8773_9168c5fe.py +13 -0
- tests/test_01_analyst_standalone.py +124 -0
- tests/test_02_assistant_standalone.py +164 -0
- tests/test_03_analyst_with_framework.py +945 -0
- tests/test_04_assistant_with_framework.py +1002 -0
- tests/test_05_integration.py +1301 -0
- tests/test_06_real_llm_integration.py +760 -0
- tests/test_07_distributed_single_node.py +578 -0
- tests/test_08_distributed_multi_node.py +454 -0
- tests/test_09_distributed_autoagent.py +509 -0
- tests/test_10_distributed_customagent.py +787 -0
- tests/test_mesh.py +35 -4
- jarviscore_framework-0.1.1.dist-info/METADATA +0 -137
- jarviscore_framework-0.1.1.dist-info/RECORD +0 -69
- {jarviscore_framework-0.1.1.dist-info → jarviscore_framework-0.2.1.dist-info}/licenses/LICENSE +0 -0
tests/test_mesh.py
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"""
|
|
2
2
|
Tests for Mesh orchestrator.
|
|
3
3
|
"""
|
|
4
|
+
import asyncio
|
|
4
5
|
import pytest
|
|
5
6
|
from jarviscore import Mesh, MeshMode, Agent
|
|
6
7
|
|
|
@@ -321,20 +322,50 @@ class TestMeshWorkflow:
|
|
|
321
322
|
assert "not started" in str(exc_info.value)
|
|
322
323
|
|
|
323
324
|
@pytest.mark.asyncio
|
|
324
|
-
async def
|
|
325
|
-
"""Test that workflow()
|
|
325
|
+
async def test_workflow_distributed_mode_works(self):
|
|
326
|
+
"""Test that workflow() works in distributed mode (has workflow engine)."""
|
|
326
327
|
# Use unique port to avoid conflicts with P2P tests
|
|
327
328
|
mesh = Mesh(mode="distributed", config={'bind_port': 7999})
|
|
328
329
|
mesh.add(TestAgent1)
|
|
329
330
|
|
|
330
331
|
await mesh.start()
|
|
331
332
|
|
|
333
|
+
# Distributed mode should allow workflow execution
|
|
334
|
+
results = await mesh.workflow("test-workflow", [
|
|
335
|
+
{"agent": "agent1", "task": "Should succeed"}
|
|
336
|
+
])
|
|
337
|
+
|
|
338
|
+
assert len(results) == 1
|
|
339
|
+
assert results[0]["status"] == "success"
|
|
340
|
+
|
|
341
|
+
await mesh.stop()
|
|
342
|
+
|
|
343
|
+
@pytest.mark.asyncio
|
|
344
|
+
async def test_workflow_p2p_mode_fails(self):
|
|
345
|
+
"""Test that workflow() fails in p2p mode (no workflow engine)."""
|
|
346
|
+
mesh = Mesh(mode="p2p", config={'bind_port': 7998})
|
|
347
|
+
|
|
348
|
+
class P2PTestAgent(Agent):
|
|
349
|
+
role = "p2p_test"
|
|
350
|
+
capabilities = ["test"]
|
|
351
|
+
|
|
352
|
+
async def execute_task(self, task):
|
|
353
|
+
return {"status": "success"}
|
|
354
|
+
|
|
355
|
+
async def run(self):
|
|
356
|
+
while not self.shutdown_requested:
|
|
357
|
+
await asyncio.sleep(0.1)
|
|
358
|
+
|
|
359
|
+
mesh.add(P2PTestAgent)
|
|
360
|
+
|
|
361
|
+
await mesh.start()
|
|
362
|
+
|
|
332
363
|
with pytest.raises(RuntimeError) as exc_info:
|
|
333
364
|
await mesh.workflow("test-workflow", [
|
|
334
|
-
{"agent": "
|
|
365
|
+
{"agent": "p2p_test", "task": "Should fail"}
|
|
335
366
|
])
|
|
336
367
|
|
|
337
|
-
assert "
|
|
368
|
+
assert "not available in p2p mode" in str(exc_info.value)
|
|
338
369
|
|
|
339
370
|
await mesh.stop()
|
|
340
371
|
|
|
@@ -1,137 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: jarviscore-framework
|
|
3
|
-
Version: 0.1.1
|
|
4
|
-
Summary: Build autonomous AI agents in 3 lines of code. Production-ready orchestration with P2P mesh networking.
|
|
5
|
-
Author-email: Ruth Mutua <mutuandinda82@gmail.com>, Muyukani Kizito <muyukani@prescottdata.io>
|
|
6
|
-
Maintainer-email: Prescott Data <info@prescottdata.io>
|
|
7
|
-
License: MIT
|
|
8
|
-
Project-URL: Homepage, https://github.com/yourusername/jarviscore
|
|
9
|
-
Project-URL: Documentation, https://jarviscore.readthedocs.io
|
|
10
|
-
Project-URL: Repository, https://github.com/yourusername/jarviscore
|
|
11
|
-
Project-URL: Issues, https://github.com/yourusername/jarviscore/issues
|
|
12
|
-
Keywords: agents,p2p,llm,distributed,workflow,orchestration
|
|
13
|
-
Classifier: Development Status :: 3 - Alpha
|
|
14
|
-
Classifier: Intended Audience :: Developers
|
|
15
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
-
Classifier: Programming Language :: Python :: 3
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
-
Requires-Python: >=3.10
|
|
21
|
-
Description-Content-Type: text/markdown
|
|
22
|
-
License-File: LICENSE
|
|
23
|
-
Requires-Dist: pydantic>=2.0.0
|
|
24
|
-
Requires-Dist: pydantic-settings>=2.0.0
|
|
25
|
-
Requires-Dist: swim-p2p
|
|
26
|
-
Requires-Dist: pyzmq
|
|
27
|
-
Requires-Dist: python-dotenv>=1.0.0
|
|
28
|
-
Requires-Dist: aiohttp>=3.9.0
|
|
29
|
-
Requires-Dist: beautifulsoup4>=4.12.0
|
|
30
|
-
Requires-Dist: anthropic>=0.18.0
|
|
31
|
-
Requires-Dist: openai>=1.0.0
|
|
32
|
-
Requires-Dist: google-genai>=1.0.0
|
|
33
|
-
Requires-Dist: httpx>=0.25.0
|
|
34
|
-
Provides-Extra: dev
|
|
35
|
-
Requires-Dist: pytest>=7.4.0; extra == "dev"
|
|
36
|
-
Requires-Dist: pytest-asyncio>=0.21.0; extra == "dev"
|
|
37
|
-
Requires-Dist: pytest-cov>=4.1.0; extra == "dev"
|
|
38
|
-
Requires-Dist: black>=23.0.0; extra == "dev"
|
|
39
|
-
Requires-Dist: mypy>=1.5.0; extra == "dev"
|
|
40
|
-
Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
41
|
-
Provides-Extra: all
|
|
42
|
-
Requires-Dist: jarviscore[dev]; extra == "all"
|
|
43
|
-
Dynamic: license-file
|
|
44
|
-
|
|
45
|
-
# JarvisCore Framework
|
|
46
|
-
|
|
47
|
-
**Build autonomous AI agents in 3 lines of code. Production-ready orchestration with P2P mesh networking.**
|
|
48
|
-
|
|
49
|
-
## Features
|
|
50
|
-
|
|
51
|
-
- ✅ **Simple Agent Definition** - Write just 3 attributes, framework handles everything
|
|
52
|
-
- ✅ **P2P Mesh Architecture** - Automatic agent discovery and task routing via SWIM protocol
|
|
53
|
-
- ✅ **Event-Sourced State** - Complete audit trail with crash recovery
|
|
54
|
-
- ✅ **Autonomous Execution** - LLM code generation with automatic repair
|
|
55
|
-
|
|
56
|
-
## Installation
|
|
57
|
-
|
|
58
|
-
```bash
|
|
59
|
-
pip install jarviscore-framework
|
|
60
|
-
```
|
|
61
|
-
|
|
62
|
-
## Setup & Validation
|
|
63
|
-
|
|
64
|
-
### 1. Initialize Project
|
|
65
|
-
|
|
66
|
-
```bash
|
|
67
|
-
# Create .env.example and example files in your project
|
|
68
|
-
python -m jarviscore.cli.scaffold --examples
|
|
69
|
-
|
|
70
|
-
# Configure your environment
|
|
71
|
-
cp .env.example .env
|
|
72
|
-
# Edit .env and add one of: CLAUDE_API_KEY, AZURE_API_KEY, GEMINI_API_KEY, or LLM_ENDPOINT
|
|
73
|
-
```
|
|
74
|
-
|
|
75
|
-
### 2. Validate Installation
|
|
76
|
-
|
|
77
|
-
```bash
|
|
78
|
-
# Check setup
|
|
79
|
-
python -m jarviscore.cli.check
|
|
80
|
-
|
|
81
|
-
# Test LLM connectivity
|
|
82
|
-
python -m jarviscore.cli.check --validate-llm
|
|
83
|
-
|
|
84
|
-
# Run smoke test (end-to-end validation)
|
|
85
|
-
python -m jarviscore.cli.smoketest
|
|
86
|
-
```
|
|
87
|
-
|
|
88
|
-
✅ **All checks pass?** You're ready to build agents!
|
|
89
|
-
|
|
90
|
-
## Quick Start
|
|
91
|
-
|
|
92
|
-
```python
|
|
93
|
-
from jarviscore import Mesh
|
|
94
|
-
from jarviscore.profiles import PromptDevAgent
|
|
95
|
-
|
|
96
|
-
# Define agent (3 lines)
|
|
97
|
-
class ScraperAgent(PromptDevAgent):
|
|
98
|
-
role = "scraper"
|
|
99
|
-
capabilities = ["web_scraping"]
|
|
100
|
-
system_prompt = "You are an expert web scraper..."
|
|
101
|
-
|
|
102
|
-
# Create mesh and run workflow
|
|
103
|
-
mesh = Mesh(mode="autonomous")
|
|
104
|
-
mesh.add(ScraperAgent)
|
|
105
|
-
await mesh.start()
|
|
106
|
-
|
|
107
|
-
results = await mesh.workflow(
|
|
108
|
-
workflow_id="wf-123",
|
|
109
|
-
steps=[
|
|
110
|
-
{"id": "scrape", "task": "Scrape example.com", "role": "scraper"}
|
|
111
|
-
]
|
|
112
|
-
)
|
|
113
|
-
```
|
|
114
|
-
|
|
115
|
-
## Architecture
|
|
116
|
-
|
|
117
|
-
JarvisCore is built on three layers:
|
|
118
|
-
|
|
119
|
-
1. **Execution Layer (20%)** - Profile-specific execution (Prompt-Dev, MCP)
|
|
120
|
-
2. **Orchestration Layer (60%)** - Workflow engine, dependencies, state management
|
|
121
|
-
3. **P2P Layer (20%)** - Agent discovery, task routing, mesh coordination
|
|
122
|
-
|
|
123
|
-
## Documentation
|
|
124
|
-
|
|
125
|
-
- [User Guide](jarviscore/docs/USER_GUIDE.md) - Complete guide for AutoAgent users
|
|
126
|
-
- [API Reference](jarviscore/docs/API_REFERENCE.md) - Detailed API documentation
|
|
127
|
-
- [Configuration Guide](jarviscore/docs/CONFIGURATION.md) - Settings and environment variables
|
|
128
|
-
- [Troubleshooting](jarviscore/docs/TROUBLESHOOTING.md) - Common issues and solutions
|
|
129
|
-
- [Examples](examples/) - Working code examples
|
|
130
|
-
|
|
131
|
-
## Development Status
|
|
132
|
-
|
|
133
|
-
**Version:** 0.1.0 (Alpha)
|
|
134
|
-
|
|
135
|
-
## License
|
|
136
|
-
|
|
137
|
-
MIT License - see LICENSE file for details
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
examples/calculator_agent_example.py,sha256=x7TrzE45WT_1DqwEnw8U3Fw56WpR9jBe3SLZz5vsKWc,2276
|
|
2
|
-
examples/multi_agent_workflow.py,sha256=Sygx3iEBM9WzorVMXqtiwn4rLYrW9BsxsiQSKceuzsE,4303
|
|
3
|
-
examples/research_agent_example.py,sha256=phJ5AHNnZ_pxCfiKvHoTp_IFwOAW7VD1fRNHlXvfgj4,2287
|
|
4
|
-
jarviscore/__init__.py,sha256=oBtxDmo0XAe_95wRMkuL_qRJmBpfKtbQUi2EhNv4QLo,2500
|
|
5
|
-
jarviscore/adapter/__init__.py,sha256=s78Y-q7se72kkA6mguUgsp5E3za8a9c0FRcN-J_-yDE,951
|
|
6
|
-
jarviscore/adapter/decorator.py,sha256=FMHFEyypzsMfghg6YXX2UYIqGhfl2-oFX86auuSA610,11804
|
|
7
|
-
jarviscore/cli/__init__.py,sha256=OnpJ37xDcbh3jFhALLY1jimgp1mxlB1-VhsKhGS6TDY,123
|
|
8
|
-
jarviscore/cli/__main__.py,sha256=GuIqW9NKJ3n70ei54ItzrBYEVaWG5dAWGxdu87w7YgI,829
|
|
9
|
-
jarviscore/cli/check.py,sha256=eWvk6fkRsJ8hpgT60XUoAn_0nyzF0PFKRl65m7U9cxQ,13955
|
|
10
|
-
jarviscore/cli/scaffold.py,sha256=nhTqmxKMh8L7lHogCWDT_UKZy_kKoavQzl31o1JPfxc,4829
|
|
11
|
-
jarviscore/cli/smoketest.py,sha256=1qek9Vb7DlX9YAtQwLg-L7Gr90q61oMy4elaF7rQA4I,13363
|
|
12
|
-
jarviscore/config/__init__.py,sha256=ZLjbRHSi5azaDyoSOFr9cQ65J5Fvi56xI-WHdczc204,178
|
|
13
|
-
jarviscore/config/settings.py,sha256=ueYpJAZxT1zoEPymzrn0OHAXZxQXBqSMs87VwolPdhg,3516
|
|
14
|
-
jarviscore/context/__init__.py,sha256=FdMfHUPs1vDRDaz2WR_F3IJi9k4FIVBvsGVKD5dJBrQ,1171
|
|
15
|
-
jarviscore/context/dependency.py,sha256=ns6IwTsMBBuP0w8oBRt60iiNsu5k7RomEViUi4kkmBg,4750
|
|
16
|
-
jarviscore/context/jarvis_context.py,sha256=6ai2TjDE5PRiBxF5lTdyBMoK3b8wv6cr0a6q55PoUSk,5775
|
|
17
|
-
jarviscore/context/memory.py,sha256=taonyl24ZUe-NZ5VtvrxljNv6f_BebuH6VE7l0B9S7A,4442
|
|
18
|
-
jarviscore/core/__init__.py,sha256=30K2aqZckYTRZupn6X-mGV2QDSqWCgJ1cpN6Zk1gqlQ,177
|
|
19
|
-
jarviscore/core/agent.py,sha256=qcqdhRVoYNxIhO_FYmttiDFA354EYtSaM2xp-TNDWGM,5402
|
|
20
|
-
jarviscore/core/mesh.py,sha256=880H25tyteX7ppoI7KkTOnPQoCjoQ3_YdMPzWTb3Zzc,16380
|
|
21
|
-
jarviscore/core/profile.py,sha256=sTrGTxV9mAqbt5l3z0-BSNOeWzq8YDLR3mlaPFSgt1c,2190
|
|
22
|
-
jarviscore/data/.env.example,sha256=TCPdye7tYNDOEpcgaEuzUsQ-H7m9G6rsyzNZV9IYQ9s,5156
|
|
23
|
-
jarviscore/data/__init__.py,sha256=757nsqMkytYV0zXiM_mh3LqtGZZ1lgFuMzvaLrW51PM,151
|
|
24
|
-
jarviscore/data/examples/calculator_agent_example.py,sha256=x7TrzE45WT_1DqwEnw8U3Fw56WpR9jBe3SLZz5vsKWc,2276
|
|
25
|
-
jarviscore/data/examples/multi_agent_workflow.py,sha256=Sygx3iEBM9WzorVMXqtiwn4rLYrW9BsxsiQSKceuzsE,4303
|
|
26
|
-
jarviscore/data/examples/research_agent_example.py,sha256=phJ5AHNnZ_pxCfiKvHoTp_IFwOAW7VD1fRNHlXvfgj4,2287
|
|
27
|
-
jarviscore/docs/API_REFERENCE.md,sha256=26OhRSfX6n3eSSgvtQdoeITmjzDjl9qUOU4PuH1NqKM,20066
|
|
28
|
-
jarviscore/docs/CONFIGURATION.md,sha256=tATnnDcKOxgAFLmzX59ySBtXKBp6AgeC1qWm-GsJORE,14201
|
|
29
|
-
jarviscore/docs/GETTING_STARTED.md,sha256=PJef680gyLqNN64pnvPmrRcPCE_X0sm5BSF0Bs1mOTY,13774
|
|
30
|
-
jarviscore/docs/TROUBLESHOOTING.md,sha256=lIGHQRM1HpoG5lVUKCftnAiyag1Czai1eWux25txo90,8476
|
|
31
|
-
jarviscore/docs/USER_GUIDE.md,sha256=qdfuisZyqtVtxtmtW2QB7BD6LrrHMXXb5yqlB5Z0irM,21330
|
|
32
|
-
jarviscore/execution/__init__.py,sha256=yDAMehMO2dVvdKjxVx7zQV2AaxySmvymA24QF3O9tlY,1754
|
|
33
|
-
jarviscore/execution/code_registry.py,sha256=C3_hAVXIeCG31qwSBUrmBBicmd2vnUrXJhJgj8MKlJw,9213
|
|
34
|
-
jarviscore/execution/generator.py,sha256=zY7IxxDu4xoifeuCGZZN8_l8zQCsB5eUO9HGIiLIttw,8696
|
|
35
|
-
jarviscore/execution/llm.py,sha256=a04W7buLXP1BvQoSR9u6hybGwaJqpjStZDipLIVCDVA,16794
|
|
36
|
-
jarviscore/execution/repair.py,sha256=yy6GTX6nFoA38S9V1ZGvqOeH3iRThRkMI3GZ6F_2WrU,9092
|
|
37
|
-
jarviscore/execution/result_handler.py,sha256=7SKr-teFksqNgejhnZNrjAzKbtDXbOSV3Tv7gfYsdig,10590
|
|
38
|
-
jarviscore/execution/sandbox.py,sha256=IVkccce_WHDxXO6l8BCcuxAB5iueJfYtbryydoE972c,19981
|
|
39
|
-
jarviscore/execution/search.py,sha256=JSoT8vb_yT6_EKaAgUQDS8ONgFeKf6s8YlEeTn6FaWQ,9923
|
|
40
|
-
jarviscore/orchestration/__init__.py,sha256=Ia9GfEMWif0tN0Ju89q6M_x_BRw9FcQl5Rf99p8CIKU,386
|
|
41
|
-
jarviscore/orchestration/claimer.py,sha256=ekhHqhtxpi_USnPsIioFK6bA2nhH6jalulBkptYubVU,3106
|
|
42
|
-
jarviscore/orchestration/dependency.py,sha256=UtSSwSC2Ak5V5dYeZWJy3wZZuTE-Y-fcglkoIgNT_70,4377
|
|
43
|
-
jarviscore/orchestration/engine.py,sha256=vviPOIYvhRqK5TbyS2epiRayhGe8fBg1j8N0VB6Vzyc,10455
|
|
44
|
-
jarviscore/orchestration/status.py,sha256=XeKASMNQDwpJ6HpDw3m3eAAMNWsWCj4k9jrvMnLHPbo,2540
|
|
45
|
-
jarviscore/p2p/__init__.py,sha256=EMggUUf7E0MGJlayy0GNGiFGnd0vr-PJ2T2suR_mwAI,632
|
|
46
|
-
jarviscore/p2p/broadcaster.py,sha256=PQRBRfVQD1FNntnxi7H8VsOyYGk_63N-QtnRB4Dx_-I,14127
|
|
47
|
-
jarviscore/p2p/coordinator.py,sha256=dqSyg2xUAlxuRIn121fY1246KqT1O8-bImjpH80WIC0,13397
|
|
48
|
-
jarviscore/p2p/keepalive.py,sha256=Ml4TyXv2pzJ7UZl3uYVgMlHmpjxYV6fAebWLSEEXo5U,14079
|
|
49
|
-
jarviscore/p2p/swim_manager.py,sha256=Mdr6D0uxJR0h1JMO_faAda2Ojv6gfjoY-ZOzD9q_DWo,10816
|
|
50
|
-
jarviscore/profiles/__init__.py,sha256=vBV6W5vszx3px4UOZwCh2wsH-TYzIoPp4Zo_STT8pNo,154
|
|
51
|
-
jarviscore/profiles/autoagent.py,sha256=1nJAVf1oU9lLO47BP1xFGBDZtypXXkwKy6kZjtpdlX0,10424
|
|
52
|
-
jarviscore/profiles/customagent.py,sha256=GRauTYlWyYSgZrWyYZlAPNkJoVgjDHjfY_c0rdeoOgM,4618
|
|
53
|
-
jarviscore_framework-0.1.1.dist-info/licenses/LICENSE,sha256=SjsXanvmQJFYz_SVFa17O85-bKIa_aG99wrkPpWtypo,1101
|
|
54
|
-
tests/conftest.py,sha256=vK5f8DVxCkOGTz3K1835ru5vRgHnaDL_V9M5AUaJ2Zw,974
|
|
55
|
-
tests/test_agent.py,sha256=qx9SFDTP4DlcQi6hV8y6LZyEYX6IB8D3VnM7fODnW9s,5182
|
|
56
|
-
tests/test_autoagent.py,sha256=_mzinLdQwskOn6a-yGqdfoOsqw2f52XSyTCmj8hLqlg,4628
|
|
57
|
-
tests/test_autoagent_day4.py,sha256=TTb0kSImF9stMsq4cMlkGahf9UBpYjoNXAkgnkKuuQA,4719
|
|
58
|
-
tests/test_context.py,sha256=MftpCCeLkmORo-jBzLZtNjMlEZqkvH9Vyt2h5FPHBzo,15628
|
|
59
|
-
tests/test_customagent.py,sha256=auxU6j3GVVT1r2kwoxarFUSCHtwSTjCrxBTqZzezqzw,8310
|
|
60
|
-
tests/test_decorator.py,sha256=cqJL6gbszWbtEwk8yDcRDbdXcykvM0uvGpjWUUqmw_8,20398
|
|
61
|
-
tests/test_integration.py,sha256=X9TYRW2WKF1doLFARTEyCCYLFAnYsazsshDwBzQZcZE,9191
|
|
62
|
-
tests/test_llm_fallback.py,sha256=CNajpKkQ6MO503dRbgaP2cz9kXHwUGKo5381tHKTe4c,5742
|
|
63
|
-
tests/test_mesh.py,sha256=QD0qbVRms7__ox2Ye7Ps4tfuH63m3_EoJzikjHIHjbc,10902
|
|
64
|
-
tests/test_p2p_integration.py,sha256=F9B21eWlwRzSRphm2Kacs9nM1FgSbSzi6RSLPDvvt2U,10995
|
|
65
|
-
tests/test_remote_sandbox.py,sha256=80ebc0pWInauWnywsQ0VSzlk8OexSCgGL7BcJUCPkR8,3268
|
|
66
|
-
jarviscore_framework-0.1.1.dist-info/METADATA,sha256=fTfNWNQ0mEbSMXXe6NjhAPE3_QuPB0dZU4u4d6g7bIA,4313
|
|
67
|
-
jarviscore_framework-0.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
68
|
-
jarviscore_framework-0.1.1.dist-info/top_level.txt,sha256=P1SVqN5qA97MpLqnuowxDioZ49zccGrx0tjKz-7wz5o,26
|
|
69
|
-
jarviscore_framework-0.1.1.dist-info/RECORD,,
|
{jarviscore_framework-0.1.1.dist-info → jarviscore_framework-0.2.1.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|