jarviscore-framework 0.2.0__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/customagent_p2p_example.py +566 -183
- jarviscore/__init__.py +1 -1
- jarviscore/data/examples/customagent_p2p_example.py +566 -183
- jarviscore/docs/API_REFERENCE.md +2 -2
- jarviscore/docs/CONFIGURATION.md +2 -2
- jarviscore/docs/CUSTOMAGENT_GUIDE.md +1156 -209
- jarviscore/docs/GETTING_STARTED.md +1 -1
- jarviscore/docs/TROUBLESHOOTING.md +3 -3
- jarviscore/docs/USER_GUIDE.md +2 -2
- {jarviscore_framework-0.2.0.dist-info → jarviscore_framework-0.2.1.dist-info}/METADATA +7 -6
- {jarviscore_framework-0.2.0.dist-info → jarviscore_framework-0.2.1.dist-info}/RECORD +14 -14
- {jarviscore_framework-0.2.0.dist-info → jarviscore_framework-0.2.1.dist-info}/WHEEL +0 -0
- {jarviscore_framework-0.2.0.dist-info → jarviscore_framework-0.2.1.dist-info}/licenses/LICENSE +0 -0
- {jarviscore_framework-0.2.0.dist-info → jarviscore_framework-0.2.1.dist-info}/top_level.txt +0 -0
|
@@ -689,7 +689,7 @@ Need help?
|
|
|
689
689
|
python -m jarviscore.cli.smoketest --verbose
|
|
690
690
|
```
|
|
691
691
|
3. **Check logs**: `cat logs/<agent>/<latest>.json`
|
|
692
|
-
4. **Report issues**: [GitHub Issues](https://github.com/
|
|
692
|
+
4. **Report issues**: [GitHub Issues](https://github.com/Prescott-Data/jarviscore-framework/issues)
|
|
693
693
|
|
|
694
694
|
---
|
|
695
695
|
|
|
@@ -503,7 +503,7 @@ If issues persist:
|
|
|
503
503
|
- Minimal code to reproduce issue
|
|
504
504
|
|
|
505
505
|
4. **Create an issue:**
|
|
506
|
-
- GitHub: https://github.com/
|
|
506
|
+
- GitHub: https://github.com/Prescott-Data/jarviscore-framework/issues
|
|
507
507
|
- Include diagnostics output above
|
|
508
508
|
|
|
509
509
|
---
|
|
@@ -557,10 +557,10 @@ If significantly slower:
|
|
|
557
557
|
|
|
558
558
|
---
|
|
559
559
|
|
|
560
|
-
*Last updated: 2026-01-
|
|
560
|
+
*Last updated: 2026-01-23*
|
|
561
561
|
|
|
562
562
|
---
|
|
563
563
|
|
|
564
564
|
## Version
|
|
565
565
|
|
|
566
|
-
Troubleshooting Guide for JarvisCore v0.2.
|
|
566
|
+
Troubleshooting Guide for JarvisCore v0.2.1
|
jarviscore/docs/USER_GUIDE.md
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: jarviscore-framework
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Build autonomous AI agents in 3 lines of code. Production-ready orchestration with P2P mesh networking.
|
|
5
5
|
Author-email: Ruth Mutua <mutuandinda82@gmail.com>, Muyukani Kizito <muyukani@prescottdata.io>
|
|
6
6
|
Maintainer-email: Prescott Data <info@prescottdata.io>
|
|
7
7
|
License-Expression: MIT
|
|
8
|
-
Project-URL: Homepage, https://github.com/
|
|
9
|
-
Project-URL: Documentation, https://jarviscore
|
|
10
|
-
Project-URL: Repository, https://github.com/
|
|
11
|
-
Project-URL: Issues, https://github.com/
|
|
8
|
+
Project-URL: Homepage, https://github.com/Prescott-Data/jarviscore-framework
|
|
9
|
+
Project-URL: Documentation, https://github.com/Prescott-Data/jarviscore-framework/tree/main/jarviscore/docs
|
|
10
|
+
Project-URL: Repository, https://github.com/Prescott-Data/jarviscore-framework
|
|
11
|
+
Project-URL: Issues, https://github.com/Prescott-Data/jarviscore-framework/issues
|
|
12
12
|
Keywords: agents,p2p,llm,distributed,workflow,orchestration
|
|
13
13
|
Classifier: Development Status :: 3 - Alpha
|
|
14
14
|
Classifier: Intended Audience :: Developers
|
|
@@ -128,6 +128,7 @@ print(results[0]["output"]) # [2, 4, 6]
|
|
|
128
128
|
|
|
129
129
|
## Documentation
|
|
130
130
|
|
|
131
|
+
- [User Guide](jarviscore/docs/USER_GUIDE.md) - Complete documentation
|
|
131
132
|
- [Getting Started](jarviscore/docs/GETTING_STARTED.md) - 5-minute quickstart
|
|
132
133
|
- [AutoAgent Guide](jarviscore/docs/AUTOAGENT_GUIDE.md) - LLM-powered agents
|
|
133
134
|
- [CustomAgent Guide](jarviscore/docs/CUSTOMAGENT_GUIDE.md) - Bring your own code
|
|
@@ -136,7 +137,7 @@ print(results[0]["output"]) # [2, 4, 6]
|
|
|
136
137
|
|
|
137
138
|
## Version
|
|
138
139
|
|
|
139
|
-
**0.2.
|
|
140
|
+
**0.2.1**
|
|
140
141
|
|
|
141
142
|
## License
|
|
142
143
|
|
|
@@ -3,10 +3,10 @@ examples/calculator_agent_example.py,sha256=x7TrzE45WT_1DqwEnw8U3Fw56WpR9jBe3SLZ
|
|
|
3
3
|
examples/custom_profile_decorator.py,sha256=4EAgqXrT9an1f5AQ3cEWAhPvI_EeXbQq7O8ByunXb_M,4099
|
|
4
4
|
examples/custom_profile_wrap.py,sha256=0NoQECVBEJOiL7Syr2QL73jnvj2XhGQZUhOvisqEQXw,5088
|
|
5
5
|
examples/customagent_distributed_example.py,sha256=_vt_2sqSCIdHgwuV4VQFzHzmC3bgemPrHFifeA5tRNE,13677
|
|
6
|
-
examples/customagent_p2p_example.py,sha256=
|
|
6
|
+
examples/customagent_p2p_example.py,sha256=tWywC5abc1aYIyW2V6Xgr_XkjZdqzcOeLut3PnzUpB8,30669
|
|
7
7
|
examples/multi_agent_workflow.py,sha256=Sygx3iEBM9WzorVMXqtiwn4rLYrW9BsxsiQSKceuzsE,4303
|
|
8
8
|
examples/research_agent_example.py,sha256=phJ5AHNnZ_pxCfiKvHoTp_IFwOAW7VD1fRNHlXvfgj4,2287
|
|
9
|
-
jarviscore/__init__.py,sha256=
|
|
9
|
+
jarviscore/__init__.py,sha256=KEIOQgfB3Zc73dMMzekxOGbwlTAZV_u63zHeN8F24Y8,2954
|
|
10
10
|
jarviscore/adapter/__init__.py,sha256=fipq2XzgW3Us35tbFhs9B_ypoeEZeaP7bTsNPFFZVRk,1092
|
|
11
11
|
jarviscore/adapter/decorator.py,sha256=ZY-WCF16EvtQWkra_6HNBKdTOJ0G5yvrD5PYKa6bcqk,12040
|
|
12
12
|
jarviscore/adapter/wrapper.py,sha256=kU9nBiezU1M1dq9x5EjnAVHs_QjFFOFx7dR4TNyFdPk,9666
|
|
@@ -30,16 +30,16 @@ jarviscore/data/__init__.py,sha256=757nsqMkytYV0zXiM_mh3LqtGZZ1lgFuMzvaLrW51PM,1
|
|
|
30
30
|
jarviscore/data/examples/autoagent_distributed_example.py,sha256=yXxabyqPqPc-CTroTf-0GAl63ln3zPRMhMYBEi1Tpsc,8586
|
|
31
31
|
jarviscore/data/examples/calculator_agent_example.py,sha256=x7TrzE45WT_1DqwEnw8U3Fw56WpR9jBe3SLZz5vsKWc,2276
|
|
32
32
|
jarviscore/data/examples/customagent_distributed_example.py,sha256=_vt_2sqSCIdHgwuV4VQFzHzmC3bgemPrHFifeA5tRNE,13677
|
|
33
|
-
jarviscore/data/examples/customagent_p2p_example.py,sha256=
|
|
33
|
+
jarviscore/data/examples/customagent_p2p_example.py,sha256=tWywC5abc1aYIyW2V6Xgr_XkjZdqzcOeLut3PnzUpB8,30669
|
|
34
34
|
jarviscore/data/examples/multi_agent_workflow.py,sha256=Sygx3iEBM9WzorVMXqtiwn4rLYrW9BsxsiQSKceuzsE,4303
|
|
35
35
|
jarviscore/data/examples/research_agent_example.py,sha256=phJ5AHNnZ_pxCfiKvHoTp_IFwOAW7VD1fRNHlXvfgj4,2287
|
|
36
|
-
jarviscore/docs/API_REFERENCE.md,sha256=
|
|
36
|
+
jarviscore/docs/API_REFERENCE.md,sha256=rKFXBvfzd2jkLtVY80SOQrUnq4Z5fKNaJBBoh8QQhXk,25363
|
|
37
37
|
jarviscore/docs/AUTOAGENT_GUIDE.md,sha256=ftm8dymihs3Y9PZTZmSD9xRhlRFygfTZKm59Mz8zNRA,4618
|
|
38
|
-
jarviscore/docs/CONFIGURATION.md,sha256=
|
|
39
|
-
jarviscore/docs/CUSTOMAGENT_GUIDE.md,sha256=
|
|
40
|
-
jarviscore/docs/GETTING_STARTED.md,sha256=
|
|
41
|
-
jarviscore/docs/TROUBLESHOOTING.md,sha256=
|
|
42
|
-
jarviscore/docs/USER_GUIDE.md,sha256=
|
|
38
|
+
jarviscore/docs/CONFIGURATION.md,sha256=gsYElB2XcoSPx_65ca-NBmIe1HY_KS1zQCeFORKZcyI,14910
|
|
39
|
+
jarviscore/docs/CUSTOMAGENT_GUIDE.md,sha256=CBSghYCtfTQykh3s7AVsAR_cKZO15JabTi3pvwOUjMw,42945
|
|
40
|
+
jarviscore/docs/GETTING_STARTED.md,sha256=W5cHsZVpiIO5Z01eBZWDbLowxLCnW4-mQQmeGy_5YIA,16601
|
|
41
|
+
jarviscore/docs/TROUBLESHOOTING.md,sha256=mFTNWIGToGWaHSthVDVtdpw5Y994mSLyv1UuAqzuWEM,11544
|
|
42
|
+
jarviscore/docs/USER_GUIDE.md,sha256=h2CM4hKPpLcKSEBSiS9ERlsx-nzAz123DFrLquLvpMU,17631
|
|
43
43
|
jarviscore/execution/__init__.py,sha256=yDAMehMO2dVvdKjxVx7zQV2AaxySmvymA24QF3O9tlY,1754
|
|
44
44
|
jarviscore/execution/code_registry.py,sha256=C3_hAVXIeCG31qwSBUrmBBicmd2vnUrXJhJgj8MKlJw,9213
|
|
45
45
|
jarviscore/execution/generator.py,sha256=zY7IxxDu4xoifeuCGZZN8_l8zQCsB5eUO9HGIiLIttw,8696
|
|
@@ -64,7 +64,7 @@ jarviscore/p2p/swim_manager.py,sha256=Mdr6D0uxJR0h1JMO_faAda2Ojv6gfjoY-ZOzD9q_DW
|
|
|
64
64
|
jarviscore/profiles/__init__.py,sha256=vBV6W5vszx3px4UOZwCh2wsH-TYzIoPp4Zo_STT8pNo,154
|
|
65
65
|
jarviscore/profiles/autoagent.py,sha256=1nJAVf1oU9lLO47BP1xFGBDZtypXXkwKy6kZjtpdlX0,10424
|
|
66
66
|
jarviscore/profiles/customagent.py,sha256=GRauTYlWyYSgZrWyYZlAPNkJoVgjDHjfY_c0rdeoOgM,4618
|
|
67
|
-
jarviscore_framework-0.2.
|
|
67
|
+
jarviscore_framework-0.2.1.dist-info/licenses/LICENSE,sha256=SjsXanvmQJFYz_SVFa17O85-bKIa_aG99wrkPpWtypo,1101
|
|
68
68
|
test_logs/code_registry/functions/data_generator-558779ed_560ebc37.py,sha256=ua0Lueqe1mWCeMpKTMaumfPS-ZrWBFF_Zx6TU5QVjNo,132
|
|
69
69
|
test_logs/code_registry/functions/data_generator-5ed3609e_560ebc37.py,sha256=ua0Lueqe1mWCeMpKTMaumfPS-ZrWBFF_Zx6TU5QVjNo,132
|
|
70
70
|
test_logs/code_registry/functions/data_generator-66da0356_43970bb9.py,sha256=vOkjCOcfXHLJX2TkR3et9vWSwEhCmOn4DdJHMGfTMVY,733
|
|
@@ -126,7 +126,7 @@ tests/test_llm_fallback.py,sha256=CNajpKkQ6MO503dRbgaP2cz9kXHwUGKo5381tHKTe4c,57
|
|
|
126
126
|
tests/test_mesh.py,sha256=JmAAvZaduQ8dHThFDBYgUnjiz8a3r4Kt1atvdH1JO5I,11857
|
|
127
127
|
tests/test_p2p_integration.py,sha256=F9B21eWlwRzSRphm2Kacs9nM1FgSbSzi6RSLPDvvt2U,10995
|
|
128
128
|
tests/test_remote_sandbox.py,sha256=80ebc0pWInauWnywsQ0VSzlk8OexSCgGL7BcJUCPkR8,3268
|
|
129
|
-
jarviscore_framework-0.2.
|
|
130
|
-
jarviscore_framework-0.2.
|
|
131
|
-
jarviscore_framework-0.2.
|
|
132
|
-
jarviscore_framework-0.2.
|
|
129
|
+
jarviscore_framework-0.2.1.dist-info/METADATA,sha256=1HFKH6OVKN7PMlGrdblzXtqXTYpY7i6__N1uczT2uew,4512
|
|
130
|
+
jarviscore_framework-0.2.1.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
|
|
131
|
+
jarviscore_framework-0.2.1.dist-info/top_level.txt,sha256=aTco8nlqDftlvhB43Je0xXmb-Pw5qYgj-phawjHX4VY,36
|
|
132
|
+
jarviscore_framework-0.2.1.dist-info/RECORD,,
|
|
File without changes
|
{jarviscore_framework-0.2.0.dist-info → jarviscore_framework-0.2.1.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|