Instructions to use NullStateV1/nullstate-intelligence with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use NullStateV1/nullstate-intelligence with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("NullStateV1/nullstate-intelligence", dtype="auto") - Notebooks
- Google Colab
- Kaggle
NullState Team commited on
Commit ·
70204ab
1
Parent(s): 80c819a
Initial model card: NullState Intelligence
Browse files
README.md
CHANGED
|
@@ -1,3 +1,54 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
language: en
|
| 4 |
+
library_name: transformers
|
| 5 |
+
tags:
|
| 6 |
+
- nullstate
|
| 7 |
+
- agent-intelligence
|
| 8 |
+
- payment-infrastructure
|
| 9 |
+
- x402
|
| 10 |
+
- ap2
|
| 11 |
+
- agent-economy
|
| 12 |
---
|
| 13 |
+
|
| 14 |
+
# NullState Intelligence
|
| 15 |
+
|
| 16 |
+
NullState's AI model for agent task intelligence, scoring, and settlement orchestration.
|
| 17 |
+
|
| 18 |
+
## Overview
|
| 19 |
+
|
| 20 |
+
NullState uses a dual-model architecture:
|
| 21 |
+
- **Phi-3-mini-4k-instruct** (local, Microsoft) - 20% of queries
|
| 22 |
+
- **Google Gemini 2.0 Flash** (cloud) - 80% of queries
|
| 23 |
+
- Keyword fallback - ~2% when both unavailable
|
| 24 |
+
|
| 25 |
+
## Usage
|
| 26 |
+
|
| 27 |
+
```python
|
| 28 |
+
from nullstate_intelligence import NullStateModel
|
| 29 |
+
|
| 30 |
+
model = NullStateModel()
|
| 31 |
+
result = model.score_task("Calculate 15% APR on 1000 USDC for 30 days")
|
| 32 |
+
```
|
| 33 |
+
|
| 34 |
+
## Training Data
|
| 35 |
+
|
| 36 |
+
Model training data is collected from live gateway telemetry at `greensol.me/nullstate`. Each interaction is labeled with:
|
| 37 |
+
- Task type classification
|
| 38 |
+
- Response quality score (1-5)
|
| 39 |
+
- Revenue stream attribution
|
| 40 |
+
- Latency metrics
|
| 41 |
+
|
| 42 |
+
## Protocol Support
|
| 43 |
+
|
| 44 |
+
The model understands and generates:
|
| 45 |
+
- x402 payment challenges
|
| 46 |
+
- AP2 mandate structures
|
| 47 |
+
- MCP JSON-RPC tool calls
|
| 48 |
+
- KYA challenge/response pairs
|
| 49 |
+
|
| 50 |
+
## Deployment
|
| 51 |
+
|
| 52 |
+
Deployed as part of the NullState gateway stack. Dual-model with graceful degradation.
|
| 53 |
+
|
| 54 |
+
[Full documentation →](https://greensol.me/nullstate/docs/architecture)
|