parishad 0.1.3__py3-none-any.whl → 0.1.4__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.
parishad/__init__.py CHANGED
@@ -5,7 +5,7 @@ Parishad orchestrates multiple local language models into a structured "council"
5
5
  that achieves higher reliability than a single model under strict compute budgets.
6
6
  """
7
7
 
8
- __version__ = "0.1.3"
8
+ __version__ = "0.1.4"
9
9
 
10
10
  from .orchestrator.engine import Parishad, ParishadEngine, PipelineConfig
11
11
  from .models.runner import ModelRunner, ModelConfig
@@ -3,7 +3,7 @@
3
3
  # Uses 2 model slots: mid + big
4
4
 
5
5
  name: "parishad-core"
6
- version: "0.1.3"
6
+ version: "0.1.4"
7
7
  description: "Balanced 8-role pipeline: Madhya Sabha with extended council"
8
8
 
9
9
  # Role definitions
@@ -3,7 +3,7 @@
3
3
  # Uses 3 model slots: small + mid + big
4
4
 
5
5
  name: "parishad-extended"
6
- version: "0.1.3"
6
+ version: "0.1.4"
7
7
  description: "Maha Sabha: Full 10-role council including Lateral Thinker (Vidushak)"
8
8
 
9
9
  # Role definitions
@@ -3,7 +3,7 @@
3
3
  # Laghu Sabha matches standard structure but uses smaller/faster models
4
4
 
5
5
  name: "parishad-fast"
6
- version: "0.1.3"
6
+ version: "0.1.4"
7
7
  description: "Fast 5-role pipeline: Analyze -> Plan -> Execute -> Check -> Judge"
8
8
 
9
9
  # Role definitions
parishad/data/models.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.1.3",
2
+ "version": "0.1.4",
3
3
  "updated": "2024-12-30",
4
4
  "sources": {
5
5
  "ollama": {
parishad/models/runner.py CHANGED
@@ -307,10 +307,20 @@ def _create_backend(backend_type: Backend | str) -> BackendProtocol:
307
307
 
308
308
  if backend_name == "llama_cpp":
309
309
  if not is_backend_available("llama_cpp"):
310
- raise BackendNotAvailableError(
311
- "llama-cpp-python is not installed. "
312
- "Install with: pip install llama-cpp-python"
313
- )
310
+ import platform
311
+ msg = "llama-cpp-python is not installed."
312
+
313
+ if platform.system() == "Windows":
314
+ msg += (
315
+ "\n\n❌ compilation failed likely due to missing MSVC/CUDA."
316
+ "\n💡 SOLUTION: Install a pre-built wheel for Windows:"
317
+ "\n pip install llama-cpp-python --extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cu121"
318
+ "\n (Select the cpu or cuda version matching your system)"
319
+ )
320
+ else:
321
+ msg += "\nInstall with: pip install llama-cpp-python"
322
+
323
+ raise BackendNotAvailableError(msg)
314
324
  return LlamaCppBackend()
315
325
 
316
326
  if backend_name == "openai":
@@ -21,7 +21,7 @@ class RoleSpec:
21
21
  name: str
22
22
  class_name: str
23
23
  slot: str
24
- version: str = "0.1.3"
24
+ version: str = "0.1.4"
25
25
  budget_tokens: int = 1000
26
26
  dependencies: list[str] = field(default_factory=list)
27
27
  max_tokens: Optional[int] = None
@@ -110,7 +110,7 @@ def load_pipeline_config(name: str, config_dir: Optional[Path] = None) -> list[R
110
110
  name=role_name.lower(), # Always store as lowercase for consistent lookups
111
111
  class_name=role_config.get("class", role_name.capitalize()),
112
112
  slot=role_config.get("slot", "mid"),
113
- version=role_config.get("version", "0.1.1"),
113
+ version=role_config.get("version", "0.1.4"),
114
114
  budget_tokens=role_config.get("budget_tokens", 1000),
115
115
  dependencies=role_config.get("dependencies", []),
116
116
  max_tokens=role_config.get("max_tokens"),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: parishad
3
- Version: 0.1.3
3
+ Version: 0.1.4
4
4
  Summary: A cost-aware, local-first council of heterogeneous LLMs for reliable reasoning, coding, and factual correctness
5
5
  Project-URL: Homepage, https://github.com/parishad-council/parishad
6
6
  Project-URL: Documentation, https://github.com/parishad-council/parishad#readme
@@ -23,7 +23,6 @@ Requires-Python: >=3.10
23
23
  Requires-Dist: click>=8.0.0
24
24
  Requires-Dist: httpx>=0.25.0
25
25
  Requires-Dist: jsonschema>=4.0.0
26
- Requires-Dist: llama-cpp-python>=0.2.0
27
26
  Requires-Dist: numpy<2.0
28
27
  Requires-Dist: openai>=1.0.0
29
28
  Requires-Dist: psutil>=5.9.0
@@ -39,6 +38,7 @@ Requires-Dist: black>=23.0.0; extra == 'all'
39
38
  Requires-Dist: chromadb>=0.5.0; extra == 'all'
40
39
  Requires-Dist: datasets>=2.14.0; extra == 'all'
41
40
  Requires-Dist: faiss-cpu>=1.7.0; extra == 'all'
41
+ Requires-Dist: llama-cpp-python>=0.2.0; extra == 'all'
42
42
  Requires-Dist: mypy>=1.0.0; extra == 'all'
43
43
  Requires-Dist: pandas>=2.0.0; extra == 'all'
44
44
  Requires-Dist: pre-commit>=3.0.0; extra == 'all'
@@ -71,6 +71,7 @@ Requires-Dist: grpcio-tools>=1.50.0; extra == 'distributed'
71
71
  Requires-Dist: grpcio>=1.50.0; extra == 'distributed'
72
72
  Provides-Extra: local
73
73
  Requires-Dist: accelerate>=0.25.0; extra == 'local'
74
+ Requires-Dist: llama-cpp-python>=0.2.0; extra == 'local'
74
75
  Requires-Dist: torch>=2.0.0; extra == 'local'
75
76
  Requires-Dist: transformers>=4.35.0; extra == 'local'
76
77
  Provides-Extra: mlx
@@ -1,4 +1,4 @@
1
- parishad/__init__.py,sha256=uu-wd2GMxBQfqNpDW4aqnibYeHXvDrcu0XftGrwO2Pk,1199
1
+ parishad/__init__.py,sha256=ZhtPIWut7lisg3Kie8Dk86EHTPax5nGifzaPT-ksK7I,1199
2
2
  parishad/__main__.py,sha256=0qrXs91zon0xM17c5HTrkiSBZwiRfMJV2jOo0qP7MJ8,146
3
3
  parishad/checker/__init__.py,sha256=m-Vl5emTwJWumsIbLY7g5pslU9m1uTcJNAxnGJPbkJU,540
4
4
  parishad/checker/deterministic.py,sha256=reXH8aew_pBGn85MRMQcHRzi6fWU_JaGniimYUqsly0,20477
@@ -10,12 +10,12 @@ parishad/cli/main.py,sha256=vmCV1O1u5fqWmMIjjzECeMOgUayGoI8n_oCaRgmf_Nw,38267
10
10
  parishad/cli/prarambh.py,sha256=4vvRzJHWC6ECPdL4IKv5laZDy4v3ZYDq4vjqu3Hll30,4296
11
11
  parishad/cli/sthapana.py,sha256=Sxk-TA-WCKW2CSPBQPhhEgaON60HKVDUaMorFjc-BNQ,13534
12
12
  parishad/config/modes.py,sha256=eh4B5ZUUPN6HqYAj5hLudTqkyxBHKhIsx_Q_BvSduGk,4066
13
- parishad/config/pipeline.core.yaml,sha256=osGfA15jjAcqnni2kxkyKsgesRpfBMcec5fojwkm2XQ,2960
14
- parishad/config/pipeline.extended.yaml,sha256=ZHppfCls-4lmUAB2t0_pMD6EhOabU6K6F-WyujBtIEg,4187
15
- parishad/config/pipeline.fast.yaml,sha256=-LL08zFHcSw_R4rh0lJyPqYnE4WAuTYMLBXplHNt3hc,2050
13
+ parishad/config/pipeline.core.yaml,sha256=jq7hIpxjDmUiS-NWRZyIRj1ElNGpllAdEXFSbBPepsE,2960
14
+ parishad/config/pipeline.extended.yaml,sha256=BOcAc_TFNdEfDOSe9AKVAzZLc7gCMY1Mhv1oVFUimf4,4187
15
+ parishad/config/pipeline.fast.yaml,sha256=UIurOFIipModXsRpAM92whrzgmDxKAUhArjIMzLuOCo,2050
16
16
  parishad/config/user_config.py,sha256=aKgiILWKDc3_OYaZz-u9a4Pm1PP1EULeX-q6KqMbcho,3165
17
17
  parishad/data/catalog.py,sha256=hnhyHlAuETzXf1hlP_snXYhjq2nZG9Ab2OGXeMyYlDY,4623
18
- parishad/data/models.json,sha256=NkhDKzI0Z4TPQblfnoRc85f4CFOW9NWyAnhM7qSBY3I,19388
18
+ parishad/data/models.json,sha256=xoft6sV0DF5ptqUd5mP4QQfc7jMuWT_Q95TllFRBTUo,19388
19
19
  parishad/memory/__init__.py,sha256=AJEa0RNcqjep_3mkYniuhK-ZUj1mshCk0rPTrCQrxhY,2687
20
20
  parishad/models/__init__.py,sha256=v0CqeJ69qwkUw4nC63VH6QOx4v8Mce1_akb-1VvzTa4,3682
21
21
  parishad/models/costs.py,sha256=2ngHV1HsDkuUsTK8QCJGqXlJUWOlVVgoO72K8oJ0ZrA,11393
@@ -23,7 +23,7 @@ parishad/models/downloader.py,sha256=Co0lMgevYUcRvKaJWDBpBxhNDIw2FvdFM3gxYy_DEOs
23
23
  parishad/models/optimizations.py,sha256=Ww4jUIdZ4-6OPzA-jqktE_J5dfp5OKawErBLwLoE27Q,25789
24
24
  parishad/models/profiles.py,sha256=E7gXpzxxX1k8r8cmBBeLc0zQMD8KbSurMfzLNXDyS2A,19504
25
25
  parishad/models/reliability.py,sha256=gUKunkPM4GW0akO5RFtIwhGMKYCXAXdhrya7XAQyjzQ,26392
26
- parishad/models/runner.py,sha256=J6WEpVvBASJwa7GDF3sUPwjWycHcIkTV4Cti7Cx5BEM,21239
26
+ parishad/models/runner.py,sha256=_gNCorIYwcHeMv84UG-c0tTObANGrfLZI91qERQlES0,21773
27
27
  parishad/models/tokenization.py,sha256=mTl0QhLMSlSjjHzZccbvgPhRJJ6D36SrYTNEEL8AlZU,7305
28
28
  parishad/models/backends/__init__.py,sha256=6j9TxZRa3ycaHVYEUDMWLFpoZms9mprgxW4dQfFp9vo,6696
29
29
  parishad/models/backends/base.py,sha256=iLGkeANbkpQwOBh8zmW0uGORUHSOQkklSzrIUkfW2vE,5278
@@ -34,7 +34,7 @@ parishad/models/backends/ollama.py,sha256=nyk7rxDXn6Cw03S6Z9Cm3SxaZp09m-1qf6JE1T
34
34
  parishad/models/backends/openai_api.py,sha256=9CmBvhQEcPX0R1RtQnHWVcTdH9wMT6Pu1acF2vy8C2o,6041
35
35
  parishad/models/backends/transformers_hf.py,sha256=z-nw18yY62BorAawrand59GgD_0dmnYqibQGcP6sadQ,6619
36
36
  parishad/orchestrator/__init__.py,sha256=a52VEdW_98XwD3FseRu_9_sKagFs6z5PtXS_o4j2fbs,413
37
- parishad/orchestrator/config_loader.py,sha256=XN5OGq_5J_PmNMmk2CCmom5XK9EUSJKqmlG0VJoClfc,6975
37
+ parishad/orchestrator/config_loader.py,sha256=7rWHpJ7PzCb_A8A3sFZV2foVTJqqRpnM74kVni4ZJjc,6975
38
38
  parishad/orchestrator/engine.py,sha256=WAKcHqG20tRqt-Hg62iR-TOswmgc0Y0OclSuSlZe0lA,45644
39
39
  parishad/orchestrator/exceptions.py,sha256=jLNkoKvhuKny2upGv04L7Dj4SAi0umVRC0RAukX5BBM,391
40
40
  parishad/roles/__init__.py,sha256=OF8Zb-yNP9nX0gS9gnYkt0QoG_KyHYwtw_OiWplFnxc,1171
@@ -61,8 +61,8 @@ parishad/utils/logging.py,sha256=TT16YB6cOhBPyo9a6dZRww3SjStrZKihdtq9hwqBXJo,214
61
61
  parishad/utils/scanner.py,sha256=8wxaNgH3i_T4AdyBuLr9L4KcQ_AORguA6xvnOIyem8k,5841
62
62
  parishad/utils/text.py,sha256=S_3Ox4T3C87XfyXdR2b3JMatpCiOozaqPUbVic7OIFM,1617
63
63
  parishad/utils/tracing.py,sha256=x35BmMO9M83dVCy73kYqkOFE4zKMrUFe_RuV8qIWJaM,4304
64
- parishad-0.1.3.dist-info/METADATA,sha256=v9_c3uvs1pWvAegIhLaKduF-QRE00_-E5quuxffclRQ,11008
65
- parishad-0.1.3.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
66
- parishad-0.1.3.dist-info/entry_points.txt,sha256=cCF4Bg5sLxlLMJhnOnWNua3XYzAGlL5ri-55y0fWPek,51
67
- parishad-0.1.3.dist-info/licenses/LICENSE,sha256=Xow-fDHX9pzrvBkPHImvQa-Uc1g6BDbz9IE4jPfB6D0,1073
68
- parishad-0.1.3.dist-info/RECORD,,
64
+ parishad-0.1.4.dist-info/METADATA,sha256=G9FqrfIPHdzDZMuhADC2kdDE_uZ8j9ys0h63-lmxdrI,11081
65
+ parishad-0.1.4.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
66
+ parishad-0.1.4.dist-info/entry_points.txt,sha256=cCF4Bg5sLxlLMJhnOnWNua3XYzAGlL5ri-55y0fWPek,51
67
+ parishad-0.1.4.dist-info/licenses/LICENSE,sha256=Xow-fDHX9pzrvBkPHImvQa-Uc1g6BDbz9IE4jPfB6D0,1073
68
+ parishad-0.1.4.dist-info/RECORD,,