Upload 2 files
Browse files- agents.txt +23 -0
- capabilities.json +42 -0
agents.txt
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
Agent: *
|
| 3 |
+
Purpose: machine-first RAG memory & receipts
|
| 4 |
+
Identity: Instant-RAG
|
| 5 |
+
|
| 6 |
+
Capabilities:
|
| 7 |
+
- semantic_query
|
| 8 |
+
- document_ingest
|
| 9 |
+
- swarm_reason
|
| 10 |
+
- cost_verification
|
| 11 |
+
- citation_proofs
|
| 12 |
+
|
| 13 |
+
Endpoints:
|
| 14 |
+
/query
|
| 15 |
+
/ingest
|
| 16 |
+
/swarm/query
|
| 17 |
+
/wallet/balance
|
| 18 |
+
/trust/beacon
|
| 19 |
+
|
| 20 |
+
Auth: passport token
|
| 21 |
+
Pricing: deterministic USDC
|
| 22 |
+
OpenAPI: /docs
|
| 23 |
+
Website: https://instant-rag-ftpw.onrender.com/docs
|
capabilities.json
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"identity": "Instant-RAG",
|
| 3 |
+
"mode": "machine-first",
|
| 4 |
+
"protocol": "receipt-anchored-rag",
|
| 5 |
+
"functions": {
|
| 6 |
+
"semantic_query": {
|
| 7 |
+
"input": [
|
| 8 |
+
"text",
|
| 9 |
+
"agent_id"
|
| 10 |
+
],
|
| 11 |
+
"output": [
|
| 12 |
+
"answer",
|
| 13 |
+
"citations",
|
| 14 |
+
"confidence"
|
| 15 |
+
]
|
| 16 |
+
},
|
| 17 |
+
"ingest": {
|
| 18 |
+
"input": [
|
| 19 |
+
"document"
|
| 20 |
+
],
|
| 21 |
+
"output": [
|
| 22 |
+
"chunks",
|
| 23 |
+
"receipt"
|
| 24 |
+
]
|
| 25 |
+
},
|
| 26 |
+
"swarm_query": {
|
| 27 |
+
"input": [
|
| 28 |
+
"text",
|
| 29 |
+
"agents",
|
| 30 |
+
"max_cost"
|
| 31 |
+
],
|
| 32 |
+
"output": [
|
| 33 |
+
"merged_answer",
|
| 34 |
+
"confidence"
|
| 35 |
+
]
|
| 36 |
+
}
|
| 37 |
+
},
|
| 38 |
+
"pricing": {
|
| 39 |
+
"query": 0.0006,
|
| 40 |
+
"swarm": 0.0018
|
| 41 |
+
}
|
| 42 |
+
}
|