vmore2 commited on
Commit ·
b93a3f5
1
Parent(s): 00bdade
Rewrite README with why/where/how narrative + PyPI v0.1.0 release
Browse files
README.md
CHANGED
|
@@ -17,6 +17,7 @@ pinned: false
|
|
| 17 |
|
| 18 |
# ⚛️ QSVAPS — Quantum Superposition Verification for Agent Plan Safety
|
| 19 |
|
|
|
|
| 20 |
[](LICENSE)
|
| 21 |
[](https://python.org)
|
| 22 |
[](#running-tests)
|
|
@@ -24,56 +25,107 @@ pinned: false
|
|
| 24 |
|
| 25 |
**The first framework to use Grover's quantum search as a verification oracle for AI agent plans.**
|
| 26 |
|
| 27 |
-
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
---
|
| 30 |
|
| 31 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
|
| 33 |
-
|
| 34 |
|
| 35 |
-
QSVAPS
|
| 36 |
|
| 37 |
-
|
|
| 38 |
|---|---|---|
|
| 39 |
-
|
|
| 40 |
-
|
|
| 41 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
|
| 43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
|
| 45 |
### Install
|
| 46 |
|
| 47 |
```bash
|
| 48 |
-
pip install
|
| 49 |
```
|
| 50 |
|
| 51 |
### Run the Demo
|
| 52 |
|
| 53 |
```bash
|
| 54 |
-
python
|
| 55 |
```
|
| 56 |
|
| 57 |
-
No API keys needed — uses the Qiskit Aer simulator and a mock LLM.
|
| 58 |
|
| 59 |
### Use in Your Code
|
| 60 |
|
| 61 |
```python
|
| 62 |
from qsvaps import Plan, PlanAction, ResourceConstraint, PlanVerifier
|
| 63 |
|
| 64 |
-
# Define
|
| 65 |
plan = Plan(
|
| 66 |
-
name="
|
| 67 |
actions=[
|
| 68 |
-
PlanAction(name="
|
| 69 |
-
PlanAction(name="
|
| 70 |
-
PlanAction(name="save", description="
|
| 71 |
],
|
| 72 |
-
dependencies=[("
|
| 73 |
-
resource_constraints=[ResourceConstraint("
|
| 74 |
)
|
| 75 |
|
| 76 |
-
#
|
| 77 |
verifier = PlanVerifier(shots=2048)
|
| 78 |
result = verifier.verify(plan, verbose=True)
|
| 79 |
|
|
@@ -83,100 +135,163 @@ if not result.is_safe:
|
|
| 83 |
print(witness.explanation)
|
| 84 |
```
|
| 85 |
|
| 86 |
-
### Verify & Repair with LLM
|
| 87 |
|
| 88 |
```python
|
| 89 |
from qsvaps import PlanVerifier, LLMInterface
|
| 90 |
|
|
|
|
| 91 |
llm = LLMInterface(api_key="sk-...", model="gpt-4")
|
| 92 |
-
|
|
|
|
|
|
|
| 93 |
|
| 94 |
verifier = PlanVerifier(llm=llm, max_repair_iterations=3)
|
| 95 |
results = verifier.verify_and_repair(plan, verbose=True)
|
|
|
|
|
|
|
| 96 |
```
|
| 97 |
|
| 98 |
-
##
|
|
|
|
|
|
|
|
|
|
|
|
|
| 99 |
|
| 100 |
```
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
┌──────┴──────┐ ┌──────────────────┐ ┌───────────────┐
|
| 111 |
-
│ LLM │◀────│ Failure │◀────│ Grover │
|
| 112 |
-
│ repairs │ │ Witnesses │ │ Search │
|
| 113 |
-
│ plan │ │ decoded from │ │ finds │
|
| 114 |
-
│ │ │ measurements │ │ violations │
|
| 115 |
-
└─────────────┘ └──────────────────┘ └───────────────┘
|
| 116 |
```
|
| 117 |
|
| 118 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 119 |
|
| 120 |
```
|
| 121 |
-
|
| 122 |
-
|
| 123 |
-
├── constraint_engine.py # Boolean constraint extraction from plans
|
| 124 |
-
├── oracle_builder.py # Quantum phase oracle + Grover diffuser
|
| 125 |
-
├── grover_search.py # Grover's algorithm execution engine
|
| 126 |
-
├── verifier.py # Main verification pipeline
|
| 127 |
-
├── llm_interface.py # LLM integration (OpenAI + mock mode)
|
| 128 |
-
└── visualization.py # ASCII diagrams + matplotlib plots
|
| 129 |
```
|
| 130 |
|
| 131 |
-
##
|
| 132 |
|
| 133 |
-
|
| 134 |
|
| 135 |
-
|
| 136 |
-
|
| 137 |
-
|
| 138 |
-
|
| 139 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 140 |
|
| 141 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 142 |
|
| 143 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 144 |
|
| 145 |
-
|
|
|
|
|
|
|
| 146 |
|
| 147 |
-
|
| 148 |
|
| 149 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 150 |
|
| 151 |
-
|
| 152 |
|
| 153 |
-
|
| 154 |
-
- **127/128 violations** detected in a single Grover iteration
|
| 155 |
-
- **128× theoretical speedup** over exhaustive classical verification
|
| 156 |
-
- Scales to **15+ qubits** on Qiskit Aer simulator, **127 qubits** on IBM Quantum hardware
|
| 157 |
|
| 158 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 159 |
|
| 160 |
-
## Running Tests
|
| 161 |
|
| 162 |
```bash
|
| 163 |
pip install pytest
|
| 164 |
python -m pytest tests/ -v
|
| 165 |
```
|
| 166 |
|
| 167 |
-
52 tests covering
|
|
|
|
|
|
|
| 168 |
|
| 169 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 170 |
|
| 171 |
-
|
| 172 |
-
- `qiskit-aer >= 0.13.0`
|
| 173 |
-
- `numpy >= 1.24.0`
|
| 174 |
-
- `matplotlib >= 3.7.0`
|
| 175 |
-
- `openai >= 1.0.0` (optional, for LLM integration)
|
| 176 |
|
| 177 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 178 |
|
| 179 |
-
|
| 180 |
|
| 181 |
```bibtex
|
| 182 |
@software{qsvaps2025,
|
|
@@ -187,10 +302,10 @@ If you use QSVAPS in your research, please cite:
|
|
| 187 |
}
|
| 188 |
```
|
| 189 |
|
| 190 |
-
## Contributing
|
| 191 |
|
| 192 |
See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
|
| 193 |
|
| 194 |
-
## License
|
| 195 |
|
| 196 |
[MIT](LICENSE)
|
|
|
|
| 17 |
|
| 18 |
# ⚛️ QSVAPS — Quantum Superposition Verification for Agent Plan Safety
|
| 19 |
|
| 20 |
+
[](https://pypi.org/project/qsvaps/)
|
| 21 |
[](LICENSE)
|
| 22 |
[](https://python.org)
|
| 23 |
[](#running-tests)
|
|
|
|
| 25 |
|
| 26 |
**The first framework to use Grover's quantum search as a verification oracle for AI agent plans.**
|
| 27 |
|
| 28 |
+
```
|
| 29 |
+
Classical Generation → Quantum Verification → Classical Repair
|
| 30 |
+
(LLM agent) (Grover's algorithm) (LLM agent)
|
| 31 |
+
```
|
| 32 |
|
| 33 |
---
|
| 34 |
|
| 35 |
+
## 🔴 The Problem: AI Agents Fly Blind
|
| 36 |
+
|
| 37 |
+
AI agents (LangChain, AutoGen, CrewAI) generate multi-step plans every day — chaining API calls, orchestrating tools, executing code. But here's the uncomfortable truth:
|
| 38 |
+
|
| 39 |
+
> **Nobody verifies these plans before execution.**
|
| 40 |
+
|
| 41 |
+
A plan that looks correct step-by-step can fail catastrophically due to **emergent interactions** between steps:
|
| 42 |
+
- 🔥 **Race conditions** — two steps hit the same rate-limited API simultaneously
|
| 43 |
+
- 💥 **Cascading failures** — step 3 depends on step 2, which silently failed
|
| 44 |
+
- 🔒 **Resource deadlocks** — competing steps lock each other out
|
| 45 |
+
- 🕳️ **Missing fallbacks** — a critical step fails with no recovery path
|
| 46 |
+
|
| 47 |
+
Classical verification requires checking every possible execution scenario. For a plan with 20 decision points, that's **2²⁰ = 1,048,576 scenarios.** Exhaustive checking is too slow.
|
| 48 |
|
| 49 |
+
## 🟢 The Solution: Quantum Verification
|
| 50 |
|
| 51 |
+
QSVAPS uses **Grover's quantum search algorithm** — a provably optimal quantum algorithm — to search the space of potential failures **quadratically faster** than any classical approach:
|
| 52 |
|
| 53 |
+
| Scenario | Classical Brute Force | QSVAPS (Grover) |
|
| 54 |
|---|---|---|
|
| 55 |
+
| 20 decision points (2²⁰ states) | ~1,000,000 checks | ~1,000 iterations |
|
| 56 |
+
| 30 decision points (2³⁰ states) | ~1,000,000,000 checks | ~31,623 iterations |
|
| 57 |
+
| Speedup | O(N) | O(√N) — **provably optimal** |
|
| 58 |
+
|
| 59 |
+
This isn't quantum for the sake of quantum. Grover's speedup is **information-theoretically optimal** — no classical algorithm can do better for unstructured search.
|
| 60 |
+
|
| 61 |
+
## 🧭 Where QSVAPS Fits
|
| 62 |
+
|
| 63 |
+
```
|
| 64 |
+
┌──────────────────────────────────────────────────────────────────────┐
|
| 65 |
+
│ AI Agent Architecture │
|
| 66 |
+
├──────────────────────────────────────────────────────────────────────┤
|
| 67 |
+
│ │
|
| 68 |
+
│ ┌─────────────┐ ┌──────────────────┐ ┌──────────────────┐ │
|
| 69 |
+
│ │ │ │ │ │ │ │
|
| 70 |
+
│ │ LLM Agent │────▶│ QSVAPS │────▶│ Safe Execution │ │
|
| 71 |
+
│ │ generates │ │ verifies plan │ │ with confidence │ │
|
| 72 |
+
│ │ plan │ │ using quantum │ │ │ │
|
| 73 |
+
│ │ │ │ search │ │ │ │
|
| 74 |
+
│ └─────────────┘ └────────┬─────────┘ └──────────────────┘ │
|
| 75 |
+
│ ▲ │ │
|
| 76 |
+
│ │ If violations found │
|
| 77 |
+
│ │ │ │
|
| 78 |
+
│ └─────────────────────┘ │
|
| 79 |
+
│ LLM repairs plan │
|
| 80 |
+
│ │
|
| 81 |
+
└──────────────────────────────────────────────────────────────────────┘
|
| 82 |
+
```
|
| 83 |
|
| 84 |
+
**QSVAPS sits between plan generation and execution.** It's the safety layer that catches failures before they happen — using quantum computing as a verification co-processor.
|
| 85 |
+
|
| 86 |
+
### What Makes This Novel
|
| 87 |
+
|
| 88 |
+
| Existing Approach | QSVAPS Difference |
|
| 89 |
+
|---|---|
|
| 90 |
+
| Quantum Neural Networks | Uses quantum for **verification**, not model training |
|
| 91 |
+
| LLM generates quantum code | Quantum code enhances the **agent itself** |
|
| 92 |
+
| Quantum hyperparameter tuning | Quantum solves a **core agent bottleneck** |
|
| 93 |
+
| Classical plan verification | Provable **quadratic speedup** via Grover's algorithm |
|
| 94 |
+
|
| 95 |
+
## ⚡ Quick Start
|
| 96 |
|
| 97 |
### Install
|
| 98 |
|
| 99 |
```bash
|
| 100 |
+
pip install qsvaps
|
| 101 |
```
|
| 102 |
|
| 103 |
### Run the Demo
|
| 104 |
|
| 105 |
```bash
|
| 106 |
+
python -m qsvaps.demo
|
| 107 |
```
|
| 108 |
|
| 109 |
+
No API keys needed — uses the Qiskit Aer simulator and a built-in mock LLM.
|
| 110 |
|
| 111 |
### Use in Your Code
|
| 112 |
|
| 113 |
```python
|
| 114 |
from qsvaps import Plan, PlanAction, ResourceConstraint, PlanVerifier
|
| 115 |
|
| 116 |
+
# Define your agent's plan
|
| 117 |
plan = Plan(
|
| 118 |
+
name="Data Pipeline",
|
| 119 |
actions=[
|
| 120 |
+
PlanAction(name="fetch_data", description="Fetch from API", resources=["api_quota"]),
|
| 121 |
+
PlanAction(name="transform", description="Transform dataset"),
|
| 122 |
+
PlanAction(name="save", description="Write to database", can_fail=False),
|
| 123 |
],
|
| 124 |
+
dependencies=[("fetch_data", "transform"), ("transform", "save")],
|
| 125 |
+
resource_constraints=[ResourceConstraint("api_quota", max_concurrent=1)],
|
| 126 |
)
|
| 127 |
|
| 128 |
+
# Quantum verification
|
| 129 |
verifier = PlanVerifier(shots=2048)
|
| 130 |
result = verifier.verify(plan, verbose=True)
|
| 131 |
|
|
|
|
| 135 |
print(witness.explanation)
|
| 136 |
```
|
| 137 |
|
| 138 |
+
### Verify & Auto-Repair with LLM
|
| 139 |
|
| 140 |
```python
|
| 141 |
from qsvaps import PlanVerifier, LLMInterface
|
| 142 |
|
| 143 |
+
# Connect to any OpenAI-compatible API
|
| 144 |
llm = LLMInterface(api_key="sk-...", model="gpt-4")
|
| 145 |
+
|
| 146 |
+
# Or use the built-in mock for testing
|
| 147 |
+
# llm = LLMInterface(mock=True)
|
| 148 |
|
| 149 |
verifier = PlanVerifier(llm=llm, max_repair_iterations=3)
|
| 150 |
results = verifier.verify_and_repair(plan, verbose=True)
|
| 151 |
+
|
| 152 |
+
# The repaired plan is in results[-1].plan
|
| 153 |
```
|
| 154 |
|
| 155 |
+
## 🔬 How It Works
|
| 156 |
+
|
| 157 |
+
### Step 1: Constraint Extraction
|
| 158 |
+
|
| 159 |
+
Your plan's structure is automatically analyzed to extract boolean constraints:
|
| 160 |
|
| 161 |
```
|
| 162 |
+
Plan: fetch_data → transform → save
|
| 163 |
+
|
| 164 |
+
Constraints extracted:
|
| 165 |
+
C1 [DEPENDENCY]: 'transform' requires 'fetch_data' to succeed first
|
| 166 |
+
Formula: (¬x₁) ∨ x₀
|
| 167 |
+
C2 [DEPENDENCY]: 'save' requires 'transform' to succeed first
|
| 168 |
+
Formula: (¬x₂) ∨ x₁
|
| 169 |
+
C3 [COMPLETION]: 'save' must succeed
|
| 170 |
+
Formula: x₂
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 171 |
```
|
| 172 |
|
| 173 |
+
Supported constraint types:
|
| 174 |
+
- **Dependency** — if B depends on A, B succeeding implies A succeeded
|
| 175 |
+
- **Resource** — actions sharing rate-limited resources can't both run in parallel
|
| 176 |
+
- **Completion** — actions marked `can_fail=False` must succeed
|
| 177 |
+
- **Fallback** — if an action has a fallback, at least one must succeed
|
| 178 |
+
- **Custom** — any boolean expression you define
|
| 179 |
+
|
| 180 |
+
### Step 2: Quantum Oracle Construction
|
| 181 |
+
|
| 182 |
+
Constraints are encoded as a **quantum phase oracle** — a circuit that flips the phase of states where any constraint is violated:
|
| 183 |
|
| 184 |
```
|
| 185 |
+
|valid⟩ → |valid⟩ (no phase change)
|
| 186 |
+
|violation⟩ → -|violation⟩ (phase flipped)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 187 |
```
|
| 188 |
|
| 189 |
+
### Step 3: Grover's Search
|
| 190 |
|
| 191 |
+
Grover's algorithm amplifies the probability of measuring violation states:
|
| 192 |
|
| 193 |
+
```
|
| 194 |
+
┌──────────┐ ┌──────────┐
|
| 195 |
+
|0⟩⊗ⁿ ── H⊗ⁿ ──┤ Oracle ├──┤ Diffuser ├── × k iterations ── Measure
|
| 196 |
+
└──────────┘ └──────────┘
|
| 197 |
+
|
| 198 |
+
k = ⌊π/4 × √(N/M)⌋ where N = total states, M = violations
|
| 199 |
+
```
|
| 200 |
+
|
| 201 |
+
### Step 4: Witness Decoding
|
| 202 |
+
|
| 203 |
+
Measured bitstrings are decoded into human-readable **failure witnesses**:
|
| 204 |
|
| 205 |
+
```
|
| 206 |
+
Witness #1 (measured 272 times):
|
| 207 |
+
✅ Action 'fetch_data' succeeds
|
| 208 |
+
✅ Action 'transform' succeeds
|
| 209 |
+
❌ Action 'save' FAILS
|
| 210 |
+
|
| 211 |
+
Violated: 'save' must succeed
|
| 212 |
+
|
| 213 |
+
→ This scenario means the pipeline completes processing
|
| 214 |
+
but fails to persist results — silent data loss.
|
| 215 |
+
```
|
| 216 |
+
|
| 217 |
+
### Step 5: LLM Repair Loop
|
| 218 |
|
| 219 |
+
Witnesses are fed to an LLM that revises the plan:
|
| 220 |
+
|
| 221 |
+
```
|
| 222 |
+
Agent: "Your plan fails when 'save' fails with no fallback.
|
| 223 |
+
Add a retry mechanism or fallback storage."
|
| 224 |
|
| 225 |
+
→ Repaired plan adds: save_fallback (write to local disk)
|
| 226 |
+
→ Re-verification confirms the fix
|
| 227 |
+
```
|
| 228 |
|
| 229 |
+
## 📦 Project Structure
|
| 230 |
|
| 231 |
+
```
|
| 232 |
+
qsvaps/
|
| 233 |
+
├── models.py # Plan, Action, Constraint, Witness dataclasses
|
| 234 |
+
├── constraint_engine.py # Boolean constraint extraction from plans
|
| 235 |
+
├── oracle_builder.py # Quantum phase oracle + Grover diffuser
|
| 236 |
+
├── grover_search.py # Grover's algorithm execution engine
|
| 237 |
+
├── verifier.py # Main verification pipeline
|
| 238 |
+
├── llm_interface.py # LLM integration (OpenAI + mock mode)
|
| 239 |
+
└── visualization.py # ASCII diagrams + matplotlib plots
|
| 240 |
+
```
|
| 241 |
|
| 242 |
+
## 📊 Verified Results
|
| 243 |
|
| 244 |
+
Demo verification of a 6-action API orchestration pipeline:
|
|
|
|
|
|
|
|
|
|
| 245 |
|
| 246 |
+
| Metric | Value |
|
| 247 |
+
|---|---|
|
| 248 |
+
| Qubits | 7 |
|
| 249 |
+
| State space | 128 |
|
| 250 |
+
| Violations found | 127 / 128 |
|
| 251 |
+
| Grover iterations | 1 |
|
| 252 |
+
| Circuit depth | 516 |
|
| 253 |
+
| Circuit gates | 1,320 |
|
| 254 |
+
| Theoretical speedup | 128× |
|
| 255 |
|
| 256 |
+
## 🧪 Running Tests
|
| 257 |
|
| 258 |
```bash
|
| 259 |
pip install pytest
|
| 260 |
python -m pytest tests/ -v
|
| 261 |
```
|
| 262 |
|
| 263 |
+
52 tests covering: models, constraint extraction, oracle correctness (statevector verified), Grover amplification, end-to-end verification, and repair loops.
|
| 264 |
+
|
| 265 |
+
## 🛣️ Roadmap
|
| 266 |
|
| 267 |
+
- [ ] **IBM Quantum integration** — run on real 127-qubit Eagle processors
|
| 268 |
+
- [ ] **LangChain plugin** — drop-in verification for LangChain agents
|
| 269 |
+
- [ ] **AutoGen middleware** — intercept plans before execution
|
| 270 |
+
- [ ] **Scalable oracles** — CNF-based oracle construction for 20+ qubit plans
|
| 271 |
+
- [ ] **Benchmark suite** — standardized plan verification benchmarks
|
| 272 |
|
| 273 |
+
## 📖 Research Background
|
|
|
|
|
|
|
|
|
|
|
|
|
| 274 |
|
| 275 |
+
QSVAPS introduces a new architectural pattern: **"Generate classically, verify quantumly."** While quantum computing research typically focuses on replacing classical components (QNNs, VQCs), QSVAPS uses quantum algorithms in a fundamentally different role — as a verification oracle that checks classical output.
|
| 276 |
+
|
| 277 |
+
This builds on:
|
| 278 |
+
- **Grover's algorithm** (1996) — optimal O(√N) unstructured search
|
| 279 |
+
- **PDDL-based planning** — formal plan representation with preconditions/effects
|
| 280 |
+
- **Agent safety research** — the growing need to verify autonomous AI behavior
|
| 281 |
+
|
| 282 |
+
The novelty lies in the bridge: encoding agent plan constraints as quantum oracles, enabling quantum speedup for a real-world AI safety problem.
|
| 283 |
+
|
| 284 |
+
## 📦 Dependencies
|
| 285 |
+
|
| 286 |
+
| Package | Version | Purpose |
|
| 287 |
+
|---|---|---|
|
| 288 |
+
| `qiskit` | ≥ 1.0.0 | Quantum circuit construction |
|
| 289 |
+
| `qiskit-aer` | ≥ 0.13.0 | Local quantum simulation |
|
| 290 |
+
| `numpy` | ≥ 1.24.0 | Numerical operations |
|
| 291 |
+
| `matplotlib` | ≥ 3.7.0 | Result visualization |
|
| 292 |
+
| `openai` | ≥ 1.0.0 | *Optional* — LLM integration |
|
| 293 |
|
| 294 |
+
## 📄 Citation
|
| 295 |
|
| 296 |
```bibtex
|
| 297 |
@software{qsvaps2025,
|
|
|
|
| 302 |
}
|
| 303 |
```
|
| 304 |
|
| 305 |
+
## 🤝 Contributing
|
| 306 |
|
| 307 |
See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
|
| 308 |
|
| 309 |
+
## 📜 License
|
| 310 |
|
| 311 |
[MIT](LICENSE)
|