fluxq-engine 1.0.1 → 1.0.2
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.
- package/README.md +34 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,28 +1,48 @@
|
|
|
1
|
-
# FluxQ Engine
|
|
1
|
+
# FluxQ Engine ● Telemedicine Queue Optimizer
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://nodejs.org)
|
|
4
|
+
[](https://www.typescriptlang.org)
|
|
5
|
+
[](https://expressjs.com)
|
|
6
|
+
[](https://www.npmjs.com/package/fluxq-engine)
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
### ● Overview
|
|
4
11
|
FluxQ Engine is a high-performance REST API and core logic engine built for clinical-aware patient triage and intelligent queue management. It optimizes wait times by up to 40% using advanced clinical weight balancing and fairness enforcement.
|
|
5
12
|
|
|
6
13
|
◈ **NPM Package**: [fluxq-engine](https://www.npmjs.com/package/fluxq-engine)
|
|
7
|
-
◈ **Live API Status**: [
|
|
14
|
+
◈ **Live API Status**: [Online (Render)](https://fluxq.onrender.com/health)
|
|
8
15
|
|
|
9
16
|
---
|
|
10
17
|
|
|
11
|
-
|
|
18
|
+
### ● Key Features
|
|
19
|
+
|
|
20
|
+
#### ┃ 0x01 ― Smart Triage Logic
|
|
21
|
+
› Dynamic symptom assessment and severity classification.
|
|
22
|
+
› Clinical priority scoring (Severity × Wait Time × Fairness).
|
|
23
|
+
|
|
24
|
+
#### ┃ 0x02 ― Queue Optimization
|
|
25
|
+
› Real-time reordering based on clinical severity and fairness thresholds.
|
|
26
|
+
› Starvation prevention and dynamic aging boosts.
|
|
12
27
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
• **Comprehensive Metrics**: Provides full baseline vs. optimized comparisons with 9+ performance KPIs.
|
|
28
|
+
#### ┃ 0x03 ― Fairness Monitoring
|
|
29
|
+
› Real-time identification of starvation risks.
|
|
30
|
+
› Fairness reports with aging boost tracking.
|
|
17
31
|
|
|
18
|
-
|
|
32
|
+
#### ┃ 0x04 ― Simulation & Metrics
|
|
33
|
+
› High-level KPIs: Wait time reduction, doctor utilization, and throughput.
|
|
34
|
+
› Full baseline vs. optimized comparison reporting.
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
### ● Quick Start
|
|
19
39
|
|
|
20
40
|
▶ **Installation**
|
|
21
41
|
```bash
|
|
22
42
|
npm install fluxq-engine
|
|
23
43
|
```
|
|
24
44
|
|
|
25
|
-
▶ **Usage**
|
|
45
|
+
▶ **API Client Library Usage**
|
|
26
46
|
```typescript
|
|
27
47
|
import { QueueOptimizer } from 'fluxq-engine';
|
|
28
48
|
|
|
@@ -30,15 +50,15 @@ const optimizer = new QueueOptimizer();
|
|
|
30
50
|
const optimizedQueue = optimizer.optimize(patients, config);
|
|
31
51
|
```
|
|
32
52
|
|
|
33
|
-
|
|
53
|
+
▶ **Direct API Connectivity**
|
|
34
54
|
◈ `GET /api/v1/config` ― Get current system optimization parameters.
|
|
35
55
|
◈ `POST /api/v1/optimize` ― Submit a patient list for instant re-ordering.
|
|
36
56
|
◈ `POST /api/v1/simulate` ― Run a complete FCFS vs. AI comparison.
|
|
37
57
|
|
|
38
58
|
---
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
◈ Built
|
|
59
|
+
|
|
60
|
+
### ● Developer
|
|
61
|
+
◈ **Built by [Diksha](https://github.com/dikshaa2909)**
|
|
42
62
|
|
|
43
63
|
---
|
|
44
64
|
◈ **FluxQ Engine ― 2026**
|
package/package.json
CHANGED