wisent 0.5.13__py3-none-any.whl → 0.5.14__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.
Potentially problematic release.
This version of wisent might be problematic. Click here for more details.
- wisent/__init__.py +1 -1
- wisent/core/agent/__init__.py +1 -18
- wisent/core/agent/diagnose/__init__.py +1 -55
- {wisent-0.5.13.dist-info → wisent-0.5.14.dist-info}/METADATA +1 -1
- {wisent-0.5.13.dist-info → wisent-0.5.14.dist-info}/RECORD +9 -9
- {wisent-0.5.13.dist-info → wisent-0.5.14.dist-info}/WHEEL +0 -0
- {wisent-0.5.13.dist-info → wisent-0.5.14.dist-info}/entry_points.txt +0 -0
- {wisent-0.5.13.dist-info → wisent-0.5.14.dist-info}/licenses/LICENSE +0 -0
- {wisent-0.5.13.dist-info → wisent-0.5.14.dist-info}/top_level.txt +0 -0
wisent/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "0.5.
|
|
1
|
+
__version__ = "0.5.14"
|
wisent/core/agent/__init__.py
CHANGED
|
@@ -1,18 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Agent module for wisent-guard autonomous systems.
|
|
3
|
-
|
|
4
|
-
This module provides:
|
|
5
|
-
- ResponseDiagnostics: Response analysis and quality assessment
|
|
6
|
-
- ResponseSteering: Response improvement and steering
|
|
7
|
-
- Data classes for analysis and improvement results
|
|
8
|
-
"""
|
|
9
|
-
|
|
10
|
-
from .diagnose import ResponseDiagnostics, AnalysisResult
|
|
11
|
-
from .steer import ResponseSteering, ImprovementResult
|
|
12
|
-
|
|
13
|
-
__all__ = [
|
|
14
|
-
'ResponseDiagnostics',
|
|
15
|
-
'AnalysisResult',
|
|
16
|
-
'ResponseSteering',
|
|
17
|
-
'ImprovementResult'
|
|
18
|
-
]
|
|
1
|
+
# Empty __init__.py to avoid cascading import errors with empty __init__ pattern
|
|
@@ -1,55 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Diagnostic module for autonomous agent.
|
|
3
|
-
|
|
4
|
-
This module provides:
|
|
5
|
-
- Classifier selection and auto-discovery
|
|
6
|
-
- On-the-fly classifier creation
|
|
7
|
-
- Response analysis and quality assessment
|
|
8
|
-
"""
|
|
9
|
-
|
|
10
|
-
# Response diagnostics
|
|
11
|
-
from .response_diagnostics import ResponseDiagnostics, AnalysisResult
|
|
12
|
-
|
|
13
|
-
# Classifier management
|
|
14
|
-
from .select_classifiers import ClassifierSelector, ClassifierInfo, SelectionCriteria, auto_select_classifiers_for_agent
|
|
15
|
-
from .create_classifier import ClassifierCreator, TrainingConfig, TrainingResult, create_classifier_on_demand
|
|
16
|
-
|
|
17
|
-
# New marketplace system
|
|
18
|
-
from .classifier_marketplace import (
|
|
19
|
-
ClassifierMarketplace,
|
|
20
|
-
ClassifierListing,
|
|
21
|
-
ClassifierCreationEstimate
|
|
22
|
-
)
|
|
23
|
-
|
|
24
|
-
# Agent decision system
|
|
25
|
-
from .agent_classifier_decision import (
|
|
26
|
-
AgentClassifierDecisionSystem,
|
|
27
|
-
TaskAnalysis,
|
|
28
|
-
ClassifierDecision
|
|
29
|
-
)
|
|
30
|
-
|
|
31
|
-
__all__ = [
|
|
32
|
-
# Response diagnostics
|
|
33
|
-
'ResponseDiagnostics',
|
|
34
|
-
'AnalysisResult',
|
|
35
|
-
|
|
36
|
-
# Legacy classifier management (for backward compatibility)
|
|
37
|
-
'ClassifierSelector',
|
|
38
|
-
'ClassifierInfo',
|
|
39
|
-
'SelectionCriteria',
|
|
40
|
-
'auto_select_classifiers_for_agent',
|
|
41
|
-
'ClassifierCreator',
|
|
42
|
-
'TrainingConfig',
|
|
43
|
-
'TrainingResult',
|
|
44
|
-
'create_classifier_on_demand',
|
|
45
|
-
|
|
46
|
-
# New marketplace system
|
|
47
|
-
'ClassifierMarketplace',
|
|
48
|
-
'ClassifierListing',
|
|
49
|
-
'ClassifierCreationEstimate',
|
|
50
|
-
|
|
51
|
-
# Agent decision system
|
|
52
|
-
'AgentClassifierDecisionSystem',
|
|
53
|
-
'TaskAnalysis',
|
|
54
|
-
'ClassifierDecision'
|
|
55
|
-
]
|
|
1
|
+
# Empty __init__.py to avoid cascading import errors with empty __init__ pattern
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
wisent/__init__.py,sha256=
|
|
1
|
+
wisent/__init__.py,sha256=eZCvGSWzmhAuX33aknAmdOv-0F6FE4joo5igjfie5QI,23
|
|
2
2
|
wisent/core/__init__.py,sha256=yNBOdCXpkwMuo1H1sNAYgPf5_-Hhf7y4H-RZJPCiOpI,463
|
|
3
3
|
wisent/core/autonomous_agent.py,sha256=XszhMkONc8kClCMqQfM8ZRQPxiMKJCmZSF7hrY-hf8Q,52878
|
|
4
4
|
wisent/core/benchmark_extractors.py,sha256=E51DOJM-cbtlDy9VrIeoBKSEQ6AZ1jeyDM7OAw-vn94,10473
|
|
@@ -34,13 +34,13 @@ wisent/core/activations/activations_collector.py,sha256=aKX3L7xAICXU1WRrn3THA5ll
|
|
|
34
34
|
wisent/core/activations/prompt_construction_strategy.py,sha256=KpaAdj75D3t6JR47mx70vr82uCijsuaMIolIEXuciO8,1403
|
|
35
35
|
wisent/core/activations/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
36
|
wisent/core/activations/core/atoms.py,sha256=FeeQj-YKb-1rLX0gnzFc5VM47ikWwfFh3datRduj6mQ,9101
|
|
37
|
-
wisent/core/agent/__init__.py,sha256=
|
|
37
|
+
wisent/core/agent/__init__.py,sha256=cAzpae7HWdNrpxCqANWUA2TKkqpm_hoSj8JAdbfmLwM,81
|
|
38
38
|
wisent/core/agent/budget.py,sha256=Bw9yy1xiXIXDEENNO_DePnIoFG2YB46ar6p_tcP4fcs,24374
|
|
39
39
|
wisent/core/agent/device_benchmarks.py,sha256=oN5EvBlcDPqGmvMel-puZMxoQJJcficFG0pf2-QZSHI,26132
|
|
40
40
|
wisent/core/agent/diagnose.py,sha256=0GbR0yK3fMW-OGp6DEIoSSe4JVHatAb0n6Ol9F1iPqU,9370
|
|
41
41
|
wisent/core/agent/steer.py,sha256=qcYMAGTBvPxNLozHkK0uzIKrY1eyK1kCtYx4_wMJOL4,9802
|
|
42
42
|
wisent/core/agent/timeout.py,sha256=I-G4KeAYuz1le6xTLGEWtlOxShWBi6IYSyKuJu-GUz0,4334
|
|
43
|
-
wisent/core/agent/diagnose/__init__.py,sha256=
|
|
43
|
+
wisent/core/agent/diagnose/__init__.py,sha256=cAzpae7HWdNrpxCqANWUA2TKkqpm_hoSj8JAdbfmLwM,81
|
|
44
44
|
wisent/core/agent/diagnose/agent_classifier_decision.py,sha256=NgMaogSsXBti8sNWv-Xzna1jwcvZKPsU7M6dX28F6EI,28997
|
|
45
45
|
wisent/core/agent/diagnose/classifier_marketplace.py,sha256=m02pwQkC4ROui6BhNhGJArdgBREI2xYuaRinm09VxM0,22113
|
|
46
46
|
wisent/core/agent/diagnose/create_classifier.py,sha256=UJKFgjGvIsRKfc5fPkfh227bAWcDD8M4jYNEeHffufI,44182
|
|
@@ -286,9 +286,9 @@ wisent/core/trainers/core/__init__.py,sha256=D0JX0-XCHdtLrCXhVDHNQafvyWCvJ4-o4UK
|
|
|
286
286
|
wisent/core/trainers/core/atoms.py,sha256=ycWk0G-7EIAEOnQL-o5_V5B8KTQ7CQUilGF4ibjighM,1536
|
|
287
287
|
wisent/core/utils/__init__.py,sha256=NavuBkpDSz6q1dN6m34-I-l8Aps1Sgcnx82FHxFufzY,457
|
|
288
288
|
wisent/core/utils/device.py,sha256=5brw9tclTU77NNAokzLXYrKUnjjYBzFfA7wNJPM9ytM,1609
|
|
289
|
-
wisent-0.5.
|
|
290
|
-
wisent-0.5.
|
|
291
|
-
wisent-0.5.
|
|
292
|
-
wisent-0.5.
|
|
293
|
-
wisent-0.5.
|
|
294
|
-
wisent-0.5.
|
|
289
|
+
wisent-0.5.14.dist-info/licenses/LICENSE,sha256=wy0iaw8b2tyqZAfKHib3lP3PJ9o88FDCg92oUHh3sDQ,1073
|
|
290
|
+
wisent-0.5.14.dist-info/METADATA,sha256=AEpPbm_BRKb9Z04q4n8we84vbDFgrZsXgwhzd8WpLHc,2413
|
|
291
|
+
wisent-0.5.14.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
292
|
+
wisent-0.5.14.dist-info/entry_points.txt,sha256=BM76j3xjtIcVZGk24iDf5w18s6SuqeOpaiAxfZhpnY8,49
|
|
293
|
+
wisent-0.5.14.dist-info/top_level.txt,sha256=2Ts9Iyldnb3auIN2HBBaHPknRy7nSRDm2f6RGzYgr8A,7
|
|
294
|
+
wisent-0.5.14.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|