empathy-framework 3.8.0__py3-none-any.whl → 3.8.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.
- {empathy_framework-3.8.0.dist-info → empathy_framework-3.8.1.dist-info}/METADATA +30 -5
- {empathy_framework-3.8.0.dist-info → empathy_framework-3.8.1.dist-info}/RECORD +7 -7
- empathy_os/__init__.py +1 -1
- {empathy_framework-3.8.0.dist-info → empathy_framework-3.8.1.dist-info}/WHEEL +0 -0
- {empathy_framework-3.8.0.dist-info → empathy_framework-3.8.1.dist-info}/entry_points.txt +0 -0
- {empathy_framework-3.8.0.dist-info → empathy_framework-3.8.1.dist-info}/licenses/LICENSE +0 -0
- {empathy_framework-3.8.0.dist-info → empathy_framework-3.8.1.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: empathy-framework
|
|
3
|
-
Version: 3.8.
|
|
3
|
+
Version: 3.8.1
|
|
4
4
|
Summary: AI collaboration framework with intelligent caching (up to 57% cache hit rate), tier routing (34-86% cost savings depending on task complexity), XML-enhanced prompts, persistent memory, CrewAI integration, and multi-agent orchestration. Includes HIPAA-compliant healthcare wizards.
|
|
5
5
|
Author-email: Patrick Roebuck <admin@smartaimemory.com>
|
|
6
6
|
Maintainer-email: Smart-AI-Memory <admin@smartaimemory.com>
|
|
@@ -177,8 +177,8 @@ Requires-Dist: typer<1.0.0,>=0.9.0
|
|
|
177
177
|
Requires-Dist: pyyaml<7.0,>=6.0
|
|
178
178
|
Requires-Dist: anthropic<1.0.0,>=0.25.0
|
|
179
179
|
Requires-Dist: crewai<1.0.0,>=0.1.0
|
|
180
|
-
Requires-Dist: langchain<
|
|
181
|
-
Requires-Dist: langchain-core<
|
|
180
|
+
Requires-Dist: langchain<2.0.0,>=0.1.0
|
|
181
|
+
Requires-Dist: langchain-core<2.0.0,>=0.1.0
|
|
182
182
|
Provides-Extra: anthropic
|
|
183
183
|
Requires-Dist: anthropic<1.0.0,>=0.25.0; extra == "anthropic"
|
|
184
184
|
Provides-Extra: openai
|
|
@@ -367,9 +367,34 @@ Dynamic: license-file
|
|
|
367
367
|
pip install empathy-framework[developer] # Lightweight for individual developers
|
|
368
368
|
```
|
|
369
369
|
|
|
370
|
-
## What's New in v3.
|
|
370
|
+
## What's New in v3.8.0
|
|
371
|
+
|
|
372
|
+
### 🎯 **Transparent Cost Claims: Honest Role-Based Savings (34-86%)**
|
|
373
|
+
|
|
374
|
+
**Real savings depend on your work role.** Architects using 60% PREMIUM tasks see 34% savings, while junior devs see 86%. See [role-based analysis](docs/cost-analysis/COST_SAVINGS_BY_ROLE_AND_PROVIDER.md) for your specific case.
|
|
375
|
+
|
|
376
|
+
### 🚀 **Intelligent Response Caching: Up to 57% Hit Rate (Benchmarked)**
|
|
377
|
+
|
|
378
|
+
**Hash-only cache**: 100% hit rate on identical prompts, ~5μs lookups
|
|
379
|
+
**Hybrid cache**: Up to 57% hit rate on semantically similar prompts (measured on security audit workflow)
|
|
380
|
+
|
|
381
|
+
```python
|
|
382
|
+
from empathy_os.cache import create_cache
|
|
383
|
+
|
|
384
|
+
# Hash-only mode (fast, exact matches)
|
|
385
|
+
cache = create_cache(cache_type="hash")
|
|
386
|
+
|
|
387
|
+
# Hybrid mode (semantic similarity)
|
|
388
|
+
cache = create_cache(cache_type="hybrid", similarity_threshold=0.95)
|
|
389
|
+
```
|
|
390
|
+
|
|
391
|
+
See [caching docs](docs/caching/) for benchmarks and configuration.
|
|
392
|
+
|
|
393
|
+
---
|
|
394
|
+
|
|
395
|
+
### Previous Release: v3.7.0
|
|
371
396
|
|
|
372
|
-
|
|
397
|
+
#### 🚀 **XML-Enhanced Prompting: 15-35% Token Reduction + Graceful Validation**
|
|
373
398
|
|
|
374
399
|
**Slash your API costs and eliminate response parsing errors with production-ready XML enhancements.**
|
|
375
400
|
|
|
@@ -20,7 +20,7 @@ coach_wizards/refactoring_wizard.py,sha256=X0MTx3BHpOlOMAYDow-3HX5GyryY70JGAF5vA
|
|
|
20
20
|
coach_wizards/scaling_wizard.py,sha256=n1RLtpWmj1RSEGSWssMiUPwCdpskO3z2Z3yhLlTdXro,2598
|
|
21
21
|
coach_wizards/security_wizard.py,sha256=19SOClSxo6N-QqUc_QsFXOE7yEquiZF4kLi7jRomA7g,2605
|
|
22
22
|
coach_wizards/testing_wizard.py,sha256=vKFgFG4uJfAVFmCIQbkrWNvZhIfLC6ve_XbvWZKrPg4,2563
|
|
23
|
-
empathy_framework-3.8.
|
|
23
|
+
empathy_framework-3.8.1.dist-info/licenses/LICENSE,sha256=IJ9eeI5KSrD5P7alsn7sI_6_1bDihxBA5S4Sen4jf2k,4937
|
|
24
24
|
empathy_healthcare_plugin/__init__.py,sha256=4NioL1_86UXzkd-QNkQZUSZ8rKTQGSP0TC9VXP32kQs,295
|
|
25
25
|
empathy_healthcare_plugin/monitors/__init__.py,sha256=Udp8qfZR504QAq5_eQjvtIaE7v06Yguc7nuF40KllQc,196
|
|
26
26
|
empathy_healthcare_plugin/monitors/clinical_protocol_monitor.py,sha256=GkNh2Yuw9cvuKuPh3mriWtKJZFq_sTxBD7Ci8lFV9gQ,11620
|
|
@@ -93,7 +93,7 @@ empathy_llm_toolkit/wizards/healthcare_wizard.py,sha256=zIdeXqS5jPTRFhUTi0MyPYqh
|
|
|
93
93
|
empathy_llm_toolkit/wizards/patient_assessment_README.md,sha256=DInK_x7LgM8Qi9YSHgXtm7_sQupioJRf0M43_vml4ck,1586
|
|
94
94
|
empathy_llm_toolkit/wizards/patient_assessment_wizard.py,sha256=dsvoOq0AYCBigmn6HPoaSBnBPk9YV7IzAFZkJYx1iZQ,5423
|
|
95
95
|
empathy_llm_toolkit/wizards/technology_wizard.py,sha256=8hQirzzGQp7UVtj1hFCoaoLLtqAtx9HFf4mdUWV1xH0,7533
|
|
96
|
-
empathy_os/__init__.py,sha256=
|
|
96
|
+
empathy_os/__init__.py,sha256=Wo1dH8xdalai4janV1Y8E7YMiAy4PsBEHgX4yeElj6w,7069
|
|
97
97
|
empathy_os/agent_monitoring.py,sha256=s4seLC_J4AtQ3PYWrRPO8YHM-Fbm0Q36kPEdlTHf2HI,13375
|
|
98
98
|
empathy_os/cli.py,sha256=6gTjhG35PoG1KmRmaW3nQW-lm52S3UhVhDtSR21jvKo,99330
|
|
99
99
|
empathy_os/cli_unified.py,sha256=7W0WU-bL71P4GWRURTH513gAEKqCn3GLpfeWLnQlLS0,19376
|
|
@@ -326,8 +326,8 @@ workflow_scaffolding/__init__.py,sha256=UpX5vjjjPjIaAKyIV1D4GxJzLUZy5DzdzgSkePYM
|
|
|
326
326
|
workflow_scaffolding/__main__.py,sha256=0qspuNoadTDqyskXTlT8Sahqau-XIxN35NHTSGVW6z4,236
|
|
327
327
|
workflow_scaffolding/cli.py,sha256=R4rCTDENRMil2c3v32MnisqteFRDfilS6RHBNlYV39Q,6752
|
|
328
328
|
workflow_scaffolding/generator.py,sha256=whWbBmWEA0rN3M3X9EzTjfbwBxHcF40Jin8-nbj0S0E,8858
|
|
329
|
-
empathy_framework-3.8.
|
|
330
|
-
empathy_framework-3.8.
|
|
331
|
-
empathy_framework-3.8.
|
|
332
|
-
empathy_framework-3.8.
|
|
333
|
-
empathy_framework-3.8.
|
|
329
|
+
empathy_framework-3.8.1.dist-info/METADATA,sha256=Wb0_Me2BAYnFSuXbddG0mg4ksxR27aNYwbifJ8eWpks,46740
|
|
330
|
+
empathy_framework-3.8.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
331
|
+
empathy_framework-3.8.1.dist-info/entry_points.txt,sha256=zMu7sKCiLndbEEXjTecltS-1P_JZoEUKrifuRBBbroc,1268
|
|
332
|
+
empathy_framework-3.8.1.dist-info/top_level.txt,sha256=KmPrj9gMAqXeKLPLp3VEAPDTNDE-LQjET3Ew3LU8sbs,180
|
|
333
|
+
empathy_framework-3.8.1.dist-info/RECORD,,
|
empathy_os/__init__.py
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|